author | zautrix <zautrix> | 2004-08-06 21:32:25 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-08-06 21:32:25 (UTC) |
commit | acc0637eb0965d66b96d138d74514acf2cf24792 (patch) (unidiff) | |
tree | 6787abd671406bbdeb2e3387aa39ba4806d84689 /microkde | |
parent | 2087f0a25354897ff9b987093e1c6716d7bd967b (diff) | |
download | kdepimpi-acc0637eb0965d66b96d138d74514acf2cf24792.zip kdepimpi-acc0637eb0965d66b96d138d74514acf2cf24792.tar.gz kdepimpi-acc0637eb0965d66b96d138d74514acf2cf24792.tar.bz2 |
more licence stuff
-rw-r--r-- | microkde/kapplication.cpp | 52 | ||||
-rw-r--r-- | microkde/kapplication.h | 1 |
2 files changed, 29 insertions, 24 deletions
diff --git a/microkde/kapplication.cpp b/microkde/kapplication.cpp index f0de71e..ad0b78e 100644 --- a/microkde/kapplication.cpp +++ b/microkde/kapplication.cpp | |||
@@ -31,45 +31,49 @@ QString KApplication::randomString(int length) | |||
31 | // so what if I work backwards? | 31 | // so what if I work backwards? |
32 | } | 32 | } |
33 | return str; | 33 | return str; |
34 | } | 34 | } |
35 | int KApplication::execDialog( QDialog* d ) | 35 | int KApplication::execDialog( QDialog* d ) |
36 | { | 36 | { |
37 | if (QApplication::desktop()->width() <= 640 ) | 37 | if (QApplication::desktop()->width() <= 640 ) |
38 | d->showMaximized(); | 38 | d->showMaximized(); |
39 | return d->exec(); | 39 | return d->exec(); |
40 | } | 40 | } |
41 | void KApplication::showLicence() | 41 | void KApplication::showLicence() |
42 | { | 42 | { |
43 | QString fileName ; | 43 | KApplication::showFile( "KDE-Pim/Pi licence", "kdepim/LICENCE.TXT" ); |
44 | QString text; | 44 | } |
45 | |||
46 | void KApplication::showFile(QString caption, QString fn) | ||
47 | { | ||
48 | QString text; | ||
49 | QString fileName; | ||
45 | #ifndef DESKTOP_VERSION | 50 | #ifndef DESKTOP_VERSION |
46 | fileName = getenv("QPEDIR"); | 51 | fileName = getenv("QPEDIR"); |
47 | fileName += "/pics/kdepim/LICENCE.TXT" ; | 52 | fileName += "/pics/" + fn ; |
48 | #else | 53 | #else |
49 | fileName = qApp->applicationDirPath () + "/kdepim/LICENCE.TXT"; | 54 | fileName = qApp->applicationDirPath () + "/" + fn; |
50 | #endif | 55 | #endif |
51 | QFile file( fileName ); | 56 | QFile file( fileName ); |
52 | qDebug("Licence file name %s ",fileName.latin1() ); | 57 | if (!file.open( IO_ReadOnly ) ) { |
53 | if (!file.open( IO_ReadOnly ) ) { | 58 | return ; |
54 | return ; | 59 | } |
55 | } | 60 | QTextStream ts( &file ); |
56 | QTextStream ts( &file ); | 61 | text = ts.read(); |
57 | text = ts.read(); | 62 | file.close(); |
58 | file.close(); | 63 | |
59 | 64 | QDialog dia( 0, "name", true ); ; | |
60 | QDialog dia( 0, "name", true ); ; | 65 | dia.setCaption( caption ); |
61 | dia.setCaption( "KDE-Pim/Pi licence" ); | 66 | QVBoxLayout* lay = new QVBoxLayout( &dia ); |
62 | QVBoxLayout* lay = new QVBoxLayout( &dia ); | 67 | lay->setSpacing( 3 ); |
63 | lay->setSpacing( 3 ); | 68 | lay->setMargin( 3 ); |
64 | lay->setMargin( 3 ); | 69 | QTextBrowser tb ( &dia ); |
65 | QTextBrowser tb ( &dia ); | 70 | lay->addWidget( &tb ); |
66 | lay->addWidget( &tb ); | 71 | tb.setText( text ); |
67 | tb.setText( text ); | ||
68 | #ifdef DESKTOP_VERSION | 72 | #ifdef DESKTOP_VERSION |
69 | dia.resize( 640, 480); | 73 | dia.resize( 640, 480); |
70 | #else | 74 | #else |
71 | dia.showMaximized(); | 75 | dia.showMaximized(); |
72 | #endif | 76 | #endif |
73 | dia.exec(); | 77 | dia.exec(); |
74 | 78 | ||
75 | } | 79 | } |
diff --git a/microkde/kapplication.h b/microkde/kapplication.h index 9515c60..5ae5c00 100644 --- a/microkde/kapplication.h +++ b/microkde/kapplication.h | |||
@@ -9,16 +9,17 @@ class KApplication | |||
9 | public: | 9 | public: |
10 | static int random(); | 10 | static int random(); |
11 | 11 | ||
12 | //US | 12 | //US |
13 | /** | 13 | /** |
14 | * Generates a random string. It operates in the range [A-Za-z0-9] | 14 | * Generates a random string. It operates in the range [A-Za-z0-9] |
15 | * @param length Generate a string of this length. | 15 | * @param length Generate a string of this length. |
16 | * @return the random string | 16 | * @return the random string |
17 | */ | 17 | */ |
18 | static QString randomString(int length); | 18 | static QString randomString(int length); |
19 | static int execDialog( QDialog* ); | 19 | static int execDialog( QDialog* ); |
20 | static void showLicence(); | 20 | static void showLicence(); |
21 | static void showFile(QString caption, QString file); | ||
21 | }; | 22 | }; |
22 | 23 | ||
23 | 24 | ||
24 | #endif | 25 | #endif |