author | zcarsten <zcarsten> | 2003-07-24 16:54:29 (UTC) |
---|---|---|
committer | zcarsten <zcarsten> | 2003-07-24 16:54:29 (UTC) |
commit | 8bc46e21b76d5e01256a3f960c7a7fd3b24f35c9 (patch) (unidiff) | |
tree | 4892bd9cb445d6d01920484b591241e27f4a52d6 | |
parent | cab546dd4a50d15a9b068c40bf582b6c59042d90 (diff) | |
download | opie-8bc46e21b76d5e01256a3f960c7a7fd3b24f35c9.zip opie-8bc46e21b76d5e01256a3f960c7a7fd3b24f35c9.tar.gz opie-8bc46e21b76d5e01256a3f960c7a7fd3b24f35c9.tar.bz2 |
Header changed
-rw-r--r-- | noncore/apps/zsafe/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/apps/zsafe/main.cpp b/noncore/apps/zsafe/main.cpp index c6ef5f9..e225775 100644 --- a/noncore/apps/zsafe/main.cpp +++ b/noncore/apps/zsafe/main.cpp | |||
@@ -1,106 +1,106 @@ | |||
1 | /* | 1 | /* |
2 | ** Author: Carsten Schneider <CarstenSchneider@t-online.de> | 2 | ** Author: Carsten Schneider <zcarsten@gmx.net> |
3 | ** | 3 | ** |
4 | ** $Id$ | 4 | ** $Id$ |
5 | ** | 5 | ** |
6 | ** Homepage: http://home.t-online.de/home/CarstenSchneider/zsafe/index.html | 6 | ** Homepage: http://z-soft.z-portal.info/zsafe/index.html |
7 | */ | 7 | */ |
8 | 8 | ||
9 | 9 | ||
10 | #include "zsafe.h" | 10 | #include "zsafe.h" |
11 | #ifdef DESKTOP | 11 | #ifdef DESKTOP |
12 | #include <qapplication.h> | 12 | #include <qapplication.h> |
13 | #else | 13 | #else |
14 | #include <qpe/qpeapplication.h> | 14 | #include <qpe/qpeapplication.h> |
15 | #endif | 15 | #endif |
16 | #include <stdio.h> | 16 | #include <stdio.h> |
17 | #include <signal.h> | 17 | #include <signal.h> |
18 | #include "qsettings.h" | 18 | #include "qsettings.h" |
19 | 19 | ||
20 | ZSafe *zs; | 20 | ZSafe *zs; |
21 | #ifdef DESKTOP | 21 | #ifdef DESKTOP |
22 | QApplication *appl; | 22 | QApplication *appl; |
23 | #else | 23 | #else |
24 | QPEApplication *appl; | 24 | QPEApplication *appl; |
25 | #endif | 25 | #endif |
26 | 26 | ||
27 | int DeskW; | 27 | int DeskW; |
28 | int DeskH; | 28 | int DeskH; |
29 | 29 | ||
30 | void suspend (int signum) | 30 | void suspend (int signum) |
31 | { | 31 | { |
32 | printf ("Suspend signal %d received\n", signum); | 32 | printf ("Suspend signal %d received\n", signum); |
33 | } | 33 | } |
34 | 34 | ||
35 | void resume (int signum) | 35 | void resume (int signum) |
36 | { | 36 | { |
37 | printf ("Resume signal %d received\n", signum); | 37 | printf ("Resume signal %d received\n", signum); |
38 | zs->resume(signum); | 38 | zs->resume(signum); |
39 | } | 39 | } |
40 | 40 | ||
41 | int main( int argc, char ** argv ) | 41 | int main( int argc, char ** argv ) |
42 | { | 42 | { |
43 | #ifndef WIN32 | 43 | #ifndef WIN32 |
44 | // install signal handler | 44 | // install signal handler |
45 | signal (SIGSTOP, suspend); | 45 | signal (SIGSTOP, suspend); |
46 | #endif | 46 | #endif |
47 | 47 | ||
48 | #ifdef DESKTOP | 48 | #ifdef DESKTOP |
49 | QApplication a( argc, argv ); | 49 | QApplication a( argc, argv ); |
50 | #else | 50 | #else |
51 | QPEApplication a( argc, argv ); | 51 | QPEApplication a( argc, argv ); |
52 | #endif | 52 | #endif |
53 | appl = &a; | 53 | appl = &a; |
54 | 54 | ||
55 | #ifdef DESKTOP | 55 | #ifdef DESKTOP |
56 | if (argc >= 3) | 56 | if (argc >= 3) |
57 | { | 57 | { |
58 | #ifndef WIN32 | 58 | #ifndef WIN32 |
59 | DeskW = atoi(argv[1]); | 59 | DeskW = atoi(argv[1]); |
60 | DeskH = atoi(argv[2]); | 60 | DeskH = atoi(argv[2]); |
61 | #else | 61 | #else |
62 | int w, h; | 62 | int w, h; |
63 | sscanf (argv[1], "%d", &w); | 63 | sscanf (argv[1], "%d", &w); |
64 | sscanf (argv[2], "%d", &h); | 64 | sscanf (argv[2], "%d", &h); |
65 | DeskW = w; | 65 | DeskW = w; |
66 | DeskH = h; | 66 | DeskH = h; |
67 | #endif | 67 | #endif |
68 | } | 68 | } |
69 | else | 69 | else |
70 | { | 70 | { |
71 | DeskW = 600; | 71 | DeskW = 600; |
72 | DeskH = 400; | 72 | DeskH = 400; |
73 | } | 73 | } |
74 | #else | 74 | #else |
75 | DeskW = a.desktop()->width(); | 75 | DeskW = a.desktop()->width(); |
76 | DeskH = a.desktop()->height(); | 76 | DeskH = a.desktop()->height(); |
77 | 77 | ||
78 | char buf[128]; | 78 | char buf[128]; |
79 | sprintf (buf, "Width: %d Height: %d\n", DeskW, DeskH); | 79 | sprintf (buf, "Width: %d Height: %d\n", DeskW, DeskH); |
80 | qWarning (buf); | 80 | qWarning (buf); |
81 | if (DeskW > 240) | 81 | if (DeskW > 240) |
82 | { | 82 | { |
83 | DeskW -= 20; | 83 | DeskW -= 20; |
84 | DeskH += 25; | 84 | DeskH += 25; |
85 | sprintf (buf, "Changed width: %d Height: %d\n", DeskW, DeskH); | 85 | sprintf (buf, "Changed width: %d Height: %d\n", DeskW, DeskH); |
86 | qWarning (buf); | 86 | qWarning (buf); |
87 | } | 87 | } |
88 | #endif | 88 | #endif |
89 | 89 | ||
90 | ZSafe mw; | 90 | ZSafe mw; |
91 | zs = &mw; | 91 | zs = &mw; |
92 | 92 | ||
93 | #ifndef WIN32 | 93 | #ifndef WIN32 |
94 | signal (SIGCONT, resume); | 94 | signal (SIGCONT, resume); |
95 | #endif | 95 | #endif |
96 | #ifdef DESKTOP | 96 | #ifdef DESKTOP |
97 | a.setMainWidget(&mw); | 97 | a.setMainWidget(&mw); |
98 | mw.show(); | 98 | mw.show(); |
99 | #else | 99 | #else |
100 | // a.showMainWidget( &mw ); | 100 | // a.showMainWidget( &mw ); |
101 | a.showMainDocumentWidget( &mw ); | 101 | a.showMainDocumentWidget( &mw ); |
102 | #endif | 102 | #endif |
103 | int ret = a.exec(); | 103 | int ret = a.exec(); |
104 | 104 | ||
105 | return ret; | 105 | return ret; |
106 | } | 106 | } |