summaryrefslogtreecommitdiff
path: root/noncore
authormickeyl <mickeyl>2003-12-20 16:08:41 (UTC)
committer mickeyl <mickeyl>2003-12-20 16:08:41 (UTC)
commit33dfe08454a70d3f9dd6dd154385c40adf6df918 (patch) (unidiff)
treebbd2a62954a3ecb11702f33587206e55c2a962fb /noncore
parentadb369c28cac7600b3912d6a3fdb645f1b1d571d (diff)
downloadopie-33dfe08454a70d3f9dd6dd154385c40adf6df918.zip
opie-33dfe08454a70d3f9dd6dd154385c40adf6df918.tar.gz
opie-33dfe08454a70d3f9dd6dd154385c40adf6df918.tar.bz2
more work towards repairing the x11 version - still far away though
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/resource.cpp15
-rw-r--r--noncore/net/wellenreiter/gui/resource.h6
-rw-r--r--noncore/net/wellenreiter/lib/lib.pro16
-rwxr-xr-xnoncore/net/wellenreiter/makedist.sh20
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
20namespace Resource 23namespace Resource
@@ -34,2 +37,14 @@ QPixmap loadPixmap( const QString& pix )
34 37
38QIconSet 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
21class QPixmap;
22class 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
5HEADERS = ../libopie2/opieui/olistview.h \ 5HEADERS = ../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
11SOURCES = ../libopie2/opieui/olistview.cpp \ 14SOURCES = ../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 =
21TARGET = wellenreiter 27TARGET = wellenreiter
22VERSION = 1.0.0 28VERSION = 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 @@
1VERSION=2-1.0.1-cvs 1VERSION=2-1.0.2
2 2
@@ -19,2 +19,3 @@ OUTPUT=$TMPDIR/output
19 19
20mkdir -p $TMPDIR/libopie2/opiecore
20mkdir -p $TMPDIR/libopie2/opieui 21mkdir -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
33FILES="libopie2/opienet/onetwork.h libopie2/opienet/onetwork.cpp \ 34cp -dfR $OPIEDIR/libopie2/opienet/*.* $TMPDIR/libopie2/opienet
34 libopie2/opienet/opcap.h libopie2/opienet/opcap.cpp \ 35cp -dfR $OPIEDIR/libopie2/opiecore/*.* $TMPDIR/libopie2/opiecore
35 libopie2/opienet/802_11_user.h libopie2/opienet/dhcp.h libopie2/opienet/udp_ports.h \ 36cp -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
40for i in $FILES
41 do cp -dfR $OPIEDIR/$i $TMPDIR/$i
42done
43 37
44# make includes 38# make includes
39
45pushd $TMPDIR/include/opie2 40pushd $TMPDIR/include/opie2
@@ -47,2 +42,3 @@ ln -sf ../../libopie2/opieui/*.h .
47ln -sf ../../libopie2/opienet/*.h . 42ln -sf ../../libopie2/opienet/*.h .
43ln -sf ../../libopie2/opiecore/*.h .
48popd 44popd