Plugins/VcsPlugins/vcsGit/GitBlameDialog.ui

changeset 6020
baf6da1ae288
equal deleted inserted replaced
6019:58ecdaf0b789 6020:baf6da1ae288
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3 <class>GitBlameDialog</class>
4 <widget class="QDialog" name="GitBlameDialog">
5 <property name="geometry">
6 <rect>
7 <x>0</x>
8 <y>0</y>
9 <width>800</width>
10 <height>750</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>Git Blame</string>
15 </property>
16 <property name="sizeGripEnabled">
17 <bool>true</bool>
18 </property>
19 <layout class="QVBoxLayout">
20 <item>
21 <widget class="QTreeWidget" name="blameList">
22 <property name="sizePolicy">
23 <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
24 <horstretch>0</horstretch>
25 <verstretch>6</verstretch>
26 </sizepolicy>
27 </property>
28 <property name="alternatingRowColors">
29 <bool>true</bool>
30 </property>
31 <property name="selectionMode">
32 <enum>QAbstractItemView::NoSelection</enum>
33 </property>
34 <property name="rootIsDecorated">
35 <bool>false</bool>
36 </property>
37 <property name="itemsExpandable">
38 <bool>false</bool>
39 </property>
40 <attribute name="headerStretchLastSection">
41 <bool>false</bool>
42 </attribute>
43 <column>
44 <property name="text">
45 <string>Commit</string>
46 </property>
47 </column>
48 <column>
49 <property name="text">
50 <string>Author</string>
51 </property>
52 </column>
53 <column>
54 <property name="text">
55 <string>Date</string>
56 </property>
57 </column>
58 <column>
59 <property name="text">
60 <string>Time</string>
61 </property>
62 </column>
63 <column>
64 <property name="text">
65 <string>Line</string>
66 </property>
67 </column>
68 </widget>
69 </item>
70 <item>
71 <widget class="QGroupBox" name="errorGroup">
72 <property name="sizePolicy">
73 <sizepolicy hsizetype="Preferred" vsizetype="Expanding">
74 <horstretch>0</horstretch>
75 <verstretch>1</verstretch>
76 </sizepolicy>
77 </property>
78 <property name="title">
79 <string>Errors</string>
80 </property>
81 <layout class="QVBoxLayout">
82 <item>
83 <widget class="QTextEdit" name="errors">
84 <property name="readOnly">
85 <bool>true</bool>
86 </property>
87 <property name="acceptRichText">
88 <bool>false</bool>
89 </property>
90 </widget>
91 </item>
92 </layout>
93 </widget>
94 </item>
95 <item>
96 <widget class="QGroupBox" name="inputGroup">
97 <property name="title">
98 <string>Input</string>
99 </property>
100 <layout class="QGridLayout">
101 <item row="1" column="1">
102 <spacer>
103 <property name="orientation">
104 <enum>Qt::Horizontal</enum>
105 </property>
106 <property name="sizeType">
107 <enum>QSizePolicy::Expanding</enum>
108 </property>
109 <property name="sizeHint" stdset="0">
110 <size>
111 <width>327</width>
112 <height>29</height>
113 </size>
114 </property>
115 </spacer>
116 </item>
117 <item row="1" column="2">
118 <widget class="QPushButton" name="sendButton">
119 <property name="toolTip">
120 <string>Press to send the input to the git process</string>
121 </property>
122 <property name="text">
123 <string>&amp;Send</string>
124 </property>
125 <property name="shortcut">
126 <string>Alt+S</string>
127 </property>
128 </widget>
129 </item>
130 <item row="0" column="0" colspan="3">
131 <widget class="QLineEdit" name="input">
132 <property name="toolTip">
133 <string>Enter data to be sent to the git process</string>
134 </property>
135 </widget>
136 </item>
137 <item row="1" column="0">
138 <widget class="QCheckBox" name="passwordCheckBox">
139 <property name="toolTip">
140 <string>Select to switch the input field to password mode</string>
141 </property>
142 <property name="text">
143 <string>&amp;Password Mode</string>
144 </property>
145 <property name="shortcut">
146 <string>Alt+P</string>
147 </property>
148 </widget>
149 </item>
150 </layout>
151 </widget>
152 </item>
153 <item>
154 <widget class="QDialogButtonBox" name="buttonBox">
155 <property name="orientation">
156 <enum>Qt::Horizontal</enum>
157 </property>
158 <property name="standardButtons">
159 <set>QDialogButtonBox::Cancel|QDialogButtonBox::Close</set>
160 </property>
161 </widget>
162 </item>
163 </layout>
164 </widget>
165 <tabstops>
166 <tabstop>blameList</tabstop>
167 <tabstop>errors</tabstop>
168 <tabstop>input</tabstop>
169 <tabstop>passwordCheckBox</tabstop>
170 <tabstop>sendButton</tabstop>
171 <tabstop>buttonBox</tabstop>
172 </tabstops>
173 <resources/>
174 <connections/>
175 </ui>

eric ide

mercurial