summaryrefslogtreecommitdiff
path: root/libopie2/opiecore
authormickeyl <mickeyl>2003-05-01 18:55:39 (UTC)
committer mickeyl <mickeyl>2003-05-01 18:55:39 (UTC)
commit8266da96576ad43a768da37000cef4e8eba000ac (patch) (unidiff)
tree904f07a06eb9e18e650c123bad8e901a5da56bf1 /libopie2/opiecore
parent95e533a6ac257d3b95cd8905660008fb7dcd33f1 (diff)
downloadopie-8266da96576ad43a768da37000cef4e8eba000ac.zip
opie-8266da96576ad43a768da37000cef4e8eba000ac.tar.gz
opie-8266da96576ad43a768da37000cef4e8eba000ac.tar.bz2
remove stupid approach to encapsulate X11/Embedded differences into OApplication
thanks to zecke reminding me (once again) that moc does not preprocess... if I ever forget it again, I owe you a beer :-)
Diffstat (limited to 'libopie2/opiecore') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opiecore/oapplication.cpp13
-rw-r--r--libopie2/opiecore/oapplication.h46
2 files changed, 8 insertions, 51 deletions
diff --git a/libopie2/opiecore/oapplication.cpp b/libopie2/opiecore/oapplication.cpp
index ce26420..7a6c174 100644
--- a/libopie2/opiecore/oapplication.cpp
+++ b/libopie2/opiecore/oapplication.cpp
@@ -41,25 +41,25 @@ class OApplicationPrivate
41{ 41{
42 public: 42 public:
43 OApplicationPrivate() {}; 43 OApplicationPrivate() {};
44 ~OApplicationPrivate() {}; 44 ~OApplicationPrivate() {};
45}; 45};
46 46
47/**************************************************************************************************/ 47/**************************************************************************************************/
48/* OApplication 48/* OApplication
49/**************************************************************************************************/ 49/**************************************************************************************************/
50 50
51 51
52OApplication::OApplication( int& argc, char** argv, const QCString& rAppName ) 52OApplication::OApplication( int& argc, char** argv, const QCString& rAppName )
53 :OApplicationBaseClass( argc, argv ), 53 :QPEApplication( argc, argv ),
54 _appname( rAppName ), 54 _appname( rAppName ),
55 _config( 0 ) 55 _config( 0 )
56{ 56{
57 init(); 57 init();
58} 58}
59 59
60 60
61OApplication::~OApplication() 61OApplication::~OApplication()
62{ 62{
63 delete d; 63 delete d;
64 if ( _config ) 64 if ( _config )
65 delete _config; 65 delete _config;
@@ -84,38 +84,27 @@ void OApplication::init()
84 d = new OApplicationPrivate(); 84 d = new OApplicationPrivate();
85 if ( !OApplication::_instance ) 85 if ( !OApplication::_instance )
86 { 86 {
87 OApplication::_instance = this; 87 OApplication::_instance = this;
88 } 88 }
89 else 89 else
90 { 90 {
91 qFatal( "OApplication: Can't create more than one OApplication object. Aborting." ); 91 qFatal( "OApplication: Can't create more than one OApplication object. Aborting." );
92 } 92 }
93} 93}
94 94
95 95
96void OApplication::setMainWidget( QWidget* widget )
97{
98 showMainWidget( widget );
99}
100
101
102void OApplication::showMainWidget( QWidget* widget, bool nomax ) 96void OApplication::showMainWidget( QWidget* widget, bool nomax )
103{ 97{
104 #ifdef Q_WS_QWS
105 QPEApplication::showMainWidget( widget, nomax ); 98 QPEApplication::showMainWidget( widget, nomax );
106 #else
107 QApplication::setMainWidget( widget );
108 widget->show();
109 #endif
110 widget->setCaption( _appname ); 99 widget->setCaption( _appname );
111} 100}
112 101
113 102
114void OApplication::setTitle( const QString& title ) const 103void OApplication::setTitle( const QString& title ) const
115{ 104{
116 if ( mainWidget() ) 105 if ( mainWidget() )
117 { 106 {
118 if ( !title.isNull() ) 107 if ( !title.isNull() )
119 mainWidget()->setCaption( QString(_appname) + QString( " - " ) + title ); 108 mainWidget()->setCaption( QString(_appname) + QString( " - " ) + title );
120 else 109 else
121 mainWidget()->setCaption( _appname ); 110 mainWidget()->setCaption( _appname );
diff --git a/libopie2/opiecore/oapplication.h b/libopie2/opiecore/oapplication.h
index 8326847..94ac488 100644
--- a/libopie2/opiecore/oapplication.h
+++ b/libopie2/opiecore/oapplication.h
@@ -24,111 +24,79 @@
24  -_. . .   )=.  = Library General Public License along with 24  -_. . .   )=.  = Library General Public License along with
25    --        :-=` this library; see the file COPYING.LIB. 25    --        :-=` this library; see the file COPYING.LIB.
26 If not, write to the Free Software Foundation, 26 If not, write to the Free Software Foundation,
27 Inc., 59 Temple Place - Suite 330, 27 Inc., 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA. 28 Boston, MA 02111-1307, USA.
29*/ 29*/
30 30
31#ifndef OAPPLICATION_H 31#ifndef OAPPLICATION_H
32#define OAPPLICATION_H 32#define OAPPLICATION_H
33 33
34#define oApp OApplication::oApplication() 34#define oApp OApplication::oApplication()
35 35
36// the below stuff will fail with moc because moc does not pre process headers
37// This will make usage of signal and slots hard inside QPEApplication -zecke
38
39#ifdef QWS
40 #include <qpe/qpeapplication.h> 36 #include <qpe/qpeapplication.h>
41 #define OApplicationBaseClass QPEApplication
42#else
43 #include <qapplication.h>
44 #define OApplicationBaseClass QApplication
45#endif
46 37
47class OApplicationPrivate; 38class OApplicationPrivate;
48class OConfig; 39class OConfig;
49 40
50class OApplication: public OApplicationBaseClass 41class OApplication: public QPEApplication
51{ 42{
52// Q_OBJECT would fail -zecke 43 Q_OBJECT
53 public:
54 44
45 public:
55 /** 46 /**
56 * Constructor. Parses command-line arguments and sets the window caption. 47 * Constructor. Parses command-line arguments and sets the window caption.
57 * 48 *
58 * @param rAppName application name. Will be used for finding the 49 * @param rAppName application name. Will be used for finding the
59 * associated message, icon and configuration files 50 * associated message, icon and configuration files
60 * 51 *
61 */ 52 */
62 OApplication( int& argc, char** argv, const QCString& rAppName ); 53 OApplication( int& argc, char** argv, const QCString& rAppName );
63 /** 54 /**
64 * Destructor. Destroys the application object and its children. 55 * Destructor. Destroys the application object and its children.
65 */ 56 */
66 virtual ~OApplication(); 57 virtual ~OApplication();
67
68 /** 58 /**
69 * Returns the current application object. 59 * @returns the process-wide application object
70 * 60 *
71 * This is similar to the global @ref QApplication pointer qApp. It 61 * This is similar to the global @ref QApplication pointer qApp. It
72 * allows access to the single global OApplication object, since 62 * allows access to the single global OApplication object, since
73 * more than one cannot be created in the same application. It 63 * more than one cannot be created in the same application. It
74 * saves you the trouble of having to pass the pointer explicitly 64 * saves you the trouble of having to pass the pointer explicitly
75 * to every function that may require it. 65 * to every function that may require it.
76 *
77 * @return the current application object
78 */ 66 */
79 static const OApplication* oApplication() { return _instance; }; 67 static const OApplication* oApplication() { return _instance; };
80
81 /** 68 /**
82 * Returns the application name as given during creation. 69 * Returns the application name as given during creation.
83 * 70 *
84 * @return A reference to the application name 71 * @returns a reference to the application name
85 */ 72 */
86 const QCString& appName() const { return _appname; }; 73 const QCString& appName() const { return _appname; };
87
88 /** 74 /**
89 * Returns the application session config object. 75 * @returns the application session config object.
90 * 76 *
91 * @return A pointer to the application's instance specific
92 * @ref OConfig object.
93 * @see OConfig 77 * @see OConfig
94 */ 78 */
95 OConfig* config(); 79 OConfig* config();
96
97 /** 80 /**
98 * Sets the main widget - reimplemented to call showMainWidget() 81 * Shows the main @a widget and sets the name of the application as window caption.
99 * on Qt/Embedded.
100 *
101 * @param mainWidget the widget to become the main widget
102 * @see QWidget object
103 */
104 virtual void setMainWidget( QWidget *mainWidget );
105
106 /**
107 * Shows the main widget - reimplemented to call setMainWidget()
108 * on platforms other than Qt/Embedded.
109 *
110 * @param mainWidget the widget to become the main widget
111 * @see QWidget object
112 */ 82 */
113 virtual void showMainWidget( QWidget* widget, bool nomax = false ); 83 virtual void showMainWidget( QWidget* widget, bool nomax = false );
114
115 /** 84 /**
116 * Set the application title. The application title will be concatenated 85 * Set the application title. The application title will be concatenated
117 * to the application name given in the constructor. 86 * to the application name given in the constructor.
118 * 87 *
119 * @param title the title. If not given, resets caption to appname 88 * @param title the title. If not given, resets caption to appname
120 */ 89 */
121 virtual void setTitle( const QString& title = QString::null ) const; 90 virtual void setTitle( const QString& title = QString::null ) const;
122 //virtual void setTitle() const;
123 91
124 protected: 92 protected:
125 void init(); 93 void init();
126 94
127 private: 95 private:
128 const QCString _appname; 96 const QCString _appname;
129 static OApplication* _instance; 97 static OApplication* _instance;
130 OConfig* _config; 98 OConfig* _config;
131 OApplicationPrivate* d; 99 OApplicationPrivate* d;
132}; 100};
133 101
134#endif // OAPPLICATION_H 102#endif // OAPPLICATION_H