author | drw <drw> | 2005-05-17 23:02:25 (UTC) |
---|---|---|
committer | drw <drw> | 2005-05-17 23:02:25 (UTC) |
commit | f37c642f417a58ee489ab5a8bab56e5efb59bada (patch) (unidiff) | |
tree | a3cf08e41dc605906ec08ce5e47d29776d461410 | |
parent | 0892a9d473bfeacc921d586266e6889153654737 (diff) | |
download | opie-f37c642f417a58ee489ab5a8bab56e5efb59bada.zip opie-f37c642f417a58ee489ab5a8bab56e5efb59bada.tar.gz opie-f37c642f417a58ee489ab5a8bab56e5efb59bada.tar.bz2 |
Resource -> OResource
-rw-r--r-- | noncore/apps/opie-bartender/bartender.cpp | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/noncore/apps/opie-bartender/bartender.cpp b/noncore/apps/opie-bartender/bartender.cpp index bee164c..57b28d4 100644 --- a/noncore/apps/opie-bartender/bartender.cpp +++ b/noncore/apps/opie-bartender/bartender.cpp | |||
@@ -20,6 +20,6 @@ | |||
20 | /* OPIE */ | 20 | /* OPIE */ |
21 | #include <opie2/odebug.h> | 21 | #include <opie2/odebug.h> |
22 | #include <opie2/oresource.h> | ||
22 | #include <qpe/qpeapplication.h> | 23 | #include <qpe/qpeapplication.h> |
23 | #include <qpe/resource.h> | ||
24 | using namespace Opie::Core; | 24 | using namespace Opie::Core; |
25 | 25 | ||
@@ -49,19 +49,16 @@ Bartender::Bartender( QWidget* parent, const char* name, WFlags fl ) | |||
49 | : QMainWindow( parent, name, fl ) { | 49 | : QMainWindow( parent, name, fl ) { |
50 | if ( !name ) | 50 | if ( !name ) |
51 | setName( "Bartender" ); | 51 | setName( "Bartender" ); |
52 | QGridLayout *layout = new QGridLayout( this ); | 52 | |
53 | layout->setSpacing( 2); | ||
54 | layout->setMargin( 2); | ||
55 | connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); | 53 | connect( qApp,SIGNAL( aboutToQuit()),SLOT( cleanUp()) ); |
56 | 54 | ||
57 | setCaption( tr( "Bartender" ) ); | 55 | setCaption( tr( "Bartender" ) ); |
58 | 56 | ||
59 | setToolBarsMovable( FALSE ); | 57 | setToolBarsMovable( false ); |
60 | 58 | QToolBar *dock = new QToolBar( this ); | |
61 | ToolBar1 = new QToolBar( this, "ToolBar1" ); | 59 | dock->setHorizontalStretchable( true ); |
62 | ToolBar1->setFixedHeight(22); | ||
63 | layout->addMultiCellWidget( ToolBar1, 0, 0, 0, 4 ); | ||
64 | 60 | ||
65 | QMenuBar *menuBar = new QMenuBar( ToolBar1 ); | 61 | QMenuBar *menuBar = new QMenuBar( dock ); |
62 | menuBar->setMargin( 0 ); | ||
66 | QPopupMenu *fileMenu; | 63 | QPopupMenu *fileMenu; |
67 | fileMenu = new QPopupMenu( this); | 64 | fileMenu = new QPopupMenu( this); |
@@ -81,18 +78,23 @@ Bartender::Bartender( QWidget* parent, const char* name, WFlags fl ) | |||
81 | connect( editMenu, SIGNAL( activated(int) ), this, SLOT( editMenuActivated(int) )); | 78 | connect( editMenu, SIGNAL( activated(int) ), this, SLOT( editMenuActivated(int) )); |
82 | 79 | ||
80 | ToolBar1 = new QToolBar( this ); | ||
83 | 81 | ||
84 | QAction *a = new QAction( tr( "New" ), Resource::loadPixmap( "new" ), "New", 0, this, 0 ); | 82 | QAction *a = new QAction( tr( "New" ), Opie::Core::OResource::loadPixmap( "new", Opie::Core::OResource::SmallIcon ), |
83 | "New", 0, this, 0 ); | ||
85 | connect( a, SIGNAL( activated() ), this, SLOT( fileNew() ) ); | 84 | connect( a, SIGNAL( activated() ), this, SLOT( fileNew() ) ); |
86 | a->addTo( ToolBar1 ); | 85 | a->addTo( ToolBar1 ); |
87 | 86 | ||
88 | a = new QAction( tr( "Open" ), Resource::loadPixmap( "bartender/bartender_sm" ), "open", 0, this, 0 ); | 87 | a = new QAction( tr( "Open" ), Opie::Core::OResource::loadPixmap( "bartender/bartender_sm", Opie::Core::OResource::SmallIcon ), |
88 | "open", 0, this, 0 ); | ||
89 | connect( a, SIGNAL( activated() ), this, SLOT( openCurrentDrink() ) ); | 89 | connect( a, SIGNAL( activated() ), this, SLOT( openCurrentDrink() ) ); |
90 | a->addTo( ToolBar1 ); | 90 | a->addTo( ToolBar1 ); |
91 | 91 | ||
92 | a = new QAction( tr( "Find" ), Resource::loadPixmap( "find" ), "Find", 0, this, 0 ); | 92 | a = new QAction( tr( "Find" ), Opie::Core::OResource::loadPixmap( "find", Opie::Core::OResource::SmallIcon ), |
93 | "Find", 0, this, 0 ); | ||
93 | connect( a, SIGNAL( activated() ), this, SLOT( askSearch() ) ); | 94 | connect( a, SIGNAL( activated() ), this, SLOT( askSearch() ) ); |
94 | a->addTo( ToolBar1 ); | 95 | a->addTo( ToolBar1 ); |
95 | 96 | ||
96 | a = new QAction( tr( "Edit" ), Resource::loadPixmap( "edit" ),"Edit", 0, this, 0 ); | 97 | a = new QAction( tr( "Edit" ), Opie::Core::OResource::loadPixmap( "edit", Opie::Core::OResource::SmallIcon ), |
98 | "Edit", 0, this, 0 ); | ||
97 | connect( a, SIGNAL( activated() ), this, SLOT( doEdit() ) ); | 99 | connect( a, SIGNAL( activated() ), this, SLOT( doEdit() ) ); |
98 | a->addTo( ToolBar1 ); | 100 | a->addTo( ToolBar1 ); |
@@ -104,5 +106,4 @@ Bartender::Bartender( QWidget* parent, const char* name, WFlags fl ) | |||
104 | DrinkView = new QListView( this, "DrinkView" ); | 106 | DrinkView = new QListView( this, "DrinkView" ); |
105 | DrinkView->addColumn( tr( "Name of Drink" ) ); | 107 | DrinkView->addColumn( tr( "Name of Drink" ) ); |
106 | // DrinkView->setRootIsDecorated( TRUE ); | ||
107 | DrinkView->header()->hide(); | 108 | DrinkView->header()->hide(); |
108 | 109 | ||
@@ -113,5 +114,4 @@ Bartender::Bartender( QWidget* parent, const char* name, WFlags fl ) | |||
113 | this,SLOT( showDrink(int,QListViewItem*,const QPoint&,int))); | 114 | this,SLOT( showDrink(int,QListViewItem*,const QPoint&,int))); |
114 | 115 | ||
115 | layout->addMultiCellWidget( DrinkView, 1, 2, 0, 4 ); | ||
116 | if(QDir("db").exists()) | 116 | if(QDir("db").exists()) |
117 | drinkDB.setFile("db/drinkdb.txt"); | 117 | drinkDB.setFile("db/drinkdb.txt"); |
@@ -122,4 +122,6 @@ Bartender::Bartender( QWidget* parent, const char* name, WFlags fl ) | |||
122 | 122 | ||
123 | DrinkView->setFocus(); | 123 | DrinkView->setFocus(); |
124 | |||
125 | setCentralWidget( DrinkView ); | ||
124 | } | 126 | } |
125 | 127 | ||