-rw-r--r-- | library/backend/rohfeedback.cpp | 2 | ||||
-rw-r--r-- | library/backend/rohfeedback.h | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/library/backend/rohfeedback.cpp b/library/backend/rohfeedback.cpp index 9a19aac..fa2a636 100644 --- a/library/backend/rohfeedback.cpp +++ b/library/backend/rohfeedback.cpp | |||
@@ -4,33 +4,32 @@ | |||
4 | ** This file is part of the Qtopia Environment. | 4 | ** This file is part of the Qtopia Environment. |
5 | ** | 5 | ** |
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 | #ifdef OPIE_WITHROHFEEDBACK | ||
21 | 20 | ||
22 | #include <rohfeedback.h> | 21 | #include <rohfeedback.h> |
23 | #include <stdio.h> | 22 | #include <stdio.h> |
24 | #include <qpeapplication.h> | 23 | #include <qpeapplication.h> |
25 | #include <qevent.h> | 24 | #include <qevent.h> |
26 | #include <resource.h> | 25 | #include <resource.h> |
27 | #include <qpixmap.h> | 26 | #include <qpixmap.h> |
28 | #include <qbitmap.h> | 27 | #include <qbitmap.h> |
29 | 28 | ||
30 | #define SPEED 600 | 29 | #define SPEED 600 |
31 | #define DELAY 500 | 30 | #define DELAY 500 |
32 | 31 | ||
33 | namespace Opie { | 32 | namespace Opie { |
34 | namespace Internal { | 33 | namespace Internal { |
35 | /* | 34 | /* |
36 | 35 | ||
@@ -128,17 +127,16 @@ void RoHFeedback::iconShow( void ) { | |||
128 | case FeedbackShow: // first | 127 | case FeedbackShow: // first |
129 | show(); | 128 | show(); |
130 | // FT | 129 | // FT |
131 | default : | 130 | default : |
132 | // show | 131 | // show |
133 | 132 | ||
134 | setPixmap( *(Imgs[IconNr]) ); | 133 | setPixmap( *(Imgs[IconNr]) ); |
135 | setMask( *(Masks[IconNr]) ); | 134 | setMask( *(Masks[IconNr]) ); |
136 | IconNr = (IconNr+1)%NOOFICONS; // rotate | 135 | IconNr = (IconNr+1)%NOOFICONS; // rotate |
137 | break; | 136 | break; |
138 | } | 137 | } |
139 | } | 138 | } |
140 | 139 | ||
141 | } | 140 | } |
142 | } | 141 | } |
143 | 142 | ||
144 | #endif | ||
diff --git a/library/backend/rohfeedback.h b/library/backend/rohfeedback.h index 774ee85..2961d0e 100644 --- a/library/backend/rohfeedback.h +++ b/library/backend/rohfeedback.h | |||
@@ -7,33 +7,32 @@ | |||
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 ROHFEEDBACK_H | 20 | #ifndef ROHFEEDBACK_H |
21 | #define ROHFEEDBACK_H | 21 | #define ROHFEEDBACK_H |
22 | 22 | ||
23 | #ifdef OPIE_WITHROHFEEDBACK | ||
24 | 23 | ||
25 | /* | 24 | /* |
26 | 25 | ||
27 | RightOnHold feedback show | 26 | RightOnHold feedback show |
28 | 27 | ||
29 | */ | 28 | */ |
30 | 29 | ||
31 | #define NOOFICONS 5 | 30 | #define NOOFICONS 5 |
32 | 31 | ||
33 | #include <qlabel.h> | 32 | #include <qlabel.h> |
34 | #include <qtimer.h> | 33 | #include <qtimer.h> |
35 | 34 | ||
36 | class QEvent; | 35 | class QEvent; |
37 | class QPixmap; | 36 | class QPixmap; |
38 | class QBitmap; | 37 | class QBitmap; |
39 | class QMouseEvent; | 38 | class QMouseEvent; |
@@ -68,17 +67,16 @@ protected : | |||
68 | 67 | ||
69 | bool event( QEvent * E ); | 68 | bool event( QEvent * E ); |
70 | 69 | ||
71 | QTimer Timer; | 70 | QTimer Timer; |
72 | int IconNr; | 71 | int IconNr; |
73 | QWidget * Receiver; | 72 | QWidget * Receiver; |
74 | 73 | ||
75 | static int IconWidth; | 74 | static int IconWidth; |
76 | static int IconHeight; | 75 | static int IconHeight; |
77 | static QPixmap * Imgs[NOOFICONS]; | 76 | static QPixmap * Imgs[NOOFICONS]; |
78 | static QBitmap * Masks[NOOFICONS]; | 77 | static QBitmap * Masks[NOOFICONS]; |
79 | }; | 78 | }; |
80 | } | 79 | } |
81 | } | 80 | } |
82 | 81 | ||
83 | #endif | 82 | #endif |
84 | #endif | ||