author | drw <drw> | 2005-04-05 22:45:37 (UTC) |
---|---|---|
committer | drw <drw> | 2005-04-05 22:45:37 (UTC) |
commit | 2a9ee3ea1d8d978b735f0ce3f2e54a15e37c87b3 (patch) (unidiff) | |
tree | 9d53a71c9a250f0c54f098093013cf3964e3858d /libopie2 | |
parent | 0f7b159f0a4972b6ffdc292f5eb4d2169c7fa75d (diff) | |
download | opie-2a9ee3ea1d8d978b735f0ce3f2e54a15e37c87b3.zip opie-2a9ee3ea1d8d978b735f0ce3f2e54a15e37c87b3.tar.gz opie-2a9ee3ea1d8d978b735f0ce3f2e54a15e37c87b3.tar.bz2 |
Use OResource for loading images
-rw-r--r-- | libopie2/opiepim/ui/opimmainwindow.cpp | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/libopie2/opiepim/ui/opimmainwindow.cpp b/libopie2/opiepim/ui/opimmainwindow.cpp index a6d574b..efb45ca 100644 --- a/libopie2/opiepim/ui/opimmainwindow.cpp +++ b/libopie2/opiepim/ui/opimmainwindow.cpp | |||
@@ -1,136 +1,136 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of the Opie Project | 2 | This file is part of the Opie Project |
3 | Copyright (C) Stefan Eilers (Eilers.Stefan@epost.de) | 3 | Copyright (C) Stefan Eilers (Eilers.Stefan@epost.de) |
4 | =. Copyright (C) The Opie Team <opie-devel@handhelds.org> | 4 | =. Copyright (C) The Opie Team <opie-devel@handhelds.org> |
5 | .=l. | 5 | .=l. |
6 | .>+-= | 6 | .>+-= |
7 | _;:, .> :=|. This program is free software; you can | 7 | _;:, .> :=|. This program is free software; you can |
8 | .> <`_, > . <= redistribute it and/or modify it under | 8 | .> <`_, > . <= redistribute it and/or modify it under |
9 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public | 9 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public |
10 | .="- .-=="i, .._ License as published by the Free Software | 10 | .="- .-=="i, .._ License as published by the Free Software |
11 | - . .-<_> .<> Foundation; either version 2 of the License, | 11 | - . .-<_> .<> Foundation; either version 2 of the License, |
12 | ._= =} : or (at your option) any later version. | 12 | ._= =} : or (at your option) any later version. |
13 | .%`+i> _;_. | 13 | .%`+i> _;_. |
14 | .i_,=:_. -<s. This program is distributed in the hope that | 14 | .i_,=:_. -<s. This program is distributed in the hope that |
15 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 15 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
16 | : .. .:, . . . without even the implied warranty of | 16 | : .. .:, . . . without even the implied warranty of |
17 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 17 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
18 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | 18 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU |
19 | ..}^=.= = ; Library General Public License for more | 19 | ..}^=.= = ; Library General Public License for more |
20 | ++= -. .` .: details. | 20 | ++= -. .` .: details. |
21 | : = ...= . :.=- | 21 | : = ...= . :.=- |
22 | -. .:....=;==+<; You should have received a copy of the GNU | 22 | -. .:....=;==+<; You should have received a copy of the GNU |
23 | -_. . . )=. = Library General Public License along with | 23 | -_. . . )=. = Library General Public License along with |
24 | -- :-=` this library; see the file COPYING.LIB. | 24 | -- :-=` this library; see the file COPYING.LIB. |
25 | If not, write to the Free Software Foundation, | 25 | If not, write to the Free Software Foundation, |
26 | Inc., 59 Temple Place - Suite 330, | 26 | Inc., 59 Temple Place - Suite 330, |
27 | Boston, MA 02111-1307, USA. | 27 | Boston, MA 02111-1307, USA. |
28 | */ | 28 | */ |
29 | 29 | ||
30 | #include "opimmainwindow.h" | 30 | #include "opimmainwindow.h" |
31 | 31 | ||
32 | /* OPIE */ | 32 | /* OPIE */ |
33 | #include <opie2/opimresolver.h> | ||
34 | #include <opie2/odebug.h> | 33 | #include <opie2/odebug.h> |
34 | #include <opie2/opimresolver.h> | ||
35 | #include <opie2/oresource.h> | ||
35 | 36 | ||
36 | #include <qpe/categoryselect.h> | 37 | #include <qpe/categoryselect.h> |
37 | #include <qpe/ir.h> | 38 | #include <qpe/ir.h> |
38 | #include <qpe/qcopenvelope_qws.h> | 39 | #include <qpe/qcopenvelope_qws.h> |
39 | #include <qpe/qpeapplication.h> | 40 | #include <qpe/qpeapplication.h> |
40 | #include <qpe/resource.h> | ||
41 | #include <qpe/sound.h> | 41 | #include <qpe/sound.h> |
42 | 42 | ||
43 | /* QT */ | 43 | /* QT */ |
44 | #include <qaction.h> | 44 | #include <qaction.h> |
45 | #include <qapplication.h> | 45 | #include <qapplication.h> |
46 | #include <qcombobox.h> | 46 | #include <qcombobox.h> |
47 | #include <qcopchannel_qws.h> | 47 | #include <qcopchannel_qws.h> |
48 | #include <qdatetime.h> | 48 | #include <qdatetime.h> |
49 | #include <qmenubar.h> | 49 | #include <qmenubar.h> |
50 | #include <qobjectlist.h> | 50 | #include <qobjectlist.h> |
51 | #include <qpopupmenu.h> | 51 | #include <qpopupmenu.h> |
52 | #include <qtoolbar.h> | 52 | #include <qtoolbar.h> |
53 | #include <qwhatsthis.h> | 53 | #include <qwhatsthis.h> |
54 | 54 | ||
55 | namespace Opie { | 55 | namespace Opie { |
56 | OPimMainWindow::OPimMainWindow( const QString &serviceName, const QString &catName, | 56 | OPimMainWindow::OPimMainWindow( const QString &serviceName, const QString &catName, |
57 | const QString &itemName, const QString &configName, | 57 | const QString &itemName, const QString &configName, |
58 | QWidget *parent, const char* name, WFlags f ) | 58 | QWidget *parent, const char* name, WFlags f ) |
59 | : QMainWindow( parent, name, f ), m_rtti(-1), m_service( serviceName ), m_fallBack( 0l ), | 59 | : QMainWindow( parent, name, f ), m_rtti(-1), m_service( serviceName ), m_fallBack( 0l ), |
60 | m_catGroupName( catName ), m_config( configName ), m_itemContextMenu( 0l ) | 60 | m_catGroupName( catName ), m_config( configName ), m_itemContextMenu( 0l ) |
61 | { | 61 | { |
62 | 62 | ||
63 | /* | 63 | /* |
64 | * let's generate our QCopChannel | 64 | * let's generate our QCopChannel |
65 | */ | 65 | */ |
66 | m_str = QString("QPE/"+m_service).local8Bit(); | 66 | m_str = QString("QPE/"+m_service).local8Bit(); |
67 | m_channel= new QCopChannel(m_str, this ); | 67 | m_channel= new QCopChannel(m_str, this ); |
68 | connect(m_channel, SIGNAL(received(const QCString&,const QByteArray&)), | 68 | connect(m_channel, SIGNAL(received(const QCString&,const QByteArray&)), |
69 | this, SLOT(appMessage(const QCString&,const QByteArray&)) ); | 69 | this, SLOT(appMessage(const QCString&,const QByteArray&)) ); |
70 | connect(qApp, SIGNAL(appMessage(const QCString&,const QByteArray&)), | 70 | connect(qApp, SIGNAL(appMessage(const QCString&,const QByteArray&)), |
71 | this, SLOT(appMessage(const QCString&,const QByteArray&)) ); | 71 | this, SLOT(appMessage(const QCString&,const QByteArray&)) ); |
72 | 72 | ||
73 | /* connect flush and reload */ | 73 | /* connect flush and reload */ |
74 | connect(qApp, SIGNAL(flush() ), | 74 | connect(qApp, SIGNAL(flush() ), |
75 | this, SLOT(flush() ) ); | 75 | this, SLOT(flush() ) ); |
76 | connect(qApp, SIGNAL(reload() ), | 76 | connect(qApp, SIGNAL(reload() ), |
77 | this, SLOT(reload() ) ); | 77 | this, SLOT(reload() ) ); |
78 | 78 | ||
79 | initBars( itemName ); | 79 | initBars( itemName ); |
80 | } | 80 | } |
81 | 81 | ||
82 | OPimMainWindow::~OPimMainWindow() { | 82 | OPimMainWindow::~OPimMainWindow() { |
83 | delete m_channel; | 83 | delete m_channel; |
84 | } | 84 | } |
85 | 85 | ||
86 | QCopChannel* OPimMainWindow::channel() { | 86 | QCopChannel* OPimMainWindow::channel() { |
87 | return m_channel; | 87 | return m_channel; |
88 | } | 88 | } |
89 | 89 | ||
90 | void OPimMainWindow::doSetDocument( const QString& ) { | 90 | void OPimMainWindow::doSetDocument( const QString& ) { |
91 | 91 | ||
92 | } | 92 | } |
93 | 93 | ||
94 | void OPimMainWindow::appMessage( const QCString& cmd, const QByteArray& array ) { | 94 | void OPimMainWindow::appMessage( const QCString& cmd, const QByteArray& array ) { |
95 | bool needShow = false; | 95 | bool needShow = false; |
96 | /* | 96 | /* |
97 | * create demands to create | 97 | * create demands to create |
98 | * a new record... | 98 | * a new record... |
99 | */ | 99 | */ |
100 | QDataStream stream(array, IO_ReadOnly); | 100 | QDataStream stream(array, IO_ReadOnly); |
101 | if ( cmd == "create()" ) { | 101 | if ( cmd == "create()" ) { |
102 | raise(); | 102 | raise(); |
103 | int uid = create(); | 103 | int uid = create(); |
104 | QCopEnvelope e(m_str, "created(int)" ); | 104 | QCopEnvelope e(m_str, "created(int)" ); |
105 | e << uid; | 105 | e << uid; |
106 | needShow = true; | 106 | needShow = true; |
107 | }else if ( cmd == "remove(int)" ) { | 107 | }else if ( cmd == "remove(int)" ) { |
108 | int uid; | 108 | int uid; |
109 | stream >> uid; | 109 | stream >> uid; |
110 | bool rem = remove( uid ); | 110 | bool rem = remove( uid ); |
111 | QCopEnvelope e(m_str, "removed(bool)" ); | 111 | QCopEnvelope e(m_str, "removed(bool)" ); |
112 | e << rem; | 112 | e << rem; |
113 | needShow = true; | 113 | needShow = true; |
114 | }else if ( cmd == "beam(int)" ) { | 114 | }else if ( cmd == "beam(int)" ) { |
115 | int uid; | 115 | int uid; |
116 | stream >> uid; | 116 | stream >> uid; |
117 | beam( uid); | 117 | beam( uid); |
118 | }else if ( cmd == "show(int)" ) { | 118 | }else if ( cmd == "show(int)" ) { |
119 | raise(); | 119 | raise(); |
120 | int uid; | 120 | int uid; |
121 | stream >> uid; | 121 | stream >> uid; |
122 | show( uid ); | 122 | show( uid ); |
123 | needShow = true; | 123 | needShow = true; |
124 | }else if ( cmd == "edit(int)" ) { | 124 | }else if ( cmd == "edit(int)" ) { |
125 | raise(); | 125 | raise(); |
126 | int uid; | 126 | int uid; |
127 | stream >> uid; | 127 | stream >> uid; |
128 | edit( uid ); | 128 | edit( uid ); |
129 | }else if ( cmd == "add(int,QByteArray)" ) { | 129 | }else if ( cmd == "add(int,QByteArray)" ) { |
130 | int rtti; | 130 | int rtti; |
131 | QByteArray array; | 131 | QByteArray array; |
132 | stream >> rtti; | 132 | stream >> rtti; |
133 | stream >> array; | 133 | stream >> array; |
134 | m_fallBack = record(rtti, array ); | 134 | m_fallBack = record(rtti, array ); |
135 | if (!m_fallBack) return; | 135 | if (!m_fallBack) return; |
136 | add( *m_fallBack ); | 136 | add( *m_fallBack ); |
@@ -234,162 +234,168 @@ void OPimMainWindow::insertItemMenuItems( QActionGroup *items ) { | |||
234 | } | 234 | } |
235 | } | 235 | } |
236 | 236 | ||
237 | void OPimMainWindow::insertViewMenuItems( QActionGroup *items ) { | 237 | void OPimMainWindow::insertViewMenuItems( QActionGroup *items ) { |
238 | // Insert menu items into View menu | 238 | // Insert menu items into View menu |
239 | if ( items ) { | 239 | if ( items ) { |
240 | // Rebuild Item menu | 240 | // Rebuild Item menu |
241 | m_viewMenu->clear(); | 241 | m_viewMenu->clear(); |
242 | // m_viewMenuGroup->addTo( m_viewMenu ); | 242 | // m_viewMenuGroup->addTo( m_viewMenu ); |
243 | // m_viewMenu->insertSeparator(); | 243 | // m_viewMenu->insertSeparator(); |
244 | m_viewMenuAppGroup = items; | 244 | m_viewMenuAppGroup = items; |
245 | m_viewMenuAppGroup->addTo( m_viewMenu ); | 245 | m_viewMenuAppGroup->addTo( m_viewMenu ); |
246 | } | 246 | } |
247 | } | 247 | } |
248 | 248 | ||
249 | void OPimMainWindow::setViewCategory( const QString &category ) { | 249 | void OPimMainWindow::setViewCategory( const QString &category ) { |
250 | // Find category in list | 250 | // Find category in list |
251 | for ( int i = 0; i < m_catSelect->count(); i++ ) { | 251 | for ( int i = 0; i < m_catSelect->count(); i++ ) { |
252 | if ( m_catSelect->text( i ) == category ) { | 252 | if ( m_catSelect->text( i ) == category ) { |
253 | m_catSelect->setCurrentItem( i ); | 253 | m_catSelect->setCurrentItem( i ); |
254 | emit categorySelected( category ); | 254 | emit categorySelected( category ); |
255 | return; | 255 | return; |
256 | } | 256 | } |
257 | } | 257 | } |
258 | } | 258 | } |
259 | 259 | ||
260 | void OPimMainWindow::reloadCategories() { | 260 | void OPimMainWindow::reloadCategories() { |
261 | QString selected = m_catSelect->currentText(); | 261 | QString selected = m_catSelect->currentText(); |
262 | 262 | ||
263 | // Remove old categories from list | 263 | // Remove old categories from list |
264 | m_catSelect->clear(); | 264 | m_catSelect->clear(); |
265 | 265 | ||
266 | // Add categories to list | 266 | // Add categories to list |
267 | Categories cats; | 267 | Categories cats; |
268 | cats.load( categoryFileName() ); | 268 | cats.load( categoryFileName() ); |
269 | m_catSelect->insertItem( tr( "All" ) ); | 269 | m_catSelect->insertItem( tr( "All" ) ); |
270 | m_catSelect->insertStringList( cats.labels( m_catGroupName ) ); | 270 | m_catSelect->insertStringList( cats.labels( m_catGroupName ) ); |
271 | m_catSelect->insertItem( tr( "Unfiled" ) ); | 271 | m_catSelect->insertItem( tr( "Unfiled" ) ); |
272 | } | 272 | } |
273 | 273 | ||
274 | void OPimMainWindow::setItemNewEnabled( bool enable ) { | 274 | void OPimMainWindow::setItemNewEnabled( bool enable ) { |
275 | m_itemNewAction->setEnabled( enable ); | 275 | m_itemNewAction->setEnabled( enable ); |
276 | } | 276 | } |
277 | 277 | ||
278 | void OPimMainWindow::setItemEditEnabled( bool enable ) { | 278 | void OPimMainWindow::setItemEditEnabled( bool enable ) { |
279 | m_itemEditAction->setEnabled( enable ); | 279 | m_itemEditAction->setEnabled( enable ); |
280 | } | 280 | } |
281 | 281 | ||
282 | void OPimMainWindow::setItemDuplicateEnabled( bool enable ) { | 282 | void OPimMainWindow::setItemDuplicateEnabled( bool enable ) { |
283 | m_itemDuplicateAction->setEnabled( enable ); | 283 | m_itemDuplicateAction->setEnabled( enable ); |
284 | } | 284 | } |
285 | 285 | ||
286 | void OPimMainWindow::setItemDeleteEnabled( bool enable ) { | 286 | void OPimMainWindow::setItemDeleteEnabled( bool enable ) { |
287 | m_itemDeleteAction->setEnabled( enable ); | 287 | m_itemDeleteAction->setEnabled( enable ); |
288 | } | 288 | } |
289 | 289 | ||
290 | void OPimMainWindow::setItemBeamEnabled( bool enable ) { | 290 | void OPimMainWindow::setItemBeamEnabled( bool enable ) { |
291 | m_itemBeamAction->setEnabled( enable ); | 291 | m_itemBeamAction->setEnabled( enable ); |
292 | } | 292 | } |
293 | 293 | ||
294 | void OPimMainWindow::setConfigureEnabled( bool enable ) { | 294 | void OPimMainWindow::setConfigureEnabled( bool enable ) { |
295 | m_configureAction->setEnabled( enable ); | 295 | m_configureAction->setEnabled( enable ); |
296 | } | 296 | } |
297 | 297 | ||
298 | void OPimMainWindow::setShowCategories( bool show ) { | 298 | void OPimMainWindow::setShowCategories( bool show ) { |
299 | show ? m_catSelect->show() | 299 | show ? m_catSelect->show() |
300 | : m_catSelect->hide(); | 300 | : m_catSelect->hide(); |
301 | } | 301 | } |
302 | 302 | ||
303 | void OPimMainWindow::initBars( const QString &itemName ) { | 303 | void OPimMainWindow::initBars( const QString &itemName ) { |
304 | QString itemStr = itemName.lower(); | 304 | QString itemStr = itemName.lower(); |
305 | 305 | ||
306 | setToolBarsMovable( false ); | 306 | setToolBarsMovable( false ); |
307 | 307 | ||
308 | // Create application menu bar | 308 | // Create application menu bar |
309 | QToolBar *mbHold = new QToolBar( this ); | 309 | QToolBar *mbHold = new QToolBar( this ); |
310 | mbHold->setHorizontalStretchable( true ); | 310 | mbHold->setHorizontalStretchable( true ); |
311 | QMenuBar *menubar = new QMenuBar( mbHold ); | 311 | QMenuBar *menubar = new QMenuBar( mbHold ); |
312 | menubar->setMargin( 0 ); | 312 | menubar->setMargin( 0 ); |
313 | 313 | ||
314 | // Create application menu bar | 314 | // Create application menu bar |
315 | QToolBar *toolbar = new QToolBar( this ); | 315 | QToolBar *toolbar = new QToolBar( this ); |
316 | 316 | ||
317 | // Create sub-menus | 317 | // Create sub-menus |
318 | m_itemMenu = new QPopupMenu( this ); | 318 | m_itemMenu = new QPopupMenu( this ); |
319 | m_itemMenu->setCheckable( true ); | 319 | m_itemMenu->setCheckable( true ); |
320 | menubar->insertItem( itemName, m_itemMenu ); | 320 | menubar->insertItem( itemName, m_itemMenu ); |
321 | m_viewMenu = new QPopupMenu( this ); | 321 | m_viewMenu = new QPopupMenu( this ); |
322 | m_viewMenu->setCheckable( true ); | 322 | m_viewMenu->setCheckable( true ); |
323 | menubar->insertItem( tr( "View" ), m_viewMenu ); | 323 | menubar->insertItem( tr( "View" ), m_viewMenu ); |
324 | 324 | ||
325 | m_viewMenuAppGroup = 0l; | 325 | m_viewMenuAppGroup = 0l; |
326 | 326 | ||
327 | // Item menu | 327 | // Item menu |
328 | m_itemMenuGroup1 = new QActionGroup( this, QString::null, false ); | 328 | m_itemMenuGroup1 = new QActionGroup( this, QString::null, false ); |
329 | 329 | ||
330 | m_itemNewAction = new QAction( tr( "New" ), Resource::loadPixmap( "new" ), | 330 | m_itemNewAction = new QAction( tr( "New" ), |
331 | QString::null, 0, m_itemMenuGroup1, 0 ); | 331 | Opie::Core::OResource::loadPixmap( "new", Opie::Core::OResource::SmallIcon ), |
332 | QString::null, 0, m_itemMenuGroup1, 0 ); | ||
332 | connect( m_itemNewAction, SIGNAL(activated()), this, SLOT(slotItemNew()) ); | 333 | connect( m_itemNewAction, SIGNAL(activated()), this, SLOT(slotItemNew()) ); |
333 | m_itemNewAction->setWhatsThis( tr( "Click here to create a new item." ) ); | 334 | m_itemNewAction->setWhatsThis( tr( "Click here to create a new item." ) ); |
334 | m_itemNewAction->addTo( toolbar ); | 335 | m_itemNewAction->addTo( toolbar ); |
335 | 336 | ||
336 | m_itemEditAction = new QAction( tr( "Edit" ), Resource::loadPixmap( "edit" ), | 337 | m_itemEditAction = new QAction( tr( "Edit" ), |
338 | Opie::Core::OResource::loadPixmap( "edit", Opie::Core::OResource::SmallIcon ), | ||
337 | QString::null, 0, m_itemMenuGroup1, 0 ); | 339 | QString::null, 0, m_itemMenuGroup1, 0 ); |
338 | connect( m_itemEditAction, SIGNAL(activated()), this, SLOT(slotItemEdit()) ); | 340 | connect( m_itemEditAction, SIGNAL(activated()), this, SLOT(slotItemEdit()) ); |
339 | m_itemEditAction->setWhatsThis( tr( "Click here to edit the selected item." ) ); | 341 | m_itemEditAction->setWhatsThis( tr( "Click here to edit the selected item." ) ); |
340 | m_itemEditAction->addTo( toolbar ); | 342 | m_itemEditAction->addTo( toolbar ); |
341 | 343 | ||
342 | m_itemDuplicateAction = new QAction( tr( "Duplicate" ), Resource::loadPixmap( "copy" ), | 344 | m_itemDuplicateAction = new QAction( tr( "Duplicate" ), |
345 | Opie::Core::OResource::loadPixmap( "copy", Opie::Core::OResource::SmallIcon ), | ||
343 | QString::null, 0, m_itemMenuGroup1, 0 ); | 346 | QString::null, 0, m_itemMenuGroup1, 0 ); |
344 | connect( m_itemDuplicateAction, SIGNAL(activated()), this, SLOT(slotItemDuplicate()) ); | 347 | connect( m_itemDuplicateAction, SIGNAL(activated()), this, SLOT(slotItemDuplicate()) ); |
345 | m_itemDuplicateAction->setWhatsThis( tr( "Click here to duplicate the selected item." ) ); | 348 | m_itemDuplicateAction->setWhatsThis( tr( "Click here to duplicate the selected item." ) ); |
346 | 349 | ||
347 | if ( Ir::supported() ) { | 350 | if ( Ir::supported() ) { |
348 | m_itemBeamAction = new QAction( tr( "Beam" ), Resource::loadPixmap( "beam" ), | 351 | m_itemBeamAction = new QAction( tr( "Beam" ), |
352 | Opie::Core::OResource::loadPixmap( "beam", Opie::Core::OResource::SmallIcon ), | ||
349 | QString::null, 0, m_itemMenuGroup1, 0 ); | 353 | QString::null, 0, m_itemMenuGroup1, 0 ); |
350 | connect( m_itemBeamAction, SIGNAL(activated()), this, SLOT(slotItemBeam()) ); | 354 | connect( m_itemBeamAction, SIGNAL(activated()), this, SLOT(slotItemBeam()) ); |
351 | m_itemBeamAction->setWhatsThis( tr( "Click here to transmit the selected item." ) ); | 355 | m_itemBeamAction->setWhatsThis( tr( "Click here to transmit the selected item." ) ); |
352 | m_itemBeamAction->addTo( toolbar ); | 356 | m_itemBeamAction->addTo( toolbar ); |
353 | } | 357 | } |
354 | 358 | ||
355 | m_itemDeleteAction = new QAction( tr( "Delete" ), Resource::loadPixmap( "trash" ), | 359 | m_itemDeleteAction = new QAction( tr( "Delete" ), |
360 | Opie::Core::OResource::loadPixmap( "trash", Opie::Core::OResource::SmallIcon ), | ||
356 | QString::null, 0, m_itemMenuGroup1, 0 ); | 361 | QString::null, 0, m_itemMenuGroup1, 0 ); |
357 | connect( m_itemDeleteAction, SIGNAL(activated()), this, SLOT(slotItemDelete()) ); | 362 | connect( m_itemDeleteAction, SIGNAL(activated()), this, SLOT(slotItemDelete()) ); |
358 | m_itemDeleteAction->setWhatsThis( tr( "Click here to delete the selected item." ) ); | 363 | m_itemDeleteAction->setWhatsThis( tr( "Click here to delete the selected item." ) ); |
359 | m_itemDeleteAction->addTo( toolbar ); | 364 | m_itemDeleteAction->addTo( toolbar ); |
360 | 365 | ||
361 | m_itemMenuGroup1->addTo( m_itemMenu ); | 366 | m_itemMenuGroup1->addTo( m_itemMenu ); |
362 | 367 | ||
363 | m_itemMenu->insertSeparator(); | 368 | m_itemMenu->insertSeparator(); |
364 | 369 | ||
365 | m_itemMenuGroup2 = new QActionGroup( this, QString::null, false ); | 370 | m_itemMenuGroup2 = new QActionGroup( this, QString::null, false ); |
366 | 371 | ||
367 | m_configureAction = new QAction( tr( "Configure" ), Resource::loadPixmap( "SettingsIcon" ), | 372 | m_configureAction = new QAction( tr( "Configure" ), |
373 | Opie::Core::OResource::loadPixmap( "SettingsIcon", Opie::Core::OResource::SmallIcon ), | ||
368 | QString::null, 0, m_itemMenuGroup2, 0 ); | 374 | QString::null, 0, m_itemMenuGroup2, 0 ); |
369 | connect( m_configureAction, SIGNAL(activated()), this, SLOT(slotConfigure()) ); | 375 | connect( m_configureAction, SIGNAL(activated()), this, SLOT(slotConfigure()) ); |
370 | m_configureAction->setWhatsThis( tr( "Click here to set your preferences for this application." ) ); | 376 | m_configureAction->setWhatsThis( tr( "Click here to set your preferences for this application." ) ); |
371 | 377 | ||
372 | m_itemMenuGroup2->addTo( m_itemMenu ); | 378 | m_itemMenuGroup2->addTo( m_itemMenu ); |
373 | 379 | ||
374 | // View menu | 380 | // View menu |
375 | // m_viewMenuGroup = new QActionGroup( this, QString::null, false ); | 381 | // m_viewMenuGroup = new QActionGroup( this, QString::null, false ); |
376 | 382 | ||
377 | // QAction *a = new QAction( tr( "Filter" ), QString::null, 0, m_viewMenuGroup, 0 ); | 383 | // QAction *a = new QAction( tr( "Filter" ), QString::null, 0, m_viewMenuGroup, 0 ); |
378 | // connect( a, SIGNAL(activated()), this, SLOT(slotViewFilter()) ); | 384 | // connect( a, SIGNAL(activated()), this, SLOT(slotViewFilter()) ); |
379 | // a->setWhatsThis( tr( "Click here to filter the items displayed." ) ); | 385 | // a->setWhatsThis( tr( "Click here to filter the items displayed." ) ); |
380 | // | 386 | // |
381 | // a = new QAction( tr( "Filter Settings" ), QString::null, 0, m_viewMenuGroup, 0 ); | 387 | // a = new QAction( tr( "Filter Settings" ), QString::null, 0, m_viewMenuGroup, 0 ); |
382 | // connect( a, SIGNAL(activated()), this, SLOT(slotViewFilterSettings()) ); | 388 | // connect( a, SIGNAL(activated()), this, SLOT(slotViewFilterSettings()) ); |
383 | // a->setWhatsThis( tr( "Click here to modify the current filter settings." ) ); | 389 | // a->setWhatsThis( tr( "Click here to modify the current filter settings." ) ); |
384 | 390 | ||
385 | // Create view toolbar | 391 | // Create view toolbar |
386 | toolbar = new QToolBar( this ); | 392 | toolbar = new QToolBar( this ); |
387 | m_catSelect = new QComboBox( toolbar ); | 393 | m_catSelect = new QComboBox( toolbar ); |
388 | connect( m_catSelect, SIGNAL(activated(const QString&)), this, SIGNAL(categorySelected(const QString&)) ); | 394 | connect( m_catSelect, SIGNAL(activated(const QString&)), this, SIGNAL(categorySelected(const QString&)) ); |
389 | QWhatsThis::add( m_catSelect, tr( "Click here to filter items by category." ) ); | 395 | QWhatsThis::add( m_catSelect, tr( "Click here to filter items by category." ) ); |
390 | 396 | ||
391 | // Do initial load of categories | 397 | // Do initial load of categories |
392 | reloadCategories(); | 398 | reloadCategories(); |
393 | } | 399 | } |
394 | 400 | ||
395 | } // namespace Opie | 401 | } // namespace Opie |