summaryrefslogtreecommitdiff
authorzecke <zecke>2003-05-07 15:09:34 (UTC)
committer zecke <zecke>2003-05-07 15:09:34 (UTC)
commit1a550df3248342a8c863951ba733b862ca222216 (patch) (unidiff)
treec0c24947496d7984a28dfe134624567aa250bc38
parent4a619c6ad79d571f2adcff58dc2bf8918c622c83 (diff)
downloadopie-1a550df3248342a8c863951ba733b862ca222216.zip
opie-1a550df3248342a8c863951ba733b862ca222216.tar.gz
opie-1a550df3248342a8c863951ba733b862ca222216.tar.bz2
data is a method name...
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevicebutton.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/odevicebutton.h b/libopie/odevicebutton.h
index abe27d6..fcc2af1 100644
--- a/libopie/odevicebutton.h
+++ b/libopie/odevicebutton.h
@@ -6,97 +6,97 @@
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20#ifndef DEVICE_BUTTON_H 20#ifndef DEVICE_BUTTON_H
21#define DEVICE_BUTTON_H 21#define DEVICE_BUTTON_H
22 22
23#include <qpixmap.h> 23#include <qpixmap.h>
24#include <qstring.h> 24#include <qstring.h>
25 25
26class OQCopMessageData; 26class OQCopMessageData;
27 27
28namespace Opie 28namespace Opie
29{ 29{
30 30
31class OQCopMessage { 31class OQCopMessage {
32public: 32public:
33 OQCopMessage ( ); 33 OQCopMessage ( );
34 OQCopMessage ( const OQCopMessage &copy ); 34 OQCopMessage ( const OQCopMessage &copy );
35 OQCopMessage ( const QCString &m_channel, const QCString &message, const QByteArray &args = QByteArray ( )); 35 OQCopMessage ( const QCString &m_channel, const QCString &message, const QByteArray &args = QByteArray ( ));
36 36
37 OQCopMessage &operator = ( const OQCopMessage &assign ); 37 OQCopMessage &operator = ( const OQCopMessage &assign );
38 38
39 void setChannel ( const QCString &channel ); 39 void setChannel ( const QCString &channel );
40 void setMessage ( const QCString &message ); 40 void setMessage ( const QCString &message );
41 void setData ( const QByteArray &ba ); 41 void setData ( const QByteArray &ba );
42 42
43 QCString channel ( ) const; 43 QCString channel ( ) const;
44 QCString message ( ) const; 44 QCString message ( ) const;
45 QByteArray data ( ) const; 45 QByteArray data ( ) const;
46 46
47 bool send ( ); 47 bool send ( );
48 48
49private: 49private:
50 void init ( const QCString &m_channel, const QCString &message, const QByteArray &args ); 50 void init ( const QCString &m_channel, const QCString &message, const QByteArray &args );
51 51
52 OQCopMessageData *d; 52 OQCopMessageData *d;
53 class Private; 53 class Private;
54 Private* data; 54 Private* m_data;
55}; 55};
56 56
57 57
58/** 58/**
59 * This class represents a physical button on a Qtopia device. A device may 59 * This class represents a physical button on a Qtopia device. A device may
60 * have n "user programmable" buttons, which are number 1..n. The location 60 * have n "user programmable" buttons, which are number 1..n. The location
61 * and number of buttons will vary from device to device. userText() and pixmap() 61 * and number of buttons will vary from device to device. userText() and pixmap()
62 * may be used to describe this button to the user in help documentation. 62 * may be used to describe this button to the user in help documentation.
63 * 63 *
64 * @version 1.0 64 * @version 1.0
65 * @author Trolltech 65 * @author Trolltech
66 * @short A representation of buttons 66 * @short A representation of buttons
67 */ 67 */
68 68
69class ODeviceButton 69class ODeviceButton
70{ 70{
71public: 71public:
72 ODeviceButton(); 72 ODeviceButton();
73 virtual ~ODeviceButton(); 73 virtual ~ODeviceButton();
74 74
75 ushort keycode ( ) const; 75 ushort keycode ( ) const;
76 QString userText ( ) const; 76 QString userText ( ) const;
77 QPixmap pixmap ( ) const; 77 QPixmap pixmap ( ) const;
78 OQCopMessage factoryPresetPressedAction ( ) const; 78 OQCopMessage factoryPresetPressedAction ( ) const;
79 OQCopMessage pressedAction ( ) const; 79 OQCopMessage pressedAction ( ) const;
80 OQCopMessage factoryPresetHeldAction ( ) const; 80 OQCopMessage factoryPresetHeldAction ( ) const;
81 OQCopMessage heldAction ( ) const; 81 OQCopMessage heldAction ( ) const;
82 82
83 void setKeycode ( ushort keycode ); 83 void setKeycode ( ushort keycode );
84 void setUserText ( const QString& text ); 84 void setUserText ( const QString& text );
85 void setPixmap ( const QPixmap& picture ); 85 void setPixmap ( const QPixmap& picture );
86 void setFactoryPresetPressedAction ( const OQCopMessage& qcopMessage ); 86 void setFactoryPresetPressedAction ( const OQCopMessage& qcopMessage );
87 void setPressedAction ( const OQCopMessage& qcopMessage ); 87 void setPressedAction ( const OQCopMessage& qcopMessage );
88 void setFactoryPresetHeldAction ( const OQCopMessage& qcopMessage ); 88 void setFactoryPresetHeldAction ( const OQCopMessage& qcopMessage );
89 void setHeldAction ( const OQCopMessage& qcopMessage ); 89 void setHeldAction ( const OQCopMessage& qcopMessage );
90 90
91private: 91private:
92 ushort m_Keycode; 92 ushort m_Keycode;
93 QString m_UserText; 93 QString m_UserText;
94 QPixmap m_Pixmap; 94 QPixmap m_Pixmap;
95 OQCopMessage m_FactoryPresetPressedAction; 95 OQCopMessage m_FactoryPresetPressedAction;
96 OQCopMessage m_PressedAction; 96 OQCopMessage m_PressedAction;
97 OQCopMessage m_FactoryPresetHeldAction; 97 OQCopMessage m_FactoryPresetHeldAction;
98 OQCopMessage m_HeldAction; 98 OQCopMessage m_HeldAction;
99 class Private; 99 class Private;
100 Private *d; 100 Private *d;
101}; 101};
102 102