summaryrefslogtreecommitdiff
path: root/examples
authormickeyl <mickeyl>2005-02-04 16:36:03 (UTC)
committer mickeyl <mickeyl>2005-02-04 16:36:03 (UTC)
commit5398d63dbd79eb166ab1c36517f60c6e850a2ca7 (patch) (unidiff)
tree503eb66f8295f4592c1fb2029c6ab0fa2225a2aa /examples
parent41886a2bfe003d715ad8fe48011d054c2ba0a779 (diff)
downloadopie-5398d63dbd79eb166ab1c36517f60c6e850a2ca7.zip
opie-5398d63dbd79eb166ab1c36517f60c6e850a2ca7.tar.gz
opie-5398d63dbd79eb166ab1c36517f60c6e850a2ca7.tar.bz2
improve coding style
Diffstat (limited to 'examples') (more/less context) (ignore whitespace changes)
-rw-r--r--examples/opiecore/onotifydemo/onotifydemo.cpp30
-rw-r--r--examples/opiecore/onotifydemo/onotifydemo.h29
-rw-r--r--examples/opiecore/onotifydemo/onotifydemo.pro2
3 files changed, 39 insertions, 22 deletions
diff --git a/examples/opiecore/onotifydemo/onotifydemo.cpp b/examples/opiecore/onotifydemo/onotifydemo.cpp
index b9ff9db..a38ffee 100644
--- a/examples/opiecore/onotifydemo/onotifydemo.cpp
+++ b/examples/opiecore/onotifydemo/onotifydemo.cpp
@@ -1,3 +1,5 @@
1#include "onotifydemo.h"
2
1/* OPIE */ 3/* OPIE */
2#include <opie2/odebug.h> 4#include <opie2/odebug.h>
3#include <opie2/oapplication.h> 5#include <opie2/oapplication.h>
@@ -16,11 +18,7 @@ using namespace Opie::Ui;
16#include <qmessagebox.h> 18#include <qmessagebox.h>
17#include <qpushbutton.h> 19#include <qpushbutton.h>
18 20
19class DemoApp : public OApplication 21DemoApp::DemoApp( int argc, char** argv ) : OApplication( argc, argv, "libopie2 notify demo" )
20{
21 Q_OBJECT
22public:
23 DemoApp( int argc, char** argv ) : OApplication( argc, argv, "libopie2 notify demo" )
24 { 22 {
25 23
26 QVBox* vbox = new QVBox(); 24 QVBox* vbox = new QVBox();
@@ -70,8 +68,7 @@ public:
70 showMainWidget( vbox ); 68 showMainWidget( vbox );
71 } 69 }
72 70
73public: 71 void DemoApp::addTrigger( bool multi )
74 void addTrigger( bool multi = false )
75 { 72 {
76 if ( !m ) 73 if ( !m )
77 { 74 {
@@ -100,12 +97,11 @@ public:
100 } 97 }
101 } 98 }
102 99
103public slots: 100 void DemoApp::modifierClicked( int modifier ) { m = static_cast<OFileNotificationType>( (int)m ^ int(modifier) ); };
104 void modifierClicked( int modifier ) { m = static_cast<OFileNotificationType>( (int)m ^ int(modifier) ); }; 101 void DemoApp::addSingle() { addTrigger(); };
105 void addSingle() { addTrigger(); }; 102 void DemoApp::addMulti() { addTrigger( true ); };
106 void addMulti() { addTrigger( true ); };
107 103
108 void delTrigger() 104 void DemoApp::delTrigger()
109 { 105 {
110 QListViewItem* item = l->selectedItem(); 106 QListViewItem* item = l->selectedItem();
111 if ( !item ) 107 if ( !item )
@@ -120,18 +116,11 @@ public slots:
120 } 116 }
121 } 117 }
122 118
123 void trigger() 119 void DemoApp::trigger()
124 { 120 {
125 owarn << "FIRE!" << oendl; 121 owarn << "FIRE!" << oendl;
126 } 122 }
127 123
128private:
129 OListView* l;
130 QButtonGroup* g1;
131 QButtonGroup* g2;
132 OFileNotificationType m;
133};
134
135int main( int argc, char** argv ) 124int main( int argc, char** argv )
136{ 125{
137 DemoApp* app = new DemoApp( argc, argv ); 126 DemoApp* app = new DemoApp( argc, argv );
@@ -141,4 +130,3 @@ int main( int argc, char** argv )
141 130
142} 131}
143 132
144#include "moc/onotifydemo.moc"
diff --git a/examples/opiecore/onotifydemo/onotifydemo.h b/examples/opiecore/onotifydemo/onotifydemo.h
new file mode 100644
index 0000000..c4e3456
--- a/dev/null
+++ b/examples/opiecore/onotifydemo/onotifydemo.h
@@ -0,0 +1,29 @@
1/* OPIE */
2#include <opie2/olistview.h>
3#include <opie2/odebug.h>
4#include <opie2/oapplication.h>
5#include <opie2/ofilenotify.h>
6
7class QButtonGroup;
8
9class DemoApp : public Opie::Core::OApplication
10{
11 Q_OBJECT
12public:
13 DemoApp( int argc, char** argv );
14
15public:
16 void addTrigger( bool multi = false );
17public slots:
18 void modifierClicked( int modifier );
19 void addSingle();
20 void addMulti();
21 void delTrigger();
22 void trigger();
23
24private:
25 Opie::Ui::OListView* l;
26 QButtonGroup* g1;
27 QButtonGroup* g2;
28 Opie::Core::OFileNotificationType m;
29};
diff --git a/examples/opiecore/onotifydemo/onotifydemo.pro b/examples/opiecore/onotifydemo/onotifydemo.pro
index 1c1040c..8e7e487 100644
--- a/examples/opiecore/onotifydemo/onotifydemo.pro
+++ b/examples/opiecore/onotifydemo/onotifydemo.pro
@@ -1,6 +1,6 @@
1TEMPLATE = app 1TEMPLATE = app
2CONFIG = qt warn_on 2CONFIG = qt warn_on
3HEADERS = 3HEADERS = onotifydemo.h
4SOURCES = onotifydemo.cpp 4SOURCES = onotifydemo.cpp
5INCLUDEPATH += $(OPIEDIR)/include 5INCLUDEPATH += $(OPIEDIR)/include
6DEPENDPATH += $(OPIEDIR)/include 6DEPENDPATH += $(OPIEDIR)/include