summaryrefslogtreecommitdiff
path: root/x11
authorzecke <zecke>2003-02-02 19:26:09 (UTC)
committer zecke <zecke>2003-02-02 19:26:09 (UTC)
commitf2e80c39e5861f12e1c08e548ebff33ecb0d6ea6 (patch) (unidiff)
treed2003e38ef13407c43bfd52c6d533c03f272a7a4 /x11
parent8844489d3d3a71a2bf48f1a5ec4b45d31f18acfb (diff)
downloadopie-f2e80c39e5861f12e1c08e548ebff33ecb0d6ea6.zip
opie-f2e80c39e5861f12e1c08e548ebff33ecb0d6ea6.tar.gz
opie-f2e80c39e5861f12e1c08e548ebff33ecb0d6ea6.tar.bz2
Include Rotation so now it compiles again
Diffstat (limited to 'x11') (more/less context) (ignore whitespace changes)
-rw-r--r--x11/libqpe-x11/qpe/qpeapplication.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/x11/libqpe-x11/qpe/qpeapplication.h b/x11/libqpe-x11/qpe/qpeapplication.h
index 254fbfa..b1fc074 100644
--- a/x11/libqpe-x11/qpe/qpeapplication.h
+++ b/x11/libqpe-x11/qpe/qpeapplication.h
@@ -71,34 +71,35 @@ signals:
71 void micChanged( bool muted ); 71 void micChanged( bool muted );
72 void volumeChanged( bool muted ); 72 void volumeChanged( bool muted );
73 void appMessage( const QCString& msg, const QByteArray& data); 73 void appMessage( const QCString& msg, const QByteArray& data);
74 void weekChanged( bool startOnMonday ); 74 void weekChanged( bool startOnMonday );
75 void dateFormatChanged( DateFormat ); 75 void dateFormatChanged( DateFormat );
76 void flush(); 76 void flush();
77 void reload(); 77 void reload();
78 78
79private: 79private:
80 void initTranslations(); 80 void initTranslations();
81 void internalSetStyle(const QString&); 81 void internalSetStyle(const QString&);
82 82
83private slots: 83private slots:
84 void hideOrQuit(); 84 void hideOrQuit();
85 void systemMessage( const QCString&, const QByteArray& ); 85 void systemMessage( const QCString&, const QByteArray& );
86 void pidMessage( const QCString&, const QByteArray& ); 86 void pidMessage( const QCString&, const QByteArray& );
87 void removeSenderFromStylusDict(); 87 void removeSenderFromStylusDict();
88protected: 88protected:
89 virtual void restart(); 89 virtual void restart();
90 virtual void shutdown(); 90 virtual void shutdown();
91 void prepareForTermination(bool willrestart); 91 void prepareForTermination(bool willrestart);
92 bool eventFilter( QObject*, QEvent* ); 92 bool eventFilter( QObject*, QEvent* );
93 void timerEvent( QTimerEvent* ); 93 void timerEvent( QTimerEvent* );
94 void raiseAppropriateWindow(); 94 void raiseAppropriateWindow();
95 virtual void tryQuit(); 95 virtual void tryQuit();
96 96
97private: 97private:
98 class Private; 98 class Private;
99 Private* d; 99 Private* d;
100 QCopChannel *m_sys; 100 QCopChannel *m_sys;
101 QCopChannel *m_pid; 101 QCopChannel *m_pid;
102}; 102};
103enum Transformation { Rot0, Rot90, Rot180, Rot270 }; /* from qgfxtransformed_qws.cpp */
103 104
104#endif 105#endif