Initial commit
[cuteexplorer] / mainwindow.ui
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ui version="4.0">
3  <class>MainWindow</class>
4  <widget class="QMainWindow" name="MainWindow">
5   <property name="geometry">
6    <rect>
7     <x>0</x>
8     <y>0</y>
9     <width>600</width>
10     <height>400</height>
11    </rect>
12   </property>
13   <property name="windowTitle">
14    <string>CuteExplorer</string>
15   </property>
16   <property name="locale">
17    <locale language="English" country="UnitedStates"/>
18   </property>
19   <widget class="QWidget" name="centralWidget">
20    <layout class="QVBoxLayout" name="verticalLayout">
21     <item>
22      <layout class="QHBoxLayout" name="horizontalLayout">
23       <item>
24        <widget class="QPushButton" name="upButton">
25         <property name="text">
26          <string>Up</string>
27         </property>
28         <property name="shortcut">
29          <string>Backspace</string>
30         </property>
31        </widget>
32       </item>
33       <item>
34        <widget class="QLineEdit" name="locationLine"/>
35       </item>
36      </layout>
37     </item>
38     <item>
39      <layout class="QHBoxLayout" name="horizontalLayout_2">
40       <item>
41        <widget class="FileListWidget" name="fileListWidget">
42         <property name="contextMenuPolicy">
43          <enum>Qt::NoContextMenu</enum>
44         </property>
45         <property name="editTriggers">
46          <set>QAbstractItemView::NoEditTriggers</set>
47         </property>
48         <property name="showDropIndicator" stdset="0">
49          <bool>false</bool>
50         </property>
51         <property name="selectionMode">
52          <enum>QAbstractItemView::ExtendedSelection</enum>
53         </property>
54         <property name="textElideMode">
55          <enum>Qt::ElideRight</enum>
56         </property>
57        </widget>
58       </item>
59      </layout>
60     </item>
61    </layout>
62   </widget>
63   <widget class="QMenuBar" name="menuBar">
64    <property name="geometry">
65     <rect>
66      <x>0</x>
67      <y>0</y>
68      <width>600</width>
69      <height>21</height>
70     </rect>
71    </property>
72    <widget class="QMenu" name="menuEdit">
73     <property name="title">
74      <string>Edit</string>
75     </property>
76     <addaction name="actionRename"/>
77     <addaction name="actionCut"/>
78     <addaction name="actionCopy"/>
79     <addaction name="actionPaste"/>
80     <addaction name="actionDelete"/>
81    </widget>
82    <widget class="QMenu" name="menuView">
83     <property name="title">
84      <string>View</string>
85     </property>
86     <addaction name="actionMode"/>
87     <addaction name="actionShow_hidden"/>
88    </widget>
89    <widget class="QMenu" name="menuFile">
90     <property name="title">
91      <string>File</string>
92     </property>
93     <addaction name="actionSend"/>
94     <addaction name="actionExit"/>
95    </widget>
96    <addaction name="menuFile"/>
97    <addaction name="menuEdit"/>
98    <addaction name="menuView"/>
99   </widget>
100   <action name="actionExit">
101    <property name="text">
102     <string>Exit</string>
103    </property>
104   </action>
105   <action name="actionCut">
106    <property name="text">
107     <string>Cut</string>
108    </property>
109   </action>
110   <action name="actionCopy">
111    <property name="text">
112     <string>Copy</string>
113    </property>
114   </action>
115   <action name="actionPaste">
116    <property name="text">
117     <string>Paste</string>
118    </property>
119   </action>
120   <action name="actionDelete">
121    <property name="text">
122     <string>Delete</string>
123    </property>
124   </action>
125   <action name="actionMode">
126    <property name="checkable">
127     <bool>true</bool>
128    </property>
129    <property name="text">
130     <string>Icon view</string>
131    </property>
132   </action>
133   <action name="actionRename">
134    <property name="text">
135     <string>Rename</string>
136    </property>
137   </action>
138   <action name="actionShow_hidden">
139    <property name="checkable">
140     <bool>true</bool>
141    </property>
142    <property name="text">
143     <string>Show hidden</string>
144    </property>
145   </action>
146   <action name="actionSend">
147    <property name="text">
148     <string>Send files</string>
149    </property>
150   </action>
151  </widget>
152  <layoutdefault spacing="6" margin="11"/>
153  <customwidgets>
154   <customwidget>
155    <class>FileListWidget</class>
156    <extends>QListView</extends>
157    <header>filelistwidget.h</header>
158   </customwidget>
159  </customwidgets>
160  <resources/>
161  <connections/>
162 </ui>