Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

remove generated UI source files

Changeset a5f2a48c8172

Parent 43160a7deebd

by Yuki KODAMA

Changes to 3 files · Browse files at a5f2a48c8172 Showing diff from parent 43160a7deebd Diff from another changeset...

Change 1 of 1 Show Entire File tortoisehg/​hgqt/​FileDiffDialog_ui.py Stacked
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -1,85 +0,0 @@
-# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file 'C:\Users\adi\hgrepos\thg-qt\tortoisehg\hgqt\FileDiffDialog.ui' -# -# Created: Sun May 02 12:47:23 2010 -# by: PyQt4 UI code generator 4.7.3 -# -# WARNING! All changes made in this file will be lost! - -from PyQt4 import QtCore, QtGui - -class Ui_MainWindow(object): - def setupUi(self, MainWindow): - MainWindow.setObjectName("MainWindow") - MainWindow.resize(620, 546) - self.centralwidget = QtGui.QWidget(MainWindow) - self.centralwidget.setGeometry(QtCore.QRect(0, 33, 620, 513)) - self.centralwidget.setObjectName("centralwidget") - self.verticalLayout = QtGui.QVBoxLayout(self.centralwidget) - self.verticalLayout.setMargin(0) - self.verticalLayout.setObjectName("verticalLayout") - self.splitter = QtGui.QSplitter(self.centralwidget) - self.splitter.setOrientation(QtCore.Qt.Vertical) - self.splitter.setObjectName("splitter") - self.layoutWidget = QtGui.QWidget(self.splitter) - self.layoutWidget.setObjectName("layoutWidget") - self.horizontalLayout = QtGui.QHBoxLayout(self.layoutWidget) - self.horizontalLayout.setSpacing(0) - self.horizontalLayout.setObjectName("horizontalLayout") - self.tableView_revisions_left = HgRepoView(self.layoutWidget) - self.tableView_revisions_left.setAlternatingRowColors(True) - self.tableView_revisions_left.setSelectionMode(QtGui.QAbstractItemView.SingleSelection) - self.tableView_revisions_left.setSelectionBehavior(QtGui.QAbstractItemView.SelectRows) - self.tableView_revisions_left.setShowGrid(False) - self.tableView_revisions_left.setObjectName("tableView_revisions_left") - self.horizontalLayout.addWidget(self.tableView_revisions_left) - self.tableView_revisions_right = HgRepoView(self.layoutWidget) - self.tableView_revisions_right.setAlternatingRowColors(True) - self.tableView_revisions_right.setSelectionMode(QtGui.QAbstractItemView.SingleSelection) - self.tableView_revisions_right.setSelectionBehavior(QtGui.QAbstractItemView.SelectRows) - self.tableView_revisions_right.setShowGrid(False) - self.tableView_revisions_right.setObjectName("tableView_revisions_right") - self.horizontalLayout.addWidget(self.tableView_revisions_right) - self.layoutWidget1 = QtGui.QWidget(self.splitter) - self.layoutWidget1.setObjectName("layoutWidget1") - self.horizontalLayout_2 = QtGui.QHBoxLayout(self.layoutWidget1) - self.horizontalLayout_2.setSpacing(0) - self.horizontalLayout_2.setObjectName("horizontalLayout_2") - self.frame = QtGui.QFrame(self.layoutWidget1) - self.frame.setFrameShape(QtGui.QFrame.NoFrame) - self.frame.setFrameShadow(QtGui.QFrame.Raised) - self.frame.setObjectName("frame") - self.horizontalLayout_2.addWidget(self.frame) - self.verticalLayout.addWidget(self.splitter) - MainWindow.setCentralWidget(self.centralwidget) - self.toolBar = QtGui.QToolBar(MainWindow) - self.toolBar.setGeometry(QtCore.QRect(0, 0, 121, 33)) - self.toolBar.setObjectName("toolBar") - MainWindow.addToolBar(QtCore.Qt.ToolBarArea(QtCore.Qt.TopToolBarArea), self.toolBar) - MainWindow.insertToolBarBreak(self.toolBar) - self.toolBar_edit = QtGui.QToolBar(MainWindow) - self.toolBar_edit.setGeometry(QtCore.QRect(121, 0, 499, 33)) - self.toolBar_edit.setObjectName("toolBar_edit") - MainWindow.addToolBar(QtCore.Qt.ToolBarArea(QtCore.Qt.TopToolBarArea), self.toolBar_edit) - self.actionClose = QtGui.QAction(MainWindow) - self.actionClose.setObjectName("actionClose") - self.actionReload = QtGui.QAction(MainWindow) - self.actionReload.setObjectName("actionReload") - self.toolBar.addAction(self.actionClose) - self.toolBar.addAction(self.actionReload) - - self.retranslateUi(MainWindow) - QtCore.QMetaObject.connectSlotsByName(MainWindow) - MainWindow.setTabOrder(self.tableView_revisions_left, self.tableView_revisions_right) - - def retranslateUi(self, MainWindow): - MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "MainWindow", None, QtGui.QApplication.UnicodeUTF8)) - self.toolBar.setWindowTitle(QtGui.QApplication.translate("MainWindow", "toolBar", None, QtGui.QApplication.UnicodeUTF8)) - self.toolBar_edit.setWindowTitle(QtGui.QApplication.translate("MainWindow", "toolBar_2", None, QtGui.QApplication.UnicodeUTF8)) - self.actionClose.setText(QtGui.QApplication.translate("MainWindow", "Close", None, QtGui.QApplication.UnicodeUTF8)) - self.actionClose.setShortcut(QtGui.QApplication.translate("MainWindow", "Ctrl+Q", None, QtGui.QApplication.UnicodeUTF8)) - self.actionReload.setText(QtGui.QApplication.translate("MainWindow", "Reload", None, QtGui.QApplication.UnicodeUTF8)) - self.actionReload.setShortcut(QtGui.QApplication.translate("MainWindow", "Ctrl+R", None, QtGui.QApplication.UnicodeUTF8)) - -from repoview import HgRepoView
Change 1 of 1 Show Entire File tortoisehg/​hgqt/​FileLogDialog_ui.py Stacked
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -1,59 +0,0 @@
-# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file 'C:\Users\adi\hgrepos\thg-qt\tortoisehg\hgqt\FileLogDialog.ui' -# -# Created: Fri May 14 15:43:00 2010 -# by: PyQt4 UI code generator 4.7.3 -# -# WARNING! All changes made in this file will be lost! - -from PyQt4 import QtCore, QtGui - -class Ui_MainWindow(object): - def setupUi(self, MainWindow): - MainWindow.setObjectName("MainWindow") - MainWindow.resize(481, 438) - self.centralwidget = QtGui.QWidget(MainWindow) - self.centralwidget.setGeometry(QtCore.QRect(0, 33, 481, 405)) - self.centralwidget.setObjectName("centralwidget") - self.verticalLayout = QtGui.QVBoxLayout(self.centralwidget) - self.verticalLayout.setMargin(2) - self.verticalLayout.setObjectName("verticalLayout") - self.splitter = QtGui.QSplitter(self.centralwidget) - self.splitter.setOrientation(QtCore.Qt.Vertical) - self.splitter.setObjectName("splitter") - self.repoview = HgRepoView(self.splitter) - self.repoview.setAlternatingRowColors(True) - self.repoview.setSelectionMode(QtGui.QAbstractItemView.SingleSelection) - self.repoview.setSelectionBehavior(QtGui.QAbstractItemView.SelectRows) - self.repoview.setShowGrid(False) - self.repoview.setGridStyle(QtCore.Qt.NoPen) - self.repoview.setObjectName("repoview") - self.textView = HgFileView(self.splitter) - self.textView.setObjectName("textView") - self.verticalLayout.addWidget(self.splitter) - MainWindow.setCentralWidget(self.centralwidget) - self.toolBar_edit = QtGui.QToolBar(MainWindow) - self.toolBar_edit.setGeometry(QtCore.QRect(0, 0, 481, 33)) - self.toolBar_edit.setObjectName("toolBar_edit") - MainWindow.addToolBar(QtCore.Qt.ToolBarArea(QtCore.Qt.TopToolBarArea), self.toolBar_edit) - self.actionClose = QtGui.QAction(MainWindow) - self.actionClose.setObjectName("actionClose") - self.actionReload = QtGui.QAction(MainWindow) - self.actionReload.setObjectName("actionReload") - self.toolBar_edit.addAction(self.actionClose) - self.toolBar_edit.addAction(self.actionReload) - - self.retranslateUi(MainWindow) - QtCore.QMetaObject.connectSlotsByName(MainWindow) - - def retranslateUi(self, MainWindow): - MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "hg FileViewer", None, QtGui.QApplication.UnicodeUTF8)) - self.toolBar_edit.setWindowTitle(QtGui.QApplication.translate("MainWindow", "toolBar", None, QtGui.QApplication.UnicodeUTF8)) - self.actionClose.setText(QtGui.QApplication.translate("MainWindow", "Close", None, QtGui.QApplication.UnicodeUTF8)) - self.actionClose.setShortcut(QtGui.QApplication.translate("MainWindow", "Ctrl+Q", None, QtGui.QApplication.UnicodeUTF8)) - self.actionReload.setText(QtGui.QApplication.translate("MainWindow", "Reload", None, QtGui.QApplication.UnicodeUTF8)) - self.actionReload.setShortcut(QtGui.QApplication.translate("MainWindow", "Ctrl+R", None, QtGui.QApplication.UnicodeUTF8)) - -from fileview import HgFileView -from repoview import HgRepoView
Change 1 of 1 Show Entire File tortoisehg/​hgqt/​ManifestDialog_ui.py Stacked
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -1,48 +0,0 @@
-# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file 'C:\Users\adi\hgrepos\thg-qt\tortoisehg\hgqt\ManifestDialog.ui' -# -# Created: Tue May 18 11:33:55 2010 -# by: PyQt4 UI code generator 4.7.3 -# -# WARNING! All changes made in this file will be lost! - -from PyQt4 import QtCore, QtGui - -class Ui_MainWindow(object): - def setupUi(self, MainWindow): - MainWindow.setObjectName("MainWindow") - MainWindow.resize(400, 300) - self.centralwidget = QtGui.QWidget(MainWindow) - self.centralwidget.setObjectName("centralwidget") - self.verticalLayout = QtGui.QVBoxLayout(self.centralwidget) - self.verticalLayout.setMargin(2) - self.verticalLayout.setObjectName("verticalLayout") - self.splitter = QtGui.QSplitter(self.centralwidget) - self.splitter.setOrientation(QtCore.Qt.Horizontal) - self.splitter.setObjectName("splitter") - self.treeView = QtGui.QTreeView(self.splitter) - sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding) - sizePolicy.setHorizontalStretch(1) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.treeView.sizePolicy().hasHeightForWidth()) - self.treeView.setSizePolicy(sizePolicy) - self.treeView.setObjectName("treeView") - self.mainFrame = QtGui.QFrame(self.splitter) - sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Preferred, QtGui.QSizePolicy.Preferred) - sizePolicy.setHorizontalStretch(3) - sizePolicy.setVerticalStretch(0) - sizePolicy.setHeightForWidth(self.mainFrame.sizePolicy().hasHeightForWidth()) - self.mainFrame.setSizePolicy(sizePolicy) - self.mainFrame.setFrameShape(QtGui.QFrame.StyledPanel) - self.mainFrame.setFrameShadow(QtGui.QFrame.Raised) - self.mainFrame.setObjectName("mainFrame") - self.verticalLayout.addWidget(self.splitter) - MainWindow.setCentralWidget(self.centralwidget) - - self.retranslateUi(MainWindow) - QtCore.QMetaObject.connectSlotsByName(MainWindow) - - def retranslateUi(self, MainWindow): - MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "Dialog", None, QtGui.QApplication.UnicodeUTF8)) -