Mercurial > hg > Feedworm
annotate Ui_MainWindow.ui @ 112:e4038dd8cc0e
add a comment about a Feedparser bug wrt python3
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Thu, 31 Mar 2011 03:50:46 +0200 |
parents | 2ab09e7a3691 |
children | 04f8cf1558c1 |
rev | line source |
---|---|
14 | 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> | |
20 | 9 <width>992</width> |
10 <height>750</height> | |
14 | 11 </rect> |
12 </property> | |
13 <property name="windowTitle"> | |
14 <string>Feedworm</string> | |
15 </property> | |
26 | 16 <property name="windowIcon"> |
41
9fa1e33b67da
use Qt resources for window icons
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
40
diff
changeset
|
17 <iconset resource="Feedworm.qrc"> |
9fa1e33b67da
use Qt resources for window icons
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
40
diff
changeset
|
18 <normaloff>:/newPrefix/worm.png</normaloff>:/newPrefix/worm.png</iconset> |
26 | 19 </property> |
15
b1aeb98824c1
Add a list view displaying all feeds
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
14
diff
changeset
|
20 <widget class="QWidget" name="centralwidget"> |
22
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
21 <layout class="QGridLayout" name="gridLayout"> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
22 <item row="0" column="0"> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
23 <widget class="QSplitter" name="splitter_2"> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
24 <property name="orientation"> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
25 <enum>Qt::Horizontal</enum> |
20 | 26 </property> |
22
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
27 <widget class="QListView" name="feedList"> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
28 <property name="alternatingRowColors"> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
29 <bool>true</bool> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
30 </property> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
31 <property name="resizeMode"> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
32 <enum>QListView::Fixed</enum> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
33 </property> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
34 </widget> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
35 <widget class="QSplitter" name="splitter"> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
36 <property name="orientation"> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
37 <enum>Qt::Vertical</enum> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
38 </property> |
92
7c6e500c1579
alternating row colors in feed entry list
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
91
diff
changeset
|
39 <widget class="QTableView" name="feedEntryList"> |
7c6e500c1579
alternating row colors in feed entry list
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
91
diff
changeset
|
40 <property name="alternatingRowColors"> |
7c6e500c1579
alternating row colors in feed entry list
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
91
diff
changeset
|
41 <bool>true</bool> |
7c6e500c1579
alternating row colors in feed entry list
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
91
diff
changeset
|
42 </property> |
96
397688da3d28
when selecting a feed entry, mark the entire row as selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
95
diff
changeset
|
43 <property name="selectionBehavior"> |
397688da3d28
when selecting a feed entry, mark the entire row as selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
95
diff
changeset
|
44 <enum>QAbstractItemView::SelectRows</enum> |
397688da3d28
when selecting a feed entry, mark the entire row as selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
95
diff
changeset
|
45 </property> |
98
3be484078991
do not display grid for the feed entry table view so it looks the same as the feed list
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
96
diff
changeset
|
46 <property name="showGrid"> |
3be484078991
do not display grid for the feed entry table view so it looks the same as the feed list
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
96
diff
changeset
|
47 <bool>false</bool> |
3be484078991
do not display grid for the feed entry table view so it looks the same as the feed list
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
96
diff
changeset
|
48 </property> |
95
9bceb1bd3f33
do not display a vertical header in the feed entries table
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
92
diff
changeset
|
49 <attribute name="verticalHeaderVisible"> |
9bceb1bd3f33
do not display a vertical header in the feed entries table
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
92
diff
changeset
|
50 <bool>false</bool> |
9bceb1bd3f33
do not display a vertical header in the feed entries table
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
92
diff
changeset
|
51 </attribute> |
9bceb1bd3f33
do not display a vertical header in the feed entries table
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
92
diff
changeset
|
52 <attribute name="verticalHeaderVisible"> |
9bceb1bd3f33
do not display a vertical header in the feed entries table
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
92
diff
changeset
|
53 <bool>false</bool> |
9bceb1bd3f33
do not display a vertical header in the feed entries table
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
92
diff
changeset
|
54 </attribute> |
92
7c6e500c1579
alternating row colors in feed entry list
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
91
diff
changeset
|
55 </widget> |
22
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
56 <widget class="QWebView" name="webView"> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
57 <property name="url"> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
58 <url> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
59 <string>about:blank</string> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
60 </url> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
61 </property> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
62 </widget> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
63 </widget> |
20 | 64 </widget> |
22
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
65 </item> |
cb9d8da0f307
Put the widgets into a layout to have proper resize behaviour
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
20
diff
changeset
|
66 </layout> |
15
b1aeb98824c1
Add a list view displaying all feeds
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
14
diff
changeset
|
67 </widget> |
14 | 68 <widget class="QMenuBar" name="menubar"> |
69 <property name="geometry"> | |
70 <rect> | |
71 <x>0</x> | |
72 <y>0</y> | |
20 | 73 <width>992</width> |
14 | 74 <height>27</height> |
75 </rect> | |
76 </property> | |
77 <widget class="QMenu" name="menuFeed"> | |
78 <property name="title"> | |
79 <string>Feed</string> | |
80 </property> | |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
81 <addaction name="actionAddFeed"/> |
106 | 82 <addaction name="actionMarkFeedRead"/> |
105
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
83 <addaction name="actionMarkSelectedEntriesRead"/> |
56
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
84 <addaction name="actionUpdate"/> |
103
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
85 <addaction name="actionDeleteFeed"/> |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
86 <addaction name="actionFeedSettings"/> |
14 | 87 </widget> |
33
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
88 <widget class="QMenu" name="menuArticle"> |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
89 <property name="enabled"> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
90 <bool>false</bool> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
91 </property> |
33
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
92 <property name="title"> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
93 <string>Article</string> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
94 </property> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
95 <addaction name="actionMarkSelectedRead"/> |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
96 <addaction name="actionOpenLink"/> |
37
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
97 <addaction name="actionOpenInBrowser"/> |
33
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
98 </widget> |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
99 <widget class="QMenu" name="menuFeedworm"> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
100 <property name="title"> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
101 <string>Feedworm</string> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
102 </property> |
56
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
103 <addaction name="actionUpdateAllFeeds"/> |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
104 <addaction name="actionPreferences"/> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
105 <addaction name="separator"/> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
106 <addaction name="actionQuit"/> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
107 </widget> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
108 <addaction name="menuFeedworm"/> |
14 | 109 <addaction name="menuFeed"/> |
33
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
110 <addaction name="menuArticle"/> |
14 | 111 </widget> |
112 <widget class="QStatusBar" name="statusbar"/> | |
113 <action name="actionQuit"> | |
114 <property name="text"> | |
115 <string>Quit</string> | |
116 </property> | |
117 <property name="shortcut"> | |
118 <string>Ctrl+Q</string> | |
119 </property> | |
120 </action> | |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
121 <action name="actionAddFeed"> |
15
b1aeb98824c1
Add a list view displaying all feeds
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
14
diff
changeset
|
122 <property name="text"> |
b1aeb98824c1
Add a list view displaying all feeds
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
14
diff
changeset
|
123 <string>Add ...</string> |
b1aeb98824c1
Add a list view displaying all feeds
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
14
diff
changeset
|
124 </property> |
26 | 125 <property name="shortcut"> |
126 <string>Ctrl+A</string> | |
127 </property> | |
15
b1aeb98824c1
Add a list view displaying all feeds
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
14
diff
changeset
|
128 </action> |
23
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
129 <action name="actionXxx"> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
130 <property name="text"> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
131 <string>xxx</string> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
132 </property> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
133 </action> |
33
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
134 <action name="actionMarkSelectedRead"> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
135 <property name="text"> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
136 <string>Mark selected read</string> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
137 </property> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
138 <property name="shortcut"> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
139 <string>M</string> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
140 </property> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
141 </action> |
37
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
142 <action name="actionOpenInBrowser"> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
143 <property name="text"> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
144 <string>Open in browser</string> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
145 </property> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
146 <property name="shortcut"> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
147 <string>Ctrl+O</string> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
148 </property> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
149 </action> |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
150 <action name="actionOpenLink"> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
151 <property name="text"> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
152 <string>Open link</string> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
153 </property> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
154 <property name="shortcut"> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
155 <string>L</string> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
156 </property> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
157 </action> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
158 <action name="actionPreferences"> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
159 <property name="enabled"> |
40 | 160 <bool>true</bool> |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
161 </property> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
162 <property name="text"> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
163 <string>Preferences</string> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
164 </property> |
40 | 165 <property name="shortcut"> |
166 <string>Ctrl+.</string> | |
167 </property> | |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
168 </action> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
169 <action name="actionFeedSettings"> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
170 <property name="enabled"> |
53
8cca4585eb33
the feed settings menu item starts out disabled and gets enabled once a feed is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
48
diff
changeset
|
171 <bool>false</bool> |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
172 </property> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
173 <property name="text"> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
174 <string>Settings ...</string> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
175 </property> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
176 </action> |
56
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
177 <action name="actionMarkFeedRead"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
178 <property name="enabled"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
179 <bool>false</bool> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
180 </property> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
181 <property name="text"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
182 <string>Mark all read</string> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
183 </property> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
184 <property name="toolTip"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
185 <string>Mark all articles in current feed as read</string> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
186 </property> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
187 <property name="shortcut"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
188 <string>Ctrl+M</string> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
189 </property> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
190 </action> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
191 <action name="actionUpdate"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
192 <property name="enabled"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
193 <bool>false</bool> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
194 </property> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
195 <property name="text"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
196 <string>Update</string> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
197 </property> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
198 <property name="toolTip"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
199 <string>Update selected feed</string> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
200 </property> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
201 <property name="shortcut"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
202 <string>Ctrl+U</string> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
203 </property> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
204 </action> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
205 <action name="actionUpdateAllFeeds"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
206 <property name="enabled"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
207 <bool>false</bool> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
208 </property> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
209 <property name="text"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
210 <string>Update feeds</string> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
211 </property> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
212 <property name="shortcut"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
213 <string>Ctrl+Shift+U</string> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
214 </property> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
215 </action> |
103
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
216 <action name="actionDeleteFeed"> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
217 <property name="enabled"> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
218 <bool>false</bool> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
219 </property> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
220 <property name="text"> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
221 <string>Delete</string> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
222 </property> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
223 </action> |
105
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
224 <action name="actionMarkSelectedEntriesRead"> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
225 <property name="enabled"> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
226 <bool>true</bool> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
227 </property> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
228 <property name="text"> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
229 <string>Mark selected read</string> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
230 </property> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
231 </action> |
14 | 232 </widget> |
20 | 233 <customwidgets> |
234 <customwidget> | |
235 <class>QWebView</class> | |
236 <extends>QWidget</extends> | |
237 <header>QtWebKit/QWebView</header> | |
238 </customwidget> | |
239 </customwidgets> | |
41
9fa1e33b67da
use Qt resources for window icons
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
40
diff
changeset
|
240 <resources> |
9fa1e33b67da
use Qt resources for window icons
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
40
diff
changeset
|
241 <include location="Feedworm.qrc"/> |
9fa1e33b67da
use Qt resources for window icons
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
40
diff
changeset
|
242 </resources> |
14 | 243 <connections> |
244 <connection> | |
245 <sender>actionQuit</sender> | |
246 <signal>activated()</signal> | |
247 <receiver>MainWindow</receiver> | |
248 <slot>close()</slot> | |
249 <hints> | |
250 <hint type="sourcelabel"> | |
251 <x>-1</x> | |
252 <y>-1</y> | |
253 </hint> | |
254 <hint type="destinationlabel"> | |
255 <x>399</x> | |
256 <y>299</y> | |
257 </hint> | |
258 </hints> | |
259 </connection> | |
23
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
260 <connection> |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
261 <sender>actionAddFeed</sender> |
23
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
262 <signal>activated()</signal> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
263 <receiver>MainWindow</receiver> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
264 <slot>addFeed()</slot> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
265 <hints> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
266 <hint type="sourcelabel"> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
267 <x>-1</x> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
268 <y>-1</y> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
269 </hint> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
270 <hint type="destinationlabel"> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
271 <x>495</x> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
272 <y>374</y> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
273 </hint> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
274 </hints> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
275 </connection> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
276 <connection> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
277 <sender>feedList</sender> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
278 <signal>clicked(QModelIndex)</signal> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
279 <receiver>MainWindow</receiver> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
280 <slot>feedSelected(QModelIndex)</slot> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
281 <hints> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
282 <hint type="sourcelabel"> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
283 <x>126</x> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
284 <y>377</y> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
285 </hint> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
286 <hint type="destinationlabel"> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
287 <x>495</x> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
288 <y>374</y> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
289 </hint> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
290 </hints> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
291 </connection> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
292 <connection> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
293 <sender>feedEntryList</sender> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
294 <signal>clicked(QModelIndex)</signal> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
295 <receiver>MainWindow</receiver> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
296 <slot>feedEntrySelected(QModelIndex)</slot> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
297 <hints> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
298 <hint type="sourcelabel"> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
299 <x>616</x> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
300 <y>117</y> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
301 </hint> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
302 <hint type="destinationlabel"> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
303 <x>495</x> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
304 <y>374</y> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
305 </hint> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
306 </hints> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
307 </connection> |
33
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
308 <connection> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
309 <sender>actionMarkSelectedRead</sender> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
310 <signal>activated()</signal> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
311 <receiver>MainWindow</receiver> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
312 <slot>toggleReadOnSelectedEntry()</slot> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
313 <hints> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
314 <hint type="sourcelabel"> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
315 <x>-1</x> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
316 <y>-1</y> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
317 </hint> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
318 <hint type="destinationlabel"> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
319 <x>495</x> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
320 <y>374</y> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
321 </hint> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
322 </hints> |
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
323 </connection> |
37
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
324 <connection> |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
325 <sender>actionOpenLink</sender> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
326 <signal>activated()</signal> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
327 <receiver>MainWindow</receiver> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
328 <slot>openLinkFromSelectedEntry()</slot> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
329 <hints> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
330 <hint type="sourcelabel"> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
331 <x>-1</x> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
332 <y>-1</y> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
333 </hint> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
334 <hint type="destinationlabel"> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
335 <x>495</x> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
336 <y>374</y> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
337 </hint> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
338 </hints> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
339 </connection> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
340 <connection> |
37
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
341 <sender>actionOpenInBrowser</sender> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
342 <signal>activated()</signal> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
343 <receiver>MainWindow</receiver> |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
344 <slot>openSelectedEntryInBrowser()</slot> |
37
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
345 <hints> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
346 <hint type="sourcelabel"> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
347 <x>-1</x> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
348 <y>-1</y> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
349 </hint> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
350 <hint type="destinationlabel"> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
351 <x>495</x> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
352 <y>374</y> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
353 </hint> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
354 </hints> |
22214d79ed41
database URL must be given as commandline argument now, no need for creating complicated config files. Add a menu entry for opening the selected article in browser.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
33
diff
changeset
|
355 </connection> |
40 | 356 <connection> |
357 <sender>actionPreferences</sender> | |
358 <signal>activated()</signal> | |
359 <receiver>MainWindow</receiver> | |
360 <slot>showPreferences()</slot> | |
361 <hints> | |
362 <hint type="sourcelabel"> | |
363 <x>-1</x> | |
364 <y>-1</y> | |
365 </hint> | |
366 <hint type="destinationlabel"> | |
367 <x>495</x> | |
368 <y>374</y> | |
369 </hint> | |
370 </hints> | |
371 </connection> | |
48 | 372 <connection> |
373 <sender>actionFeedSettings</sender> | |
374 <signal>activated()</signal> | |
375 <receiver>MainWindow</receiver> | |
376 <slot>showFeedSettings()</slot> | |
377 <hints> | |
378 <hint type="sourcelabel"> | |
379 <x>-1</x> | |
380 <y>-1</y> | |
381 </hint> | |
382 <hint type="destinationlabel"> | |
383 <x>495</x> | |
384 <y>374</y> | |
385 </hint> | |
386 </hints> | |
387 </connection> | |
56
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
388 <connection> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
389 <sender>actionMarkFeedRead</sender> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
390 <signal>activated()</signal> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
391 <receiver>MainWindow</receiver> |
59
daa2731967fe
Marking all articles in a feed as read doesn't toggle any more ... it marks all articles as read.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
56
diff
changeset
|
392 <slot>markSelectedFeedRead()</slot> |
56
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
393 <hints> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
394 <hint type="sourcelabel"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
395 <x>-1</x> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
396 <y>-1</y> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
397 </hint> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
398 <hint type="destinationlabel"> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
399 <x>495</x> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
400 <y>374</y> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
401 </hint> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
402 </hints> |
c82f5538733c
add a menu item to mark all entries in a feed as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
53
diff
changeset
|
403 </connection> |
103
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
404 <connection> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
405 <sender>actionDeleteFeed</sender> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
406 <signal>activated()</signal> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
407 <receiver>MainWindow</receiver> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
408 <slot>deleteFeed()</slot> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
409 <hints> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
410 <hint type="sourcelabel"> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
411 <x>-1</x> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
412 <y>-1</y> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
413 </hint> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
414 <hint type="destinationlabel"> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
415 <x>495</x> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
416 <y>374</y> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
417 </hint> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
418 </hints> |
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
419 </connection> |
104
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
420 <connection> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
421 <sender>feedEntryList</sender> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
422 <signal>doubleClicked(QModelIndex)</signal> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
423 <receiver>MainWindow</receiver> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
424 <slot>feedEntryDoubleClicked()</slot> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
425 <hints> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
426 <hint type="sourcelabel"> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
427 <x>616</x> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
428 <y>117</y> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
429 </hint> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
430 <hint type="destinationlabel"> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
431 <x>495</x> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
432 <y>374</y> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
433 </hint> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
434 </hints> |
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
435 </connection> |
105
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
436 <connection> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
437 <sender>actionMarkSelectedEntriesRead</sender> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
438 <signal>activated()</signal> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
439 <receiver>MainWindow</receiver> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
440 <slot>markSelectedEntriesRead()</slot> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
441 <hints> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
442 <hint type="sourcelabel"> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
443 <x>-1</x> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
444 <y>-1</y> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
445 </hint> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
446 <hint type="destinationlabel"> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
447 <x>495</x> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
448 <y>374</y> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
449 </hint> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
450 </hints> |
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
451 </connection> |
14 | 452 </connections> |
23
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
453 <slots> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
454 <slot>addFeed()</slot> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
455 <slot>feedSelected(QModelIndex)</slot> |
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
456 <slot>feedEntrySelected(QModelIndex)</slot> |
33
f371d02fa09d
mark unread feed entries bold. Add a menu item to toggle between read/unread
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
26
diff
changeset
|
457 <slot>toggleReadOnSelectedEntry()</slot> |
39
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
458 <slot>openSelectedEntryInBrowser()</slot> |
0c2578196643
Disable the article menu by default, enable it when the first article is selected
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
37
diff
changeset
|
459 <slot>openLinkFromSelectedEntry()</slot> |
40 | 460 <slot>showPreferences()</slot> |
48 | 461 <slot>showFeedSettings()</slot> |
59
daa2731967fe
Marking all articles in a feed as read doesn't toggle any more ... it marks all articles as read.
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
56
diff
changeset
|
462 <slot>markSelectedFeedRead()</slot> |
103
063581d8594e
implement deleting a feed from the GUI
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
98
diff
changeset
|
463 <slot>deleteFeed()</slot> |
104
4f87be5399ff
double clicking a feed entry opens it in the external browser
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
103
diff
changeset
|
464 <slot>feedEntryDoubleClicked()</slot> |
105
d372b3ee7bd8
add marking the entire current selection as read
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
104
diff
changeset
|
465 <slot>markSelectedEntriesRead()</slot> |
23
dcc8abff0694
All the wiring of slots is done through QtDesigner now, look how much code has just disappeared :-)
Dirk Olmes <dirk@xanthippe.ping.de>
parents:
22
diff
changeset
|
466 </slots> |
14 | 467 </ui> |