-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3aa1073
Showing
49 changed files
with
25,835 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Form implementation generated from reading ui file 'Checklists.ui' | ||
# | ||
# Created by: PyQt5 UI code generator 5.10 | ||
# | ||
# WARNING! All changes made in this file will be lost! | ||
|
||
from PyQt5 import QtCore, QtGui, QtWidgets | ||
|
||
class Ui_frmChecklists(object): | ||
def setupUi(self, frmChecklists): | ||
frmChecklists.setObjectName("frmChecklists") | ||
frmChecklists.resize(800, 590) | ||
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) | ||
sizePolicy.setHorizontalStretch(0) | ||
sizePolicy.setVerticalStretch(0) | ||
sizePolicy.setHeightForWidth(frmChecklists.sizePolicy().hasHeightForWidth()) | ||
frmChecklists.setSizePolicy(sizePolicy) | ||
frmChecklists.setMinimumSize(QtCore.QSize(800, 590)) | ||
frmChecklists.setMaximumSize(QtCore.QSize(800, 590)) | ||
icon = QtGui.QIcon() | ||
icon.addPixmap(QtGui.QPixmap(":/icon_checklists.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) | ||
frmChecklists.setWindowIcon(icon) | ||
self.txtFind = QtWidgets.QLineEdit(frmChecklists) | ||
self.txtFind.setGeometry(QtCore.QRect(570, 115, 221, 22)) | ||
self.txtFind.setObjectName("txtFind") | ||
self.lblChecklists = QtWidgets.QLabel(frmChecklists) | ||
self.lblChecklists.setGeometry(QtCore.QRect(10, 120, 221, 16)) | ||
self.lblChecklists.setObjectName("lblChecklists") | ||
self.tblChecklists = QtWidgets.QTableWidget(frmChecklists) | ||
self.tblChecklists.setGeometry(QtCore.QRect(10, 140, 781, 441)) | ||
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed) | ||
sizePolicy.setHorizontalStretch(0) | ||
sizePolicy.setVerticalStretch(0) | ||
sizePolicy.setHeightForWidth(self.tblChecklists.sizePolicy().hasHeightForWidth()) | ||
self.tblChecklists.setSizePolicy(sizePolicy) | ||
self.tblChecklists.setFrameShape(QtWidgets.QFrame.StyledPanel) | ||
self.tblChecklists.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff) | ||
self.tblChecklists.setEditTriggers(QtWidgets.QAbstractItemView.NoEditTriggers) | ||
self.tblChecklists.setObjectName("tblChecklists") | ||
self.tblChecklists.setColumnCount(0) | ||
self.tblChecklists.setRowCount(0) | ||
self.tblChecklists.horizontalHeader().setVisible(False) | ||
self.tblChecklists.horizontalHeader().setHighlightSections(False) | ||
self.tblChecklists.verticalHeader().setVisible(False) | ||
self.tblChecklists.verticalHeader().setHighlightSections(False) | ||
self.label = QtWidgets.QLabel(frmChecklists) | ||
self.label.setGeometry(QtCore.QRect(500, 120, 59, 14)) | ||
self.label.setLayoutDirection(QtCore.Qt.LeftToRight) | ||
self.label.setAlignment(QtCore.Qt.AlignRight|QtCore.Qt.AlignTrailing|QtCore.Qt.AlignVCenter) | ||
self.label.setObjectName("label") | ||
self.lblDateRange = QtWidgets.QLabel(frmChecklists) | ||
self.lblDateRange.setGeometry(QtCore.QRect(10, 65, 551, 21)) | ||
font = QtGui.QFont() | ||
font.setPointSize(12) | ||
font.setBold(False) | ||
font.setWeight(50) | ||
self.lblDateRange.setFont(font) | ||
self.lblDateRange.setObjectName("lblDateRange") | ||
self.lblLocation = QtWidgets.QLabel(frmChecklists) | ||
self.lblLocation.setGeometry(QtCore.QRect(10, 30, 771, 35)) | ||
font = QtGui.QFont() | ||
font.setPointSize(14) | ||
font.setBold(True) | ||
font.setWeight(75) | ||
self.lblLocation.setFont(font) | ||
self.lblLocation.setObjectName("lblLocation") | ||
self.lblDetails = QtWidgets.QLabel(frmChecklists) | ||
self.lblDetails.setGeometry(QtCore.QRect(10, 90, 551, 21)) | ||
font = QtGui.QFont() | ||
font.setPointSize(12) | ||
font.setBold(False) | ||
font.setWeight(50) | ||
self.lblDetails.setFont(font) | ||
self.lblDetails.setObjectName("lblDetails") | ||
|
||
self.retranslateUi(frmChecklists) | ||
QtCore.QMetaObject.connectSlotsByName(frmChecklists) | ||
|
||
def retranslateUi(self, frmChecklists): | ||
_translate = QtCore.QCoreApplication.translate | ||
frmChecklists.setWindowTitle(_translate("frmChecklists", "Species Report")) | ||
self.lblChecklists.setText(_translate("frmChecklists", "Checklists")) | ||
self.tblChecklists.setSortingEnabled(True) | ||
self.label.setText(_translate("frmChecklists", "Search:")) | ||
self.lblDateRange.setText(_translate("frmChecklists", "Date Range")) | ||
self.lblLocation.setText(_translate("frmChecklists", "Location")) | ||
self.lblDetails.setText(_translate("frmChecklists", "Details Label")) | ||
|
||
import icons_rc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,185 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>frmChecklists</class> | ||
<widget class="QWidget" name="frmChecklists"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>800</width> | ||
<height>590</height> | ||
</rect> | ||
</property> | ||
<property name="sizePolicy"> | ||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed"> | ||
<horstretch>0</horstretch> | ||
<verstretch>0</verstretch> | ||
</sizepolicy> | ||
</property> | ||
<property name="minimumSize"> | ||
<size> | ||
<width>800</width> | ||
<height>590</height> | ||
</size> | ||
</property> | ||
<property name="maximumSize"> | ||
<size> | ||
<width>800</width> | ||
<height>590</height> | ||
</size> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Species Report</string> | ||
</property> | ||
<property name="windowIcon"> | ||
<iconset resource="icons.qrc"> | ||
<normaloff>:/icon_checklists.png</normaloff>:/icon_checklists.png</iconset> | ||
</property> | ||
<widget class="QLineEdit" name="txtFind"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>570</x> | ||
<y>115</y> | ||
<width>221</width> | ||
<height>22</height> | ||
</rect> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="lblChecklists"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>10</x> | ||
<y>120</y> | ||
<width>221</width> | ||
<height>16</height> | ||
</rect> | ||
</property> | ||
<property name="text"> | ||
<string>Checklists</string> | ||
</property> | ||
</widget> | ||
<widget class="QTableWidget" name="tblChecklists"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>10</x> | ||
<y>140</y> | ||
<width>781</width> | ||
<height>441</height> | ||
</rect> | ||
</property> | ||
<property name="sizePolicy"> | ||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed"> | ||
<horstretch>0</horstretch> | ||
<verstretch>0</verstretch> | ||
</sizepolicy> | ||
</property> | ||
<property name="frameShape"> | ||
<enum>QFrame::StyledPanel</enum> | ||
</property> | ||
<property name="horizontalScrollBarPolicy"> | ||
<enum>Qt::ScrollBarAlwaysOff</enum> | ||
</property> | ||
<property name="editTriggers"> | ||
<set>QAbstractItemView::NoEditTriggers</set> | ||
</property> | ||
<property name="sortingEnabled"> | ||
<bool>true</bool> | ||
</property> | ||
<attribute name="horizontalHeaderVisible"> | ||
<bool>false</bool> | ||
</attribute> | ||
<attribute name="horizontalHeaderHighlightSections"> | ||
<bool>false</bool> | ||
</attribute> | ||
<attribute name="verticalHeaderVisible"> | ||
<bool>false</bool> | ||
</attribute> | ||
<attribute name="verticalHeaderHighlightSections"> | ||
<bool>false</bool> | ||
</attribute> | ||
</widget> | ||
<widget class="QLabel" name="label"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>500</x> | ||
<y>120</y> | ||
<width>59</width> | ||
<height>14</height> | ||
</rect> | ||
</property> | ||
<property name="layoutDirection"> | ||
<enum>Qt::LeftToRight</enum> | ||
</property> | ||
<property name="text"> | ||
<string>Search:</string> | ||
</property> | ||
<property name="alignment"> | ||
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="lblDateRange"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>10</x> | ||
<y>65</y> | ||
<width>551</width> | ||
<height>21</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>12</pointsize> | ||
<weight>50</weight> | ||
<bold>false</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>Date Range</string> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="lblLocation"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>10</x> | ||
<y>30</y> | ||
<width>771</width> | ||
<height>35</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>14</pointsize> | ||
<weight>75</weight> | ||
<bold>true</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>Location</string> | ||
</property> | ||
</widget> | ||
<widget class="QLabel" name="lblDetails"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>10</x> | ||
<y>90</y> | ||
<width>551</width> | ||
<height>21</height> | ||
</rect> | ||
</property> | ||
<property name="font"> | ||
<font> | ||
<pointsize>12</pointsize> | ||
<weight>50</weight> | ||
<bold>false</bold> | ||
</font> | ||
</property> | ||
<property name="text"> | ||
<string>Details Label</string> | ||
</property> | ||
</widget> | ||
</widget> | ||
<resources> | ||
<include location="icons.qrc"/> | ||
</resources> | ||
<connections/> | ||
</ui> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Form implementation generated from reading ui file 'Compare.ui' | ||
# | ||
# Created by: PyQt5 UI code generator 5.10 | ||
# | ||
# WARNING! All changes made in this file will be lost! | ||
|
||
from PyQt5 import QtCore, QtGui, QtWidgets | ||
|
||
class Ui_frmCompare(object): | ||
def setupUi(self, frmCompare): | ||
frmCompare.setObjectName("frmCompare") | ||
frmCompare.resize(800, 500) | ||
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Preferred, QtWidgets.QSizePolicy.Preferred) | ||
sizePolicy.setHorizontalStretch(0) | ||
sizePolicy.setVerticalStretch(0) | ||
sizePolicy.setHeightForWidth(frmCompare.sizePolicy().hasHeightForWidth()) | ||
frmCompare.setSizePolicy(sizePolicy) | ||
frmCompare.setAcceptDrops(False) | ||
icon = QtGui.QIcon() | ||
icon.addPixmap(QtGui.QPixmap(":/icon_compare.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) | ||
frmCompare.setWindowIcon(icon) | ||
self.scrollArea = QtWidgets.QScrollArea(frmCompare) | ||
self.scrollArea.setGeometry(QtCore.QRect(9, 9, 720, 292)) | ||
self.scrollArea.setFrameShape(QtWidgets.QFrame.NoFrame) | ||
self.scrollArea.setFrameShadow(QtWidgets.QFrame.Plain) | ||
self.scrollArea.setWidgetResizable(True) | ||
self.scrollArea.setObjectName("scrollArea") | ||
self.scrollAreaWidgetContents = QtWidgets.QWidget() | ||
self.scrollAreaWidgetContents.setGeometry(QtCore.QRect(0, 0, 720, 292)) | ||
sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Expanding) | ||
sizePolicy.setHorizontalStretch(0) | ||
sizePolicy.setVerticalStretch(0) | ||
sizePolicy.setHeightForWidth(self.scrollAreaWidgetContents.sizePolicy().hasHeightForWidth()) | ||
self.scrollAreaWidgetContents.setSizePolicy(sizePolicy) | ||
self.scrollAreaWidgetContents.setObjectName("scrollAreaWidgetContents") | ||
self.horizontalLayout = QtWidgets.QHBoxLayout(self.scrollAreaWidgetContents) | ||
self.horizontalLayout.setContentsMargins(0, 0, 0, 0) | ||
self.horizontalLayout.setSpacing(2) | ||
self.horizontalLayout.setObjectName("horizontalLayout") | ||
self.frame = QtWidgets.QFrame(self.scrollAreaWidgetContents) | ||
self.frame.setFrameShape(QtWidgets.QFrame.NoFrame) | ||
self.frame.setFrameShadow(QtWidgets.QFrame.Plain) | ||
self.frame.setLineWidth(0) | ||
self.frame.setObjectName("frame") | ||
self.verticalLayout_2 = QtWidgets.QVBoxLayout(self.frame) | ||
self.verticalLayout_2.setContentsMargins(5, 5, 5, 5) | ||
self.verticalLayout_2.setSpacing(5) | ||
self.verticalLayout_2.setObjectName("verticalLayout_2") | ||
self.cboListsLeft = QtWidgets.QComboBox(self.frame) | ||
self.cboListsLeft.setObjectName("cboListsLeft") | ||
self.verticalLayout_2.addWidget(self.cboListsLeft) | ||
self.lblLeftListOnly = QtWidgets.QLabel(self.frame) | ||
self.lblLeftListOnly.setObjectName("lblLeftListOnly") | ||
self.verticalLayout_2.addWidget(self.lblLeftListOnly) | ||
self.lstLeftOnly = QtWidgets.QListWidget(self.frame) | ||
self.lstLeftOnly.setObjectName("lstLeftOnly") | ||
self.verticalLayout_2.addWidget(self.lstLeftOnly) | ||
self.horizontalLayout.addWidget(self.frame) | ||
self.frame_2 = QtWidgets.QFrame(self.scrollAreaWidgetContents) | ||
self.frame_2.setFrameShape(QtWidgets.QFrame.NoFrame) | ||
self.frame_2.setFrameShadow(QtWidgets.QFrame.Plain) | ||
self.frame_2.setLineWidth(0) | ||
self.frame_2.setObjectName("frame_2") | ||
self.verticalLayout_3 = QtWidgets.QVBoxLayout(self.frame_2) | ||
self.verticalLayout_3.setContentsMargins(5, 5, 5, 5) | ||
self.verticalLayout_3.setSpacing(5) | ||
self.verticalLayout_3.setObjectName("verticalLayout_3") | ||
self.btnCompare = QtWidgets.QPushButton(self.frame_2) | ||
self.btnCompare.setObjectName("btnCompare") | ||
self.verticalLayout_3.addWidget(self.btnCompare) | ||
self.lblBothLists = QtWidgets.QLabel(self.frame_2) | ||
self.lblBothLists.setObjectName("lblBothLists") | ||
self.verticalLayout_3.addWidget(self.lblBothLists) | ||
self.lstBoth = QtWidgets.QListWidget(self.frame_2) | ||
self.lstBoth.setObjectName("lstBoth") | ||
self.verticalLayout_3.addWidget(self.lstBoth) | ||
self.horizontalLayout.addWidget(self.frame_2) | ||
self.frame_3 = QtWidgets.QFrame(self.scrollAreaWidgetContents) | ||
self.frame_3.setFrameShape(QtWidgets.QFrame.NoFrame) | ||
self.frame_3.setFrameShadow(QtWidgets.QFrame.Plain) | ||
self.frame_3.setLineWidth(0) | ||
self.frame_3.setObjectName("frame_3") | ||
self.verticalLayout_4 = QtWidgets.QVBoxLayout(self.frame_3) | ||
self.verticalLayout_4.setContentsMargins(5, 5, 5, 5) | ||
self.verticalLayout_4.setSpacing(5) | ||
self.verticalLayout_4.setObjectName("verticalLayout_4") | ||
self.cboListsRight = QtWidgets.QComboBox(self.frame_3) | ||
self.cboListsRight.setObjectName("cboListsRight") | ||
self.verticalLayout_4.addWidget(self.cboListsRight) | ||
self.lblRightListOnly = QtWidgets.QLabel(self.frame_3) | ||
self.lblRightListOnly.setObjectName("lblRightListOnly") | ||
self.verticalLayout_4.addWidget(self.lblRightListOnly) | ||
self.lstRightOnly = QtWidgets.QListWidget(self.frame_3) | ||
self.lstRightOnly.setObjectName("lstRightOnly") | ||
self.verticalLayout_4.addWidget(self.lstRightOnly) | ||
self.horizontalLayout.addWidget(self.frame_3) | ||
self.scrollArea.setWidget(self.scrollAreaWidgetContents) | ||
|
||
self.retranslateUi(frmCompare) | ||
QtCore.QMetaObject.connectSlotsByName(frmCompare) | ||
|
||
def retranslateUi(self, frmCompare): | ||
_translate = QtCore.QCoreApplication.translate | ||
frmCompare.setWindowTitle(_translate("frmCompare", "Compare Lists")) | ||
self.lblLeftListOnly.setText(_translate("frmCompare", "This List Only")) | ||
self.lstLeftOnly.setSortingEnabled(False) | ||
self.btnCompare.setText(_translate("frmCompare", "Compare")) | ||
self.lblBothLists.setText(_translate("frmCompare", "Species on Both Lists")) | ||
self.lstBoth.setSortingEnabled(False) | ||
self.lblRightListOnly.setText(_translate("frmCompare", "This List Only")) | ||
self.lstRightOnly.setSortingEnabled(False) | ||
|
||
import icons_rc |
Oops, something went wrong.