comparison MainWindow.ui @ 235:a34cb404cef3

remove the Ui_ prefix from the Qt designer files - The eric IDE will add it without any configuration. Rewrite the Makefile to behave as eric.
author Dirk Olmes <dirk@xanthippe.ping.de>
date Mon, 26 Jan 2015 13:38:55 +0100
parents Ui_MainWindow.ui@9faa1f84e8c9
children 5695197a3ca5
comparison
equal deleted inserted replaced
234:82199c57ad93 235:a34cb404cef3
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>992</width>
10 <height>750</height>
11 </rect>
12 </property>
13 <property name="windowTitle">
14 <string>Feedworm</string>
15 </property>
16 <property name="windowIcon">
17 <iconset resource="Feedworm.qrc">
18 <normaloff>:/newPrefix/worm.png</normaloff>:/newPrefix/worm.png</iconset>
19 </property>
20 <widget class="QWidget" name="centralwidget">
21 <layout class="QGridLayout" name="gridLayout">
22 <item row="0" column="0">
23 <widget class="QSplitter" name="splitter_2">
24 <property name="orientation">
25 <enum>Qt::Horizontal</enum>
26 </property>
27 <widget class="QWidget" name="">
28 <layout class="QVBoxLayout" name="verticalLayout">
29 <item>
30 <widget class="QLabel" name="feedCountLabel">
31 <property name="font">
32 <font>
33 <pointsize>8</pointsize>
34 </font>
35 </property>
36 <property name="text">
37 <string/>
38 </property>
39 <property name="alignment">
40 <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
41 </property>
42 <property name="textInteractionFlags">
43 <set>Qt::NoTextInteraction</set>
44 </property>
45 </widget>
46 </item>
47 <item>
48 <widget class="QListView" name="feedList">
49 <property name="alternatingRowColors">
50 <bool>true</bool>
51 </property>
52 <property name="resizeMode">
53 <enum>QListView::Fixed</enum>
54 </property>
55 </widget>
56 </item>
57 </layout>
58 </widget>
59 <widget class="QSplitter" name="splitter">
60 <property name="orientation">
61 <enum>Qt::Vertical</enum>
62 </property>
63 <widget class="QWidget" name="">
64 <layout class="QVBoxLayout" name="verticalLayout_2">
65 <item>
66 <widget class="QLabel" name="feedEntryCountLabel">
67 <property name="font">
68 <font>
69 <pointsize>8</pointsize>
70 </font>
71 </property>
72 <property name="text">
73 <string/>
74 </property>
75 <property name="alignment">
76 <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
77 </property>
78 <property name="textInteractionFlags">
79 <set>Qt::NoTextInteraction</set>
80 </property>
81 </widget>
82 </item>
83 <item>
84 <widget class="QTableView" name="feedEntryTable">
85 <property name="alternatingRowColors">
86 <bool>true</bool>
87 </property>
88 <property name="selectionBehavior">
89 <enum>QAbstractItemView::SelectRows</enum>
90 </property>
91 <property name="showGrid">
92 <bool>false</bool>
93 </property>
94 <attribute name="verticalHeaderVisible">
95 <bool>false</bool>
96 </attribute>
97 </widget>
98 </item>
99 </layout>
100 </widget>
101 <widget class="QWebView" name="webView" native="true">
102 <property name="url" stdset="0">
103 <url>
104 <string>about:blank</string>
105 </url>
106 </property>
107 </widget>
108 </widget>
109 </widget>
110 </item>
111 </layout>
112 </widget>
113 <widget class="QMenuBar" name="menubar">
114 <property name="geometry">
115 <rect>
116 <x>0</x>
117 <y>0</y>
118 <width>992</width>
119 <height>23</height>
120 </rect>
121 </property>
122 <widget class="QMenu" name="menuFeed">
123 <property name="title">
124 <string>Feed</string>
125 </property>
126 <addaction name="actionMarkFeedRead"/>
127 <addaction name="actionMarkSelectedEntriesRead"/>
128 <addaction name="actionAddFeed"/>
129 <addaction name="actionUpdate"/>
130 <addaction name="actionDeleteFeed"/>
131 <addaction name="actionFeedSettings"/>
132 </widget>
133 <widget class="QMenu" name="menuArticle">
134 <property name="enabled">
135 <bool>false</bool>
136 </property>
137 <property name="title">
138 <string>Article</string>
139 </property>
140 <addaction name="actionMarkSelectedRead"/>
141 <addaction name="actionOpenLink"/>
142 <addaction name="actionOpenInBrowser"/>
143 <addaction name="actionCopyArticleURL"/>
144 </widget>
145 <widget class="QMenu" name="menuFeedworm">
146 <property name="title">
147 <string>Feedworm</string>
148 </property>
149 <addaction name="actionUpdateAllFeeds"/>
150 <addaction name="actionPreferences"/>
151 <addaction name="separator"/>
152 <addaction name="actionQuit"/>
153 </widget>
154 <addaction name="menuFeedworm"/>
155 <addaction name="menuFeed"/>
156 <addaction name="menuArticle"/>
157 </widget>
158 <widget class="QStatusBar" name="statusbar"/>
159 <widget class="QToolBar" name="toolBar">
160 <property name="windowTitle">
161 <string>toolBar</string>
162 </property>
163 <attribute name="toolBarArea">
164 <enum>TopToolBarArea</enum>
165 </attribute>
166 <attribute name="toolBarBreak">
167 <bool>false</bool>
168 </attribute>
169 <addaction name="actionMarkFeedRead"/>
170 <addaction name="actionMarkSelectedEntriesRead"/>
171 <addaction name="actionOpenLink"/>
172 <addaction name="separator"/>
173 <addaction name="actionZoomIn"/>
174 <addaction name="actionZoomOut"/>
175 </widget>
176 <action name="actionQuit">
177 <property name="text">
178 <string>Quit</string>
179 </property>
180 <property name="shortcut">
181 <string>Ctrl+Q</string>
182 </property>
183 </action>
184 <action name="actionAddFeed">
185 <property name="text">
186 <string>Add ...</string>
187 </property>
188 <property name="shortcut">
189 <string>Ctrl+A</string>
190 </property>
191 </action>
192 <action name="actionMarkSelectedRead">
193 <property name="text">
194 <string>Mark selected read</string>
195 </property>
196 <property name="shortcut">
197 <string>M</string>
198 </property>
199 </action>
200 <action name="actionOpenInBrowser">
201 <property name="text">
202 <string>Open in browser</string>
203 </property>
204 <property name="shortcut">
205 <string>Ctrl+O</string>
206 </property>
207 </action>
208 <action name="actionOpenLink">
209 <property name="enabled">
210 <bool>false</bool>
211 </property>
212 <property name="icon">
213 <iconset resource="Feedworm.qrc">
214 <normaloff>:/newPrefix/open_in_browser.png</normaloff>:/newPrefix/open_in_browser.png</iconset>
215 </property>
216 <property name="text">
217 <string>Open link</string>
218 </property>
219 <property name="shortcut">
220 <string>L</string>
221 </property>
222 </action>
223 <action name="actionPreferences">
224 <property name="enabled">
225 <bool>true</bool>
226 </property>
227 <property name="text">
228 <string>Preferences</string>
229 </property>
230 <property name="shortcut">
231 <string>Ctrl+.</string>
232 </property>
233 </action>
234 <action name="actionFeedSettings">
235 <property name="enabled">
236 <bool>false</bool>
237 </property>
238 <property name="text">
239 <string>Settings ...</string>
240 </property>
241 </action>
242 <action name="actionMarkFeedRead">
243 <property name="enabled">
244 <bool>false</bool>
245 </property>
246 <property name="icon">
247 <iconset resource="Feedworm.qrc">
248 <normaloff>:/newPrefix/mark_all_read.jpg</normaloff>:/newPrefix/mark_all_read.jpg</iconset>
249 </property>
250 <property name="text">
251 <string>Mark all read</string>
252 </property>
253 <property name="toolTip">
254 <string>Mark all articles in current feed as read</string>
255 </property>
256 <property name="shortcut">
257 <string>Ctrl+M</string>
258 </property>
259 </action>
260 <action name="actionUpdate">
261 <property name="enabled">
262 <bool>false</bool>
263 </property>
264 <property name="text">
265 <string>Update</string>
266 </property>
267 <property name="toolTip">
268 <string>Update selected feed</string>
269 </property>
270 <property name="shortcut">
271 <string>Ctrl+U</string>
272 </property>
273 </action>
274 <action name="actionUpdateAllFeeds">
275 <property name="enabled">
276 <bool>false</bool>
277 </property>
278 <property name="text">
279 <string>Update feeds</string>
280 </property>
281 <property name="shortcut">
282 <string>Ctrl+Shift+U</string>
283 </property>
284 </action>
285 <action name="actionDeleteFeed">
286 <property name="enabled">
287 <bool>false</bool>
288 </property>
289 <property name="text">
290 <string>Delete</string>
291 </property>
292 </action>
293 <action name="actionMarkSelectedEntriesRead">
294 <property name="enabled">
295 <bool>false</bool>
296 </property>
297 <property name="icon">
298 <iconset resource="Feedworm.qrc">
299 <normaloff>:/newPrefix/mark_selected_read.jpg</normaloff>:/newPrefix/mark_selected_read.jpg</iconset>
300 </property>
301 <property name="text">
302 <string>Mark selected read</string>
303 </property>
304 </action>
305 <action name="actionCopyArticleURL">
306 <property name="text">
307 <string>Copy article URL</string>
308 </property>
309 <property name="shortcut">
310 <string>Ctrl+Shift+C</string>
311 </property>
312 </action>
313 <action name="actionZoomIn">
314 <property name="icon">
315 <iconset resource="Feedworm.qrc">
316 <normaloff>:/newPrefix/zoom_in.png</normaloff>:/newPrefix/zoom_in.png</iconset>
317 </property>
318 <property name="text">
319 <string>Zoom In</string>
320 </property>
321 <property name="toolTip">
322 <string>Zoom In</string>
323 </property>
324 </action>
325 <action name="actionZoomOut">
326 <property name="icon">
327 <iconset resource="Feedworm.qrc">
328 <normaloff>:/newPrefix/zoom_out.png</normaloff>:/newPrefix/zoom_out.png</iconset>
329 </property>
330 <property name="text">
331 <string>Zoom Out</string>
332 </property>
333 <property name="toolTip">
334 <string>Zoom Out</string>
335 </property>
336 </action>
337 </widget>
338 <customwidgets>
339 <customwidget>
340 <class>QWebView</class>
341 <extends>QWidget</extends>
342 <header>QtWebKit/QWebView</header>
343 </customwidget>
344 </customwidgets>
345 <resources>
346 <include location="Feedworm.qrc"/>
347 </resources>
348 <connections>
349 <connection>
350 <sender>actionQuit</sender>
351 <signal>activated()</signal>
352 <receiver>MainWindow</receiver>
353 <slot>close()</slot>
354 <hints>
355 <hint type="sourcelabel">
356 <x>-1</x>
357 <y>-1</y>
358 </hint>
359 <hint type="destinationlabel">
360 <x>399</x>
361 <y>299</y>
362 </hint>
363 </hints>
364 </connection>
365 <connection>
366 <sender>actionAddFeed</sender>
367 <signal>activated()</signal>
368 <receiver>MainWindow</receiver>
369 <slot>addFeed()</slot>
370 <hints>
371 <hint type="sourcelabel">
372 <x>-1</x>
373 <y>-1</y>
374 </hint>
375 <hint type="destinationlabel">
376 <x>495</x>
377 <y>374</y>
378 </hint>
379 </hints>
380 </connection>
381 <connection>
382 <sender>feedList</sender>
383 <signal>clicked(QModelIndex)</signal>
384 <receiver>MainWindow</receiver>
385 <slot>feedSelected(QModelIndex)</slot>
386 <hints>
387 <hint type="sourcelabel">
388 <x>126</x>
389 <y>377</y>
390 </hint>
391 <hint type="destinationlabel">
392 <x>495</x>
393 <y>374</y>
394 </hint>
395 </hints>
396 </connection>
397 <connection>
398 <sender>feedEntryTable</sender>
399 <signal>clicked(QModelIndex)</signal>
400 <receiver>MainWindow</receiver>
401 <slot>feedEntrySelected(QModelIndex)</slot>
402 <hints>
403 <hint type="sourcelabel">
404 <x>616</x>
405 <y>117</y>
406 </hint>
407 <hint type="destinationlabel">
408 <x>495</x>
409 <y>374</y>
410 </hint>
411 </hints>
412 </connection>
413 <connection>
414 <sender>actionMarkSelectedRead</sender>
415 <signal>activated()</signal>
416 <receiver>MainWindow</receiver>
417 <slot>toggleReadOnSelectedEntry()</slot>
418 <hints>
419 <hint type="sourcelabel">
420 <x>-1</x>
421 <y>-1</y>
422 </hint>
423 <hint type="destinationlabel">
424 <x>495</x>
425 <y>374</y>
426 </hint>
427 </hints>
428 </connection>
429 <connection>
430 <sender>actionOpenLink</sender>
431 <signal>activated()</signal>
432 <receiver>MainWindow</receiver>
433 <slot>openLinkFromSelectedEntry()</slot>
434 <hints>
435 <hint type="sourcelabel">
436 <x>-1</x>
437 <y>-1</y>
438 </hint>
439 <hint type="destinationlabel">
440 <x>495</x>
441 <y>374</y>
442 </hint>
443 </hints>
444 </connection>
445 <connection>
446 <sender>actionOpenInBrowser</sender>
447 <signal>activated()</signal>
448 <receiver>MainWindow</receiver>
449 <slot>openSelectedEntryInBrowser()</slot>
450 <hints>
451 <hint type="sourcelabel">
452 <x>-1</x>
453 <y>-1</y>
454 </hint>
455 <hint type="destinationlabel">
456 <x>495</x>
457 <y>374</y>
458 </hint>
459 </hints>
460 </connection>
461 <connection>
462 <sender>actionPreferences</sender>
463 <signal>activated()</signal>
464 <receiver>MainWindow</receiver>
465 <slot>showPreferences()</slot>
466 <hints>
467 <hint type="sourcelabel">
468 <x>-1</x>
469 <y>-1</y>
470 </hint>
471 <hint type="destinationlabel">
472 <x>495</x>
473 <y>374</y>
474 </hint>
475 </hints>
476 </connection>
477 <connection>
478 <sender>actionFeedSettings</sender>
479 <signal>activated()</signal>
480 <receiver>MainWindow</receiver>
481 <slot>showFeedSettings()</slot>
482 <hints>
483 <hint type="sourcelabel">
484 <x>-1</x>
485 <y>-1</y>
486 </hint>
487 <hint type="destinationlabel">
488 <x>495</x>
489 <y>374</y>
490 </hint>
491 </hints>
492 </connection>
493 <connection>
494 <sender>actionMarkFeedRead</sender>
495 <signal>activated()</signal>
496 <receiver>MainWindow</receiver>
497 <slot>markSelectedFeedRead()</slot>
498 <hints>
499 <hint type="sourcelabel">
500 <x>-1</x>
501 <y>-1</y>
502 </hint>
503 <hint type="destinationlabel">
504 <x>495</x>
505 <y>374</y>
506 </hint>
507 </hints>
508 </connection>
509 <connection>
510 <sender>actionDeleteFeed</sender>
511 <signal>activated()</signal>
512 <receiver>MainWindow</receiver>
513 <slot>deleteFeed()</slot>
514 <hints>
515 <hint type="sourcelabel">
516 <x>-1</x>
517 <y>-1</y>
518 </hint>
519 <hint type="destinationlabel">
520 <x>495</x>
521 <y>374</y>
522 </hint>
523 </hints>
524 </connection>
525 <connection>
526 <sender>feedEntryTable</sender>
527 <signal>doubleClicked(QModelIndex)</signal>
528 <receiver>MainWindow</receiver>
529 <slot>feedEntryDoubleClicked()</slot>
530 <hints>
531 <hint type="sourcelabel">
532 <x>616</x>
533 <y>117</y>
534 </hint>
535 <hint type="destinationlabel">
536 <x>495</x>
537 <y>374</y>
538 </hint>
539 </hints>
540 </connection>
541 <connection>
542 <sender>actionMarkSelectedEntriesRead</sender>
543 <signal>activated()</signal>
544 <receiver>MainWindow</receiver>
545 <slot>markSelectedEntriesRead()</slot>
546 <hints>
547 <hint type="sourcelabel">
548 <x>-1</x>
549 <y>-1</y>
550 </hint>
551 <hint type="destinationlabel">
552 <x>495</x>
553 <y>374</y>
554 </hint>
555 </hints>
556 </connection>
557 <connection>
558 <sender>actionCopyArticleURL</sender>
559 <signal>activated()</signal>
560 <receiver>MainWindow</receiver>
561 <slot>copyArticleURLToClipboard()</slot>
562 <hints>
563 <hint type="sourcelabel">
564 <x>-1</x>
565 <y>-1</y>
566 </hint>
567 <hint type="destinationlabel">
568 <x>495</x>
569 <y>374</y>
570 </hint>
571 </hints>
572 </connection>
573 <connection>
574 <sender>actionZoomIn</sender>
575 <signal>activated()</signal>
576 <receiver>MainWindow</receiver>
577 <slot>zoomIn()</slot>
578 <hints>
579 <hint type="sourcelabel">
580 <x>-1</x>
581 <y>-1</y>
582 </hint>
583 <hint type="destinationlabel">
584 <x>495</x>
585 <y>374</y>
586 </hint>
587 </hints>
588 </connection>
589 <connection>
590 <sender>actionZoomOut</sender>
591 <signal>activated()</signal>
592 <receiver>MainWindow</receiver>
593 <slot>zoomOut()</slot>
594 <hints>
595 <hint type="sourcelabel">
596 <x>-1</x>
597 <y>-1</y>
598 </hint>
599 <hint type="destinationlabel">
600 <x>495</x>
601 <y>374</y>
602 </hint>
603 </hints>
604 </connection>
605 </connections>
606 <slots>
607 <slot>addFeed()</slot>
608 <slot>feedSelected(QModelIndex)</slot>
609 <slot>feedEntrySelected(QModelIndex)</slot>
610 <slot>toggleReadOnSelectedEntry()</slot>
611 <slot>openSelectedEntryInBrowser()</slot>
612 <slot>openLinkFromSelectedEntry()</slot>
613 <slot>showPreferences()</slot>
614 <slot>showFeedSettings()</slot>
615 <slot>markSelectedFeedRead()</slot>
616 <slot>deleteFeed()</slot>
617 <slot>feedEntryDoubleClicked()</slot>
618 <slot>markSelectedEntriesRead()</slot>
619 <slot>copyArticleURLToClipboard()</slot>
620 <slot>zoomIn()</slot>
621 <slot>zoomOut()</slot>
622 </slots>
623 </ui>