author | drw <drw> | 2005-04-24 19:29:20 (UTC) |
---|---|---|
committer | drw <drw> | 2005-04-24 19:29:20 (UTC) |
commit | 9f4dd8e0d2cbe83d23c5405394d5e076dd6c2c6b (patch) (unidiff) | |
tree | ef243e01fd5347d74d06e7d90e9c3fc19d990534 | |
parent | d1ca2bbae79743f9f8a2c5ac1d702cc1c789fd27 (diff) | |
download | opie-9f4dd8e0d2cbe83d23c5405394d5e076dd6c2c6b.zip opie-9f4dd8e0d2cbe83d23c5405394d5e076dd6c2c6b.tar.gz opie-9f4dd8e0d2cbe83d23c5405394d5e076dd6c2c6b.tar.bz2 |
Resource -> OResource
-rw-r--r-- | noncore/apps/dagger/mainwindow.cpp | 31 | ||||
-rw-r--r-- | noncore/apps/dagger/navbar.cpp | 14 | ||||
-rw-r--r-- | noncore/apps/dagger/searchbar.cpp | 9 |
3 files changed, 35 insertions, 19 deletions
diff --git a/noncore/apps/dagger/mainwindow.cpp b/noncore/apps/dagger/mainwindow.cpp index 3dd9eff..1f2d521 100644 --- a/noncore/apps/dagger/mainwindow.cpp +++ b/noncore/apps/dagger/mainwindow.cpp | |||
@@ -25,2 +25,3 @@ file; see the file COPYING. If not, write to the Free Software Foundation, Inc., | |||
25 | #include <opie2/odebug.h> | 25 | #include <opie2/odebug.h> |
26 | #include <opie2/oresource.h> | ||
26 | 27 | ||
@@ -28,3 +29,2 @@ file; see the file COPYING. If not, write to the Free Software Foundation, Inc., | |||
28 | #include <qpe/qpeapplication.h> | 29 | #include <qpe/qpeapplication.h> |
29 | #include <qpe/resource.h> | ||
30 | 30 | ||
@@ -66,5 +66,5 @@ MainWindow::MainWindow( QWidget *parent, const char *name, WFlags /*fl*/ ) | |||
66 | 66 | ||
67 | m_bibleIcon = new QPixmap( Resource::loadPixmap( "dagger/bibletext" ) ); | 67 | m_bibleIcon = new QPixmap( Opie::Core::OResource::loadPixmap( "dagger/bibletext", Opie::Core::OResource::SmallIcon ) ); |
68 | m_commentaryIcon = new QPixmap( Resource::loadPixmap( "dagger/commentary" ) ); | 68 | m_commentaryIcon = new QPixmap( Opie::Core::OResource::loadPixmap( "dagger/commentary", Opie::Core::OResource::SmallIcon ) ); |
69 | m_lexiconIcon = new QPixmap( Resource::loadPixmap( "dagger/lexicon" ) ); | 69 | m_lexiconIcon = new QPixmap( Opie::Core::OResource::loadPixmap( "dagger/lexicon", Opie::Core::OResource::SmallIcon ) ); |
70 | 70 | ||
@@ -189,3 +189,4 @@ void MainWindow::initUI() | |||
189 | 189 | ||
190 | QAction *a = new QAction( tr( "Open..." ), Resource::loadPixmap( "fileopen" ), QString::null, 0, this, 0 ); | 190 | QAction *a = new QAction( tr( "Open..." ), Opie::Core::OResource::loadPixmap( "fileopen", Opie::Core::OResource::SmallIcon ), |
191 | QString::null, 0, this, 0 ); | ||
191 | connect( a, SIGNAL(activated()), this, SLOT(slotTextOpen()) ); | 192 | connect( a, SIGNAL(activated()), this, SLOT(slotTextOpen()) ); |
@@ -193,3 +194,4 @@ void MainWindow::initUI() | |||
193 | 194 | ||
194 | m_actionTextClose = new QAction( tr( "Close" ), Resource::loadPixmap( "close" ), QString::null, 0, this, 0 ); | 195 | m_actionTextClose = new QAction( tr( "Close" ), Opie::Core::OResource::loadPixmap( "close", Opie::Core::OResource::SmallIcon ), |
196 | QString::null, 0, this, 0 ); | ||
195 | connect( m_actionTextClose, SIGNAL(activated()), this, SLOT(slotTextClose()) ); | 197 | connect( m_actionTextClose, SIGNAL(activated()), this, SLOT(slotTextClose()) ); |
@@ -200,3 +202,4 @@ void MainWindow::initUI() | |||
200 | // TODO - need to implent | 202 | // TODO - need to implent |
201 | a = new QAction( tr( "Install..." ), Resource::loadPixmap( "install" ), QString::null, 0, this, 0 ); | 203 | a = new QAction( tr( "Install" ), Opie::Core::OResource::loadPixmap( "install", Opie::Core::OResource::SmallIcon ), |
204 | QString::null, 0, this, 0 ); | ||
202 | a->setEnabled( false ); | 205 | a->setEnabled( false ); |
@@ -210,3 +213,4 @@ void MainWindow::initUI() | |||
210 | 213 | ||
211 | m_actionEditCopy = new QAction( tr( "Copy" ), Resource::loadPixmap( "copy" ), QString::null, 0, this, 0 ); | 214 | m_actionEditCopy = new QAction( tr( "Copy" ), Opie::Core::OResource::loadPixmap( "copy", Opie::Core::OResource::SmallIcon ), |
215 | QString::null, 0, this, 0 ); | ||
212 | connect( m_actionEditCopy, SIGNAL(activated()), this, SLOT(slotEditCopy()) ); | 216 | connect( m_actionEditCopy, SIGNAL(activated()), this, SLOT(slotEditCopy()) ); |
@@ -216,3 +220,4 @@ void MainWindow::initUI() | |||
216 | 220 | ||
217 | a = new QAction( tr( "Configure..." ), Resource::loadPixmap( "SettingsIcon" ), QString::null, 0, this, 0 ); | 221 | a = new QAction( tr( "Configure" ), Opie::Core::OResource::loadPixmap( "SettingsIcon", Opie::Core::OResource::SmallIcon ), |
222 | QString::null, 0, this, 0 ); | ||
218 | connect( a, SIGNAL(activated()), this, SLOT(slotEditConfigure()) ); | 223 | connect( a, SIGNAL(activated()), this, SLOT(slotEditConfigure()) ); |
@@ -225,3 +230,5 @@ void MainWindow::initUI() | |||
225 | 230 | ||
226 | m_actionBookmarkAdd = new QAction( tr( "Add" ), Resource::loadPixmap( "dagger/bookmarkadd" ), QString::null, 0, this, 0 ); | 231 | m_actionBookmarkAdd = new QAction( tr( "Add" ), |
232 | Opie::Core::OResource::loadPixmap( "dagger/bookmarkadd", Opie::Core::OResource::SmallIcon ), | ||
233 | QString::null, 0, this, 0 ); | ||
227 | connect( m_actionBookmarkAdd, SIGNAL(activated()), this, SLOT(slotBookmarkAdd()) ); | 234 | connect( m_actionBookmarkAdd, SIGNAL(activated()), this, SLOT(slotBookmarkAdd()) ); |
@@ -229,3 +236,5 @@ void MainWindow::initUI() | |||
229 | 236 | ||
230 | m_actionBookmarkRemove = new QAction( tr( "Remove" ), Resource::loadPixmap( "dagger/bookmarkremove" ), QString::null, 0, this, 0 ); | 237 | m_actionBookmarkRemove = new QAction( tr( "Remove" ), |
238 | Opie::Core::OResource::loadPixmap( "dagger/bookmarkremove", Opie::Core::OResource::SmallIcon ), | ||
239 | QString::null, 0, this, 0 ); | ||
231 | connect( m_actionBookmarkRemove, SIGNAL(activated()), this, SLOT(slotBookmarkRemove()) ); | 240 | connect( m_actionBookmarkRemove, SIGNAL(activated()), this, SLOT(slotBookmarkRemove()) ); |
diff --git a/noncore/apps/dagger/navbar.cpp b/noncore/apps/dagger/navbar.cpp index 97761f7..ac49613 100644 --- a/noncore/apps/dagger/navbar.cpp +++ b/noncore/apps/dagger/navbar.cpp | |||
@@ -19,2 +19,4 @@ file; see the file COPYING. If not, write to the Free Software Foundation, Inc., | |||
19 | 19 | ||
20 | #include <opie2/oresource.h> | ||
21 | |||
20 | #include <qpe/config.h> | 22 | #include <qpe/config.h> |
@@ -26,2 +28,4 @@ file; see the file COPYING. If not, write to the Free Software Foundation, Inc., | |||
26 | 28 | ||
29 | using Opie::Core::OResource; | ||
30 | |||
27 | NavBar::NavBar( QMainWindow *parent ) | 31 | NavBar::NavBar( QMainWindow *parent ) |
@@ -30,3 +34,3 @@ NavBar::NavBar( QMainWindow *parent ) | |||
30 | // Initialize UI | 34 | // Initialize UI |
31 | m_actionPrevPage = new QAction( tr( "Previous page" ), Resource::loadPixmap( "fastback" ), | 35 | m_actionPrevPage = new QAction( tr( "Previous page" ), OResource::loadPixmap( "fastback", OResource::SmallIcon ), |
32 | QString::null, 0, this, 0 ); | 36 | QString::null, 0, this, 0 ); |
@@ -36,3 +40,3 @@ NavBar::NavBar( QMainWindow *parent ) | |||
36 | 40 | ||
37 | m_actionPrevVerse = new QAction( tr( "Previous verse" ), Resource::loadPixmap( "back" ), | 41 | m_actionPrevVerse = new QAction( tr( "Previous verse" ), OResource::loadPixmap( "back", OResource::SmallIcon ), |
38 | QString::null, 0, this, 0 ); | 42 | QString::null, 0, this, 0 ); |
@@ -47,3 +51,3 @@ NavBar::NavBar( QMainWindow *parent ) | |||
47 | 51 | ||
48 | m_actionNextVerse = new QAction( tr( "Next verse" ), Resource::loadPixmap( "forward" ), | 52 | m_actionNextVerse = new QAction( tr( "Next verse" ), OResource::loadPixmap( "forward", OResource::SmallIcon ), |
49 | QString::null, 0, this, 0 ); | 53 | QString::null, 0, this, 0 ); |
@@ -53,3 +57,3 @@ NavBar::NavBar( QMainWindow *parent ) | |||
53 | 57 | ||
54 | m_actionNextPage = new QAction( tr( "Next page" ), Resource::loadPixmap( "fastforward" ), | 58 | m_actionNextPage = new QAction( tr( "Next page" ), OResource::loadPixmap( "fastforward", OResource::SmallIcon ), |
55 | QString::null, 0, this, 0 ); | 59 | QString::null, 0, this, 0 ); |
@@ -66,3 +70,3 @@ NavBar::NavBar( QMainWindow *parent ) | |||
66 | 70 | ||
67 | m_actionScroll = new QAction( tr( "Auto-scroll" ), Resource::loadPixmap( "dagger/autoscroll" ), | 71 | m_actionScroll = new QAction( tr( "Auto-scroll" ), OResource::loadPixmap( "dagger/autoscroll", OResource::SmallIcon ), |
68 | QString::null, 0, this, 0 ); | 72 | QString::null, 0, this, 0 ); |
diff --git a/noncore/apps/dagger/searchbar.cpp b/noncore/apps/dagger/searchbar.cpp index 9953e8f..b794bfd 100644 --- a/noncore/apps/dagger/searchbar.cpp +++ b/noncore/apps/dagger/searchbar.cpp | |||
@@ -20,2 +20,3 @@ file; see the file COPYING. If not, write to the Free Software Foundation, Inc., | |||
20 | 20 | ||
21 | #include <opie2/oresource.h> | ||
21 | #include <opie2/owait.h> | 22 | #include <opie2/owait.h> |
@@ -34,2 +35,4 @@ file; see the file COPYING. If not, write to the Free Software Foundation, Inc., | |||
34 | 35 | ||
36 | using Opie::Core::OResource; | ||
37 | |||
35 | void searchCallback( char /*percent*/, void */*userData*/ ) | 38 | void searchCallback( char /*percent*/, void */*userData*/ ) |
@@ -50,3 +53,3 @@ SearchBar::SearchBar( QMainWindow *parent ) | |||
50 | 53 | ||
51 | m_actionFind = new QAction( tr( "Find" ), Resource::loadPixmap( "find" ), QString::null, | 54 | m_actionFind = new QAction( tr( "Find" ), OResource::loadPixmap( "find", OResource::SmallIcon ), QString::null, |
52 | 0, this, 0 ); | 55 | 0, this, 0 ); |
@@ -59,3 +62,3 @@ SearchBar::SearchBar( QMainWindow *parent ) | |||
59 | 62 | ||
60 | m_actionPrev = new QAction( tr( "Previous result" ), Resource::loadPixmap( "back" ), | 63 | m_actionPrev = new QAction( tr( "Previous result" ), OResource::loadPixmap( "back", OResource::SmallIcon ), |
61 | QString::null, 0, this, 0 ); | 64 | QString::null, 0, this, 0 ); |
@@ -71,3 +74,3 @@ SearchBar::SearchBar( QMainWindow *parent ) | |||
71 | 74 | ||
72 | m_actionNext = new QAction( tr( "Next result" ), Resource::loadPixmap( "forward" ), | 75 | m_actionNext = new QAction( tr( "Next result" ), OResource::loadPixmap( "forward", OResource::SmallIcon ), |
73 | QString::null, 0, this, 0 ); | 76 | QString::null, 0, this, 0 ); |