Skip to content

Commit

Permalink
adding ADMIN dashboard for windows (80% finished)
Browse files Browse the repository at this point in the history
  • Loading branch information
wissemzidi committed Apr 28, 2023
1 parent 6a8f929 commit 4ddeeea
Show file tree
Hide file tree
Showing 124 changed files with 3,218 additions and 417 deletions.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/MSVCP140.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/MSVCP140_1.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/Qt5Core.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/Qt5DBus.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/Qt5Gui.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/Qt5Network.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/Qt5Qml.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/Qt5QmlModels.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/Qt5Quick.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/Qt5Svg.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/Qt5WebSockets.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/Qt5Widgets.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/VCRUNTIME140_1.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/d3dcompiler_47.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/libEGL.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/libGLESv2.dll
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/Qt5/bin/opengl32sw.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions CB ADMIN (win)/PyQt5/Qt5/translations/qtbase_en.qm
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<�d��!�`���
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/QtCore.pyd
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/QtGui.pyd
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/QtWidgets.pyd
Binary file not shown.
Binary file added CB ADMIN (win)/PyQt5/sip.cp310-win_amd64.pyd
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
33 changes: 33 additions & 0 deletions CB ADMIN (win)/PyQt5/uic/widget-plugins/qaxcontainer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#############################################################################
##
## Copyright (c) 2023 Riverbank Computing Limited <info@riverbankcomputing.com>
##
## This file is part of PyQt5.
##
## This file may be used under the terms of the GNU General Public License
## version 3.0 as published by the Free Software Foundation and appearing in
## the file LICENSE included in the packaging of this file. Please review the
## following information to ensure the GNU General Public License version 3.0
## requirements will be met: http://www.gnu.org/copyleft/gpl.html.
##
## If you do not wish to use this file under the terms of the GPL version 3.0
## then you may purchase a commercial license. For more information contact
## info@riverbankcomputing.com.
##
## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
##
#############################################################################


# If pluginType is MODULE, the plugin loader will call moduleInformation. The
# variable MODULE is inserted into the local namespace by the plugin loader.
pluginType = MODULE


# moduleInformation() must return a tuple (module, widget_list). If "module"
# is "A" and any widget from this module is used, the code generator will write
# "import A". If "module" is "A[.B].C", the code generator will write
# "from A[.B] import C". Each entry in "widget_list" must be unique.
def moduleInformation():
return "PyQt5.QAxContainer", ("QAxWidget", )
33 changes: 33 additions & 0 deletions CB ADMIN (win)/PyQt5/uic/widget-plugins/qscintilla.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#############################################################################
##
## Copyright (c) 2023 Riverbank Computing Limited <info@riverbankcomputing.com>
##
## This file is part of PyQt5.
##
## This file may be used under the terms of the GNU General Public License
## version 3.0 as published by the Free Software Foundation and appearing in
## the file LICENSE included in the packaging of this file. Please review the
## following information to ensure the GNU General Public License version 3.0
## requirements will be met: http://www.gnu.org/copyleft/gpl.html.
##
## If you do not wish to use this file under the terms of the GPL version 3.0
## then you may purchase a commercial license. For more information contact
## info@riverbankcomputing.com.
##
## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
##
#############################################################################


# If pluginType is MODULE, the plugin loader will call moduleInformation. The
# variable MODULE is inserted into the local namespace by the plugin loader.
pluginType = MODULE


# moduleInformation() must return a tuple (module, widget_list). If "module"
# is "A" and any widget from this module is used, the code generator will write
# "import A". If "module" is "A[.B].C", the code generator will write
# "from A[.B] import C". Each entry in "widget_list" must be unique.
def moduleInformation():
return "PyQt5.Qsci", ("QsciScintilla", )
33 changes: 33 additions & 0 deletions CB ADMIN (win)/PyQt5/uic/widget-plugins/qtcharts.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#############################################################################
##
## Copyright (c) 2023 Riverbank Computing Limited <info@riverbankcomputing.com>
##
## This file is part of PyQt5.
##
## This file may be used under the terms of the GNU General Public License
## version 3.0 as published by the Free Software Foundation and appearing in
## the file LICENSE included in the packaging of this file. Please review the
## following information to ensure the GNU General Public License version 3.0
## requirements will be met: http://www.gnu.org/copyleft/gpl.html.
##
## If you do not wish to use this file under the terms of the GPL version 3.0
## then you may purchase a commercial license. For more information contact
## info@riverbankcomputing.com.
##
## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
##
#############################################################################


# If pluginType is MODULE, the plugin loader will call moduleInformation. The
# variable MODULE is inserted into the local namespace by the plugin loader.
pluginType = MODULE


# moduleInformation() must return a tuple (module, widget_list). If "module"
# is "A" and any widget from this module is used, the code generator will write
# "import A". If "module" is "A[.B].C", the code generator will write
# "from A[.B] import C". Each entry in "widget_list" must be unique.
def moduleInformation():
return 'PyQt5.QtChart', ('QtCharts.QChartView', )
33 changes: 33 additions & 0 deletions CB ADMIN (win)/PyQt5/uic/widget-plugins/qtprintsupport.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#############################################################################
##
## Copyright (c) 2023 Riverbank Computing Limited <info@riverbankcomputing.com>
##
## This file is part of PyQt5.
##
## This file may be used under the terms of the GNU General Public License
## version 3.0 as published by the Free Software Foundation and appearing in
## the file LICENSE included in the packaging of this file. Please review the
## following information to ensure the GNU General Public License version 3.0
## requirements will be met: http://www.gnu.org/copyleft/gpl.html.
##
## If you do not wish to use this file under the terms of the GPL version 3.0
## then you may purchase a commercial license. For more information contact
## info@riverbankcomputing.com.
##
## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
##
#############################################################################


# If pluginType is MODULE, the plugin loader will call moduleInformation. The
# variable MODULE is inserted into the local namespace by the plugin loader.
pluginType = MODULE


# moduleInformation() must return a tuple (module, widget_list). If "module"
# is "A" and any widget from this module is used, the code generator will write
# "import A". If "module" is "A[.B].C", the code generator will write
# "from A[.B] import C". Each entry in "widget_list" must be unique.
def moduleInformation():
return 'PyQt5.QtPrintSupport', ('QAbstractPrintDialog', 'QPageSetupDialog')
33 changes: 33 additions & 0 deletions CB ADMIN (win)/PyQt5/uic/widget-plugins/qtquickwidgets.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#############################################################################
##
## Copyright (c) 2023 Riverbank Computing Limited <info@riverbankcomputing.com>
##
## This file is part of PyQt5.
##
## This file may be used under the terms of the GNU General Public License
## version 3.0 as published by the Free Software Foundation and appearing in
## the file LICENSE included in the packaging of this file. Please review the
## following information to ensure the GNU General Public License version 3.0
## requirements will be met: http://www.gnu.org/copyleft/gpl.html.
##
## If you do not wish to use this file under the terms of the GPL version 3.0
## then you may purchase a commercial license. For more information contact
## info@riverbankcomputing.com.
##
## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
##
#############################################################################


# If pluginType is MODULE, the plugin loader will call moduleInformation. The
# variable MODULE is inserted into the local namespace by the plugin loader.
pluginType = MODULE


# moduleInformation() must return a tuple (module, widget_list). If "module"
# is "A" and any widget from this module is used, the code generator will write
# "import A". If "module" is "A[.B].C", the code generator will write
# "from A[.B] import C". Each entry in "widget_list" must be unique.
def moduleInformation():
return "PyQt5.QtQuickWidgets", ("QQuickWidget", )
33 changes: 33 additions & 0 deletions CB ADMIN (win)/PyQt5/uic/widget-plugins/qtwebenginewidgets.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#############################################################################
##
## Copyright (c) 2023 Riverbank Computing Limited <info@riverbankcomputing.com>
##
## This file is part of PyQt5.
##
## This file may be used under the terms of the GNU General Public License
## version 3.0 as published by the Free Software Foundation and appearing in
## the file LICENSE included in the packaging of this file. Please review the
## following information to ensure the GNU General Public License version 3.0
## requirements will be met: http://www.gnu.org/copyleft/gpl.html.
##
## If you do not wish to use this file under the terms of the GPL version 3.0
## then you may purchase a commercial license. For more information contact
## info@riverbankcomputing.com.
##
## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
##
#############################################################################


# If pluginType is MODULE, the plugin loader will call moduleInformation. The
# variable MODULE is inserted into the local namespace by the plugin loader.
pluginType = MODULE


# moduleInformation() must return a tuple (module, widget_list). If "module"
# is "A" and any widget from this module is used, the code generator will write
# "import A". If "module" is "A[.B].C", the code generator will write
# "from A[.B] import C". Each entry in "widget_list" must be unique.
def moduleInformation():
return "PyQt5.QtWebEngineWidgets", ("QWebEngineView", )
51 changes: 51 additions & 0 deletions CB ADMIN (win)/PyQt5/uic/widget-plugins/qtwebkit.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#############################################################################
##
## Copyright (C) 2014 Riverbank Computing Limited.
## Copyright (C) 2006 Thorsten Marek.
## All right reserved.
##
## This file is part of PyQt.
##
## You may use this file under the terms of the GPL v2 or the revised BSD
## license as follows:
##
## "Redistribution and use in source and binary forms, with or without
## modification, are permitted provided that the following conditions are
## met:
## * Redistributions of source code must retain the above copyright
## notice, this list of conditions and the following disclaimer.
## * Redistributions in binary form must reproduce the above copyright
## notice, this list of conditions and the following disclaimer in
## the documentation and/or other materials provided with the
## distribution.
## * Neither the name of the Riverbank Computing Limited nor the names
## of its contributors may be used to endorse or promote products
## derived from this software without specific prior written
## permission.
##
## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
## "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
## OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
## DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
## THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
##
#############################################################################


# If pluginType is MODULE, the plugin loader will call moduleInformation. The
# variable MODULE is inserted into the local namespace by the plugin loader.
pluginType = MODULE


# moduleInformation() must return a tuple (module, widget_list). If "module"
# is "A" and any widget from this module is used, the code generator will write
# "import A". If "module" is "A[.B].C", the code generator will write
# "from A[.B] import C". Each entry in "widget_list" must be unique.
def moduleInformation():
return "PyQt5.QtWebKitWidgets", ("QWebView", )
Binary file added CB ADMIN (win)/VCRUNTIME140.dll
Binary file not shown.
Binary file added CB ADMIN (win)/VCRUNTIME140_1.dll
Binary file not shown.
Binary file added CB ADMIN (win)/_bz2.pyd
Binary file not shown.
Binary file added CB ADMIN (win)/_cffi_backend.cp310-win_amd64.pyd
Binary file not shown.
Binary file added CB ADMIN (win)/_decimal.pyd
Binary file not shown.
Binary file added CB ADMIN (win)/_elementtree.pyd
Binary file not shown.
Binary file added CB ADMIN (win)/_hashlib.pyd
Binary file not shown.
Binary file added CB ADMIN (win)/_lzma.pyd
Binary file not shown.
Binary file not shown.
Binary file added CB ADMIN (win)/_queue.pyd
Binary file not shown.
Binary file added CB ADMIN (win)/_socket.pyd
Binary file not shown.
Binary file added CB ADMIN (win)/_ssl.pyd
Binary file not shown.
Binary file added CB ADMIN (win)/_uuid.pyd
Binary file not shown.
Binary file added CB ADMIN (win)/admin.ico
Binary file not shown.
Binary file added CB ADMIN (win)/base_library.zip
Binary file not shown.
Binary file added CB ADMIN (win)/bcrypt/_bcrypt.pyd
Binary file not shown.
Binary file added CB ADMIN (win)/dashboard.exe
Binary file not shown.
Loading

0 comments on commit 4ddeeea

Please sign in to comment.