~bialix/qbzr/code-layout

« back to all changes in this revision

Viewing changes to lib/ui_run.py

  • Committer: Alexander Belchenko
  • Date: 2009-12-16 20:48:14 UTC
  • mfrom: (1117.1.45 trunk)
  • Revision ID: bialix@ukr.net-20091216204814-g8nz4mvy6rg1kaov
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
# Form implementation generated from reading ui file 'ui/run.ui'
4
4
#
5
 
# Created: Sun Aug 23 20:03:41 2009
6
 
#      by: PyQt4 UI code generator 4.4.3
 
5
# Created: Mon Dec  7 01:25:47 2009
 
6
#      by: PyQt4 UI code generator 4.6
7
7
#
8
8
# WARNING! All changes made in this file will be lost!
9
9
 
49
49
        self.frame_layout.addLayout(self.wd_layout)
50
50
        self.cmd_layout = QtGui.QGridLayout()
51
51
        self.cmd_layout.setObjectName("cmd_layout")
 
52
        self.cat_label = QtGui.QLabel(self.frame)
 
53
        self.cat_label.setObjectName("cat_label")
 
54
        self.cmd_layout.addWidget(self.cat_label, 0, 0, 1, 1)
 
55
        self.cat_combobox = QtGui.QComboBox(self.frame)
 
56
        self.cat_combobox.setMinimumSize(QtCore.QSize(170, 0))
 
57
        self.cat_combobox.setObjectName("cat_combobox")
 
58
        self.cmd_layout.addWidget(self.cat_combobox, 0, 1, 1, 1)
52
59
        self.cmd_label = QtGui.QLabel(self.frame)
53
60
        self.cmd_label.setObjectName("cmd_label")
54
 
        self.cmd_layout.addWidget(self.cmd_label, 0, 0, 1, 1)
 
61
        self.cmd_layout.addWidget(self.cmd_label, 1, 0, 1, 1)
55
62
        self.cmd_combobox = QtGui.QComboBox(self.frame)
56
63
        self.cmd_combobox.setMinimumSize(QtCore.QSize(170, 0))
57
64
        self.cmd_combobox.setEditable(True)
58
65
        self.cmd_combobox.setObjectName("cmd_combobox")
59
 
        self.cmd_layout.addWidget(self.cmd_combobox, 0, 1, 1, 1)
 
66
        self.cmd_layout.addWidget(self.cmd_combobox, 1, 1, 1, 1)
60
67
        self.hidden_checkbox = QtGui.QCheckBox(self.frame)
61
68
        self.hidden_checkbox.setObjectName("hidden_checkbox")
62
 
        self.cmd_layout.addWidget(self.hidden_checkbox, 0, 2, 1, 1)
 
69
        self.cmd_layout.addWidget(self.hidden_checkbox, 1, 2, 1, 1)
63
70
        self.frame_layout.addLayout(self.cmd_layout)
64
71
        self.opt_arg_label = QtGui.QLabel(self.frame)
65
72
        self.opt_arg_label.setLineWidth(0)
83
90
        self.help_browser.setObjectName("help_browser")
84
91
        self.main_v_layout.addWidget(self.splitter)
85
92
        self.wd_label.setBuddy(self.wd_edit)
 
93
        self.cat_label.setBuddy(self.cmd_combobox)
86
94
        self.cmd_label.setBuddy(self.cmd_combobox)
87
95
        self.opt_arg_label.setBuddy(self.opt_arg_edit)
88
96
 
101
109
        RunDialog.setWindowTitle(gettext("Run bzr command"))
102
110
        self.wd_label.setText(gettext("&Working directory:"))
103
111
        self.browse_button.setText(gettext("&Browse..."))
 
112
        self.cat_label.setText(gettext("C&ategory:"))
104
113
        self.cmd_label.setText(gettext("&Command:"))
105
114
        self.hidden_checkbox.setText(gettext("&Show hidden commands"))
106
115
        self.opt_arg_label.setText(gettext("&Options and arguments for command:"))