-
Notifications
You must be signed in to change notification settings - Fork 302
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed bugs, added update check function
- Loading branch information
Showing
35 changed files
with
25,766 additions
and
9,502 deletions.
There are no files selected for viewing
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
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
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
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
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,9 @@ | ||
#!/usr/bin/python | ||
# -*- coding: utf-8 -*- | ||
from PyQt4.QtGui import QDialog | ||
from ui.UpdateCheckDialog import Ui_UpdateCheckDialog | ||
class UpdateCheckDialog(QDialog): | ||
def __init__(self, parent=None): | ||
QDialog.__init__(self, parent) | ||
self.ui = Ui_UpdateCheckDialog() | ||
self.ui.setupUi(self) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,44 +1,26 @@ | ||
<RCC> | ||
<qresource prefix="cr"> | ||
<file>143 Attention.png</file> | ||
<file>200 CircledMinus.png</file> | ||
<file>219 CircledSync.png</file> | ||
<file>226 CircledGeo.png</file> | ||
<file>020 DocumentCSV.png</file> | ||
<file>020 DocumentKML.png</file> | ||
<file>021 Document Text.png</file> | ||
<file>022 Document Add.png</file> | ||
<file>054 Preferences2.png</file> | ||
<file>003 User2.png</file> | ||
<file>005 CalendarDate.png</file> | ||
<file>011 InboxDownload.png</file> | ||
<file>013 MagnifyingGlass.png</file> | ||
<file>059 CircledOff.png</file> | ||
<file>060 Off.png</file> | ||
<file>061 Sync.png</file> | ||
<file>070 Minus.png</file> | ||
<file>077 Location.png</file> | ||
<file>078 Pin.png</file> | ||
<file>079 Pin2.png</file> | ||
<file>084 Photo.png</file> | ||
<file>107 Flag.png</file> | ||
<file>119 Eye.png</file> | ||
<file>144 Forbidden.png</file> | ||
<file>165 ExclamationMark.png</file> | ||
<file>196 Time.png</file> | ||
<file>197 Compass.png</file> | ||
<file>project_actionmenu_delete.png</file> | ||
<file>heatmap.png</file> | ||
<file>project_actionmenu_edit.png</file> | ||
<file>analysis.png</file> | ||
<file>folder_locations.png</file> | ||
<file>project_icon.png</file> | ||
<file>analyze.png</file> | ||
<file>add.png</file> | ||
<file>cvs.png</file> | ||
<file>geolocate.png</file> | ||
<file>creepy32.png</file> | ||
<file>plugins_config.png</file> | ||
<file>save.png</file> | ||
<qresource prefix="creepy"> | ||
<file alias="creepy">Eye_of_Sauron_by_Blood_Solice.png</file> | ||
<file alias="calendar">../../../../icons/32/calendar-day.png</file> | ||
<file alias="cross">../../../../icons/32/cross.png</file> | ||
<file alias="cross-circle">../../../../icons/32/cross-circle.png</file> | ||
<file alias="exclamation">../../../../icons/32/exclamation.png</file> | ||
<file alias="properties">../../../../icons/32/application-sidebar-list.png</file> | ||
<file alias="image-instagram">../../../../icons/32/image-instagram.png</file> | ||
<file alias="heatmap">../../../../icons/24/fire.png</file> | ||
<file alias="info">../../../../icons/32/information.png</file> | ||
<file alias="lock">../../../../icons/32/lock.png</file> | ||
<file alias="minus">../../../../icons/32/minus.png</file> | ||
<file alias="map">../../../../icons/32/map.png</file> | ||
<file alias="minus-circle">../../../../icons/32/minus-circle.png</file> | ||
<file alias="export">../../../../icons/24/blue-document-export.png</file> | ||
<file alias="globe">../../../../icons/24/globe.png</file> | ||
<file alias="marker">../../../../icons/24/marker.png</file> | ||
<file alias="target">../../../../icons/24/target.png</file> | ||
<file alias="user">../../../../icons/24/user.png</file> | ||
<file alias="add">../../../../icons/32/plus-circle.png</file> | ||
<file alias="folder">../../../../icons/32/blue-folder-horizontal.png</file> | ||
<file alias="bookmark">../../../../icons/32/bookmark.png</file> | ||
<file alias="tick">../../../../icons/32/tick.png</file> | ||
</qresource> | ||
</RCC> |
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
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
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
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
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
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
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
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
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,77 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Form implementation generated from reading ui file '.\updateCheckDialog.ui' | ||
# | ||
# Created: Wed Jan 08 19:47:23 2014 | ||
# by: PyQt4 UI code generator 4.9.4 | ||
# | ||
# WARNING! All changes made in this file will be lost! | ||
|
||
from PyQt4 import QtCore, QtGui | ||
|
||
try: | ||
_fromUtf8 = QtCore.QString.fromUtf8 | ||
except AttributeError: | ||
_fromUtf8 = lambda s: s | ||
|
||
class Ui_UpdateAvailableDialog(object): | ||
def setupUi(self, UpdateAvailableDialog): | ||
UpdateAvailableDialog.setObjectName(_fromUtf8("UpdateAvailableDialog")) | ||
UpdateAvailableDialog.resize(594, 300) | ||
icon = QtGui.QIcon() | ||
icon.addPixmap(QtGui.QPixmap(_fromUtf8(":/cr/Eye_of_Sauron_by_Blood_Solice.png")), QtGui.QIcon.Normal, QtGui.QIcon.Off) | ||
UpdateAvailableDialog.setWindowIcon(icon) | ||
self.buttonBox = QtGui.QDialogButtonBox(UpdateAvailableDialog) | ||
self.buttonBox.setGeometry(QtCore.QRect(240, 240, 341, 32)) | ||
self.buttonBox.setOrientation(QtCore.Qt.Horizontal) | ||
self.buttonBox.setStandardButtons(QtGui.QDialogButtonBox.Close) | ||
self.buttonBox.setObjectName(_fromUtf8("buttonBox")) | ||
self.verticalLayoutWidget = QtGui.QWidget(UpdateAvailableDialog) | ||
self.verticalLayoutWidget.setGeometry(QtCore.QRect(10, 10, 571, 221)) | ||
self.verticalLayoutWidget.setObjectName(_fromUtf8("verticalLayoutWidget")) | ||
self.verticalLayout = QtGui.QVBoxLayout(self.verticalLayoutWidget) | ||
self.verticalLayout.setMargin(0) | ||
self.verticalLayout.setObjectName(_fromUtf8("verticalLayout")) | ||
self.label = QtGui.QLabel(self.verticalLayoutWidget) | ||
self.label.setObjectName(_fromUtf8("label")) | ||
self.verticalLayout.addWidget(self.label) | ||
self.versionsTableWidget = QtGui.QTableWidget(self.verticalLayoutWidget) | ||
self.versionsTableWidget.setEditTriggers(QtGui.QAbstractItemView.NoEditTriggers) | ||
self.versionsTableWidget.setTabKeyNavigation(False) | ||
self.versionsTableWidget.setProperty("showDropIndicator", False) | ||
self.versionsTableWidget.setRowCount(1) | ||
self.versionsTableWidget.setColumnCount(4) | ||
self.versionsTableWidget.setObjectName(_fromUtf8("versionsTableWidget")) | ||
item = QtGui.QTableWidgetItem() | ||
self.versionsTableWidget.setItem(0, 0, item) | ||
item = QtGui.QTableWidgetItem() | ||
self.versionsTableWidget.setItem(0, 1, item) | ||
item = QtGui.QTableWidgetItem() | ||
self.versionsTableWidget.setItem(0, 2, item) | ||
self.versionsTableWidget.horizontalHeader().setStretchLastSection(True) | ||
self.versionsTableWidget.verticalHeader().setVisible(False) | ||
self.verticalLayout.addWidget(self.versionsTableWidget) | ||
|
||
self.retranslateUi(UpdateAvailableDialog) | ||
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("accepted()")), UpdateAvailableDialog.accept) | ||
QtCore.QObject.connect(self.buttonBox, QtCore.SIGNAL(_fromUtf8("rejected()")), UpdateAvailableDialog.reject) | ||
QtCore.QMetaObject.connectSlotsByName(UpdateAvailableDialog) | ||
|
||
def retranslateUi(self, UpdateAvailableDialog): | ||
UpdateAvailableDialog.setWindowTitle(QtGui.QApplication.translate("UpdateAvailableDialog", "Update Check", None, QtGui.QApplication.UnicodeUTF8)) | ||
self.label.setText(QtGui.QApplication.translate("UpdateAvailableDialog", "<html><head/><body><p><span style=\" font-weight:600;\">Results of Update Check</span></p></body></html>", None, QtGui.QApplication.UnicodeUTF8)) | ||
__sortingEnabled = self.versionsTableWidget.isSortingEnabled() | ||
self.versionsTableWidget.setSortingEnabled(False) | ||
self.versionsTableWidget.setSortingEnabled(__sortingEnabled) | ||
|
||
import creepy_resources_rc | ||
|
||
if __name__ == "__main__": | ||
import sys | ||
app = QtGui.QApplication(sys.argv) | ||
UpdateAvailableDialog = QtGui.QDialog() | ||
ui = Ui_UpdateAvailableDialog() | ||
ui.setupUi(UpdateAvailableDialog) | ||
UpdateAvailableDialog.show() | ||
sys.exit(app.exec_()) | ||
|
Oops, something went wrong.