-rw-r--r-- | noncore/net/wellenreiter/gui/resource.cpp | 15 | ||||
-rw-r--r-- | noncore/net/wellenreiter/gui/resource.h | 6 | ||||
-rw-r--r-- | noncore/net/wellenreiter/lib/lib.pro | 16 | ||||
-rwxr-xr-x | noncore/net/wellenreiter/makedist.sh | 20 |
4 files changed, 39 insertions, 18 deletions
diff --git a/noncore/net/wellenreiter/gui/resource.cpp b/noncore/net/wellenreiter/gui/resource.cpp index 7683329..a39bbcc 100644 --- a/noncore/net/wellenreiter/gui/resource.cpp +++ b/noncore/net/wellenreiter/gui/resource.cpp | |||
@@ -19,2 +19,5 @@ | |||
19 | 19 | ||
20 | #include <qpixmap.h> | ||
21 | #include <qiconset.h> | ||
22 | |||
20 | namespace Resource | 23 | namespace Resource |
@@ -34,2 +37,14 @@ QPixmap loadPixmap( const QString& pix ) | |||
34 | 37 | ||
38 | QIconSet loadIconSet( const QString& pix ) | ||
39 | { | ||
40 | QString filename; | ||
41 | filename.sprintf( "%s/%s.png", (const char*) PIXMAPPATH, (const char*) pix ); | ||
42 | QPixmap pixmap( filename ); | ||
43 | if ( pixmap.isNull() ) | ||
44 | { | ||
45 | qDebug( "Wellenreiter::Resource: can't find pixmap " + filename ); | ||
46 | } | ||
47 | return QIconSet( pixmap ); | ||
48 | }; | ||
49 | |||
35 | }; | 50 | }; |
diff --git a/noncore/net/wellenreiter/gui/resource.h b/noncore/net/wellenreiter/gui/resource.h index 6a3cc99..8788c6e 100644 --- a/noncore/net/wellenreiter/gui/resource.h +++ b/noncore/net/wellenreiter/gui/resource.h | |||
@@ -18,3 +18,6 @@ | |||
18 | 18 | ||
19 | #include <qpixmap.h> | 19 | #include <qstring.h> |
20 | |||
21 | class QPixmap; | ||
22 | class QIconSet; | ||
20 | 23 | ||
@@ -23,2 +26,3 @@ namespace Resource | |||
23 | QPixmap loadPixmap( const QString& ); | 26 | QPixmap loadPixmap( const QString& ); |
27 | QIconSet loadIconSet( const QString& ); | ||
24 | } | 28 | } |
diff --git a/noncore/net/wellenreiter/lib/lib.pro b/noncore/net/wellenreiter/lib/lib.pro index 0dcc25a..75eba76 100644 --- a/noncore/net/wellenreiter/lib/lib.pro +++ b/noncore/net/wellenreiter/lib/lib.pro | |||
@@ -4,13 +4,19 @@ CONFIG = qt warn_on debug | |||
4 | 4 | ||
5 | HEADERS = ../libopie2/opieui/olistview.h \ | 5 | HEADERS = ../libopie2/opiecore/odebug.h \ |
6 | ../libopie2/opieui/olistview.h \ | ||
6 | ../libopie2/opienet/onetutils.h \ | 7 | ../libopie2/opienet/onetutils.h \ |
7 | ../libopie2/opienet/omanufacturerdb.h \ | 8 | ../libopie2/opienet/omanufacturerdb.h \ |
9 | ../libopie2/opienet/odebugmapper.h \ | ||
8 | ../libopie2/opienet/onetwork.h \ | 10 | ../libopie2/opienet/onetwork.h \ |
9 | ../libopie2/opienet/opcap.h | 11 | ../libopie2/opienet/opcap.h \ |
12 | ../libopie2/opienet/ostation.h | ||
10 | 13 | ||
11 | SOURCES = ../libopie2/opieui/olistview.cpp \ | 14 | SOURCES = ../libopie2/opiecore/odebug.cpp \ |
15 | ../libopie2/opieui/olistview.cpp \ | ||
12 | ../libopie2/opienet/onetutils.cpp \ | 16 | ../libopie2/opienet/onetutils.cpp \ |
13 | ../libopie2/opienet/omanufacturerdb.cpp \ | 17 | ../libopie2/opienet/omanufacturerdb.cpp \ |
18 | ../libopie2/opienet/odebugmapper.cpp \ | ||
14 | ../libopie2/opienet/onetwork.cpp \ | 19 | ../libopie2/opienet/onetwork.cpp \ |
15 | ../libopie2/opienet/opcap.cpp | 20 | ../libopie2/opienet/opcap.cpp \ |
21 | ../libopie2/opienet/ostation.h | ||
16 | 22 | ||
@@ -21,2 +27,2 @@ INTERFACES = | |||
21 | TARGET = wellenreiter | 27 | TARGET = wellenreiter |
22 | VERSION = 1.0.0 | 28 | VERSION = 1.0.2 |
diff --git a/noncore/net/wellenreiter/makedist.sh b/noncore/net/wellenreiter/makedist.sh index ccb9c85..6a0bb26 100755 --- a/noncore/net/wellenreiter/makedist.sh +++ b/noncore/net/wellenreiter/makedist.sh | |||
@@ -1,2 +1,2 @@ | |||
1 | VERSION=2-1.0.1-cvs | 1 | VERSION=2-1.0.2 |
2 | 2 | ||
@@ -19,2 +19,3 @@ OUTPUT=$TMPDIR/output | |||
19 | 19 | ||
20 | mkdir -p $TMPDIR/libopie2/opiecore | ||
20 | mkdir -p $TMPDIR/libopie2/opieui | 21 | mkdir -p $TMPDIR/libopie2/opieui |
@@ -30,16 +31,10 @@ cp -dfR $OPIEDIR/etc/manufacturers $OUTPUT/share/wellenreiter/ | |||
30 | 31 | ||
31 | # take care about sourcefiles | 32 | # take care about sourcefiles from libopie2 |
32 | 33 | ||
33 | FILES="libopie2/opienet/onetwork.h libopie2/opienet/onetwork.cpp \ | 34 | cp -dfR $OPIEDIR/libopie2/opienet/*.* $TMPDIR/libopie2/opienet |
34 | libopie2/opienet/opcap.h libopie2/opienet/opcap.cpp \ | 35 | cp -dfR $OPIEDIR/libopie2/opiecore/*.* $TMPDIR/libopie2/opiecore |
35 | libopie2/opienet/802_11_user.h libopie2/opienet/dhcp.h libopie2/opienet/udp_ports.h \ | 36 | cp -dfR $OPIEDIR/libopie2/opieui/olistview.* $TMPDIR/libopie2/opieui |
36 | libopie2/opienet/onetutils.h libopie2/opienet/onetutils.cpp \ | ||
37 | libopie2/opienet/omanufacturerdb.h libopie2/opienet/omanufacturerdb.cpp \ | ||
38 | libopie2/opieui/olistview.cpp libopie2/opieui/olistview.h" | ||
39 | |||
40 | for i in $FILES | ||
41 | do cp -dfR $OPIEDIR/$i $TMPDIR/$i | ||
42 | done | ||
43 | 37 | ||
44 | # make includes | 38 | # make includes |
39 | |||
45 | pushd $TMPDIR/include/opie2 | 40 | pushd $TMPDIR/include/opie2 |
@@ -47,2 +42,3 @@ ln -sf ../../libopie2/opieui/*.h . | |||
47 | ln -sf ../../libopie2/opienet/*.h . | 42 | ln -sf ../../libopie2/opienet/*.h . |
43 | ln -sf ../../libopie2/opiecore/*.h . | ||
48 | popd | 44 | popd |