author | drw <drw> | 2005-05-24 00:09:07 (UTC) |
---|---|---|
committer | drw <drw> | 2005-05-24 00:09:07 (UTC) |
commit | 1ce0e947a999c2a98d6f6a78e69a8d1f433d7cba (patch) (unidiff) | |
tree | 2ddbea9f816ad8bec8516dffc72bb42cf1a5b614 | |
parent | 6f01d6a0d9daa537b2aa54ed36ea77e755a463d3 (diff) | |
download | opie-1ce0e947a999c2a98d6f6a78e69a8d1f433d7cba.zip opie-1ce0e947a999c2a98d6f6a78e69a8d1f433d7cba.tar.gz opie-1ce0e947a999c2a98d6f6a78e69a8d1f433d7cba.tar.bz2 |
Resource -> OResource
-rw-r--r-- | noncore/tools/opie-sh/config.in | 2 | ||||
-rw-r--r-- | noncore/tools/opie-sh/fviewer.cpp | 4 | ||||
-rw-r--r-- | noncore/tools/opie-sh/fviewer.h | 1 | ||||
-rw-r--r-- | noncore/tools/opie-sh/mbox.cpp | 8 | ||||
-rw-r--r-- | noncore/tools/opie-sh/mbox.h | 1 | ||||
-rw-r--r-- | noncore/tools/opie-sh/opie-sh.control | 2 | ||||
-rw-r--r-- | noncore/tools/opie-sh/opie-sh.pro | 2 |
7 files changed, 11 insertions, 9 deletions
diff --git a/noncore/tools/opie-sh/config.in b/noncore/tools/opie-sh/config.in index b3ca373..c4e99c3 100644 --- a/noncore/tools/opie-sh/config.in +++ b/noncore/tools/opie-sh/config.in | |||
@@ -2,3 +2,3 @@ | |||
2 | boolean "opie-sh (qdialog frontend allows you to write dialogs from shell scripts)" | 2 | boolean "opie-sh (qdialog frontend allows you to write dialogs from shell scripts)" |
3 | default "y" | 3 | default "y" |
4 | depends ( LIBQPE || LIBQPE-X11 ) | 4 | depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE |
diff --git a/noncore/tools/opie-sh/fviewer.cpp b/noncore/tools/opie-sh/fviewer.cpp index 6f8f054..bef7233 100644 --- a/noncore/tools/opie-sh/fviewer.cpp +++ b/noncore/tools/opie-sh/fviewer.cpp | |||
@@ -16,9 +16,11 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |||
16 | #include "fviewer.h" | 16 | #include "fviewer.h" |
17 | 17 | ||
18 | #include <opie2/oresource.h> | ||
19 | |||
18 | FViewer::FViewer(QString icon, QString filename, QString title, QWidget *parent, const char*name):QWidget(parent, name) | 20 | FViewer::FViewer(QString icon, QString filename, QString title, QWidget *parent, const char*name):QWidget(parent, name) |
19 | { | 21 | { |
20 | QVBoxLayout *layout = new QVBoxLayout(this); | 22 | QVBoxLayout *layout = new QVBoxLayout(this); |
21 | 23 | ||
22 | setIcon(Resource::loadPixmap("opie-sh")); | 24 | setIcon(Opie::Core::OResource::loadPixmap("opie-sh", Opie::Core::OResource::SmallIcon)); |
23 | 25 | ||
24 | textView = new QTextBrowser(this, "textview"); | 26 | textView = new QTextBrowser(this, "textview"); |
diff --git a/noncore/tools/opie-sh/fviewer.h b/noncore/tools/opie-sh/fviewer.h index cd5206c..e0b3813 100644 --- a/noncore/tools/opie-sh/fviewer.h +++ b/noncore/tools/opie-sh/fviewer.h | |||
@@ -22,5 +22,4 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |||
22 | #include <qtimer.h> | 22 | #include <qtimer.h> |
23 | #include <qdir.h> | 23 | #include <qdir.h> |
24 | #include <qpe/resource.h> | ||
25 | 24 | ||
26 | class FViewer :public QWidget | 25 | class FViewer :public QWidget |
diff --git a/noncore/tools/opie-sh/mbox.cpp b/noncore/tools/opie-sh/mbox.cpp index 04b397d..45145d9 100644 --- a/noncore/tools/opie-sh/mbox.cpp +++ b/noncore/tools/opie-sh/mbox.cpp | |||
@@ -17,4 +17,6 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |||
17 | #include "mbox.h" | 17 | #include "mbox.h" |
18 | 18 | ||
19 | #include <opie2/oresource.h> | ||
20 | |||
19 | MBox::MBox(int w, int h, int type, QString title, QString message, QString *btext0, QString *btext1, QString *btext2, QWidget *parent, const char*name, bool modal, WFlags f):QDialog(parent, name, modal, f) | 21 | MBox::MBox(int w, int h, int type, QString title, QString message, QString *btext0, QString *btext1, QString *btext2, QWidget *parent, const char*name, bool modal, WFlags f):QDialog(parent, name, modal, f) |
20 | { | 22 | { |
@@ -37,11 +39,11 @@ MBox::MBox(int w, int h, int type, QString title, QString message, QString *btex | |||
37 | { | 39 | { |
38 | case 0: | 40 | case 0: |
39 | image->setPixmap(Resource::loadPixmap("opie-sh/info")); | 41 | image->setPixmap(Opie::Core::OResource::loadPixmap("opie-sh/info", Opie::Core::OResource::SmallIcon)); |
40 | break; | 42 | break; |
41 | case 1: | 43 | case 1: |
42 | image->setPixmap(Resource::loadPixmap("opie-sh/warning")); | 44 | image->setPixmap(Opie::Core::OResource::loadPixmap("opie-sh/warning", Opie::Core::OResource::SmallIcon)); |
43 | break; | 45 | break; |
44 | case 2: | 46 | case 2: |
45 | image->setPixmap(Resource::loadPixmap("opie-sh/error")); | 47 | image->setPixmap(Opie::Core::OResource::loadPixmap("opie-sh/error", Opie::Core::OResource::SmallIcon)); |
46 | break; | 48 | break; |
47 | } | 49 | } |
diff --git a/noncore/tools/opie-sh/mbox.h b/noncore/tools/opie-sh/mbox.h index 66c982a..967a0a3 100644 --- a/noncore/tools/opie-sh/mbox.h +++ b/noncore/tools/opie-sh/mbox.h | |||
@@ -15,5 +15,4 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |||
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include <qpe/resource.h> | ||
18 | #include <qdialog.h> | 17 | #include <qdialog.h> |
19 | #include <qstring.h> | 18 | #include <qstring.h> |
diff --git a/noncore/tools/opie-sh/opie-sh.control b/noncore/tools/opie-sh/opie-sh.control index 6627335..67b552f 100644 --- a/noncore/tools/opie-sh/opie-sh.control +++ b/noncore/tools/opie-sh/opie-sh.control | |||
@@ -6,5 +6,5 @@ Maintainer: Thomas Stephens <spiralman@softhome.net> | |||
6 | Architecture: arm | 6 | Architecture: arm |
7 | Version: 0.5$EXTRAVERSION | 7 | Version: 0.5$EXTRAVERSION |
8 | Depends: task-opie-minimal | 8 | Depends: task-opie-minimal, libopiecore2 |
9 | License: GPL | 9 | License: GPL |
10 | Description: A QDialog shell frontend | 10 | Description: A QDialog shell frontend |
diff --git a/noncore/tools/opie-sh/opie-sh.pro b/noncore/tools/opie-sh/opie-sh.pro index 57f7978..b0cf052 100644 --- a/noncore/tools/opie-sh/opie-sh.pro +++ b/noncore/tools/opie-sh/opie-sh.pro | |||
@@ -6,5 +6,5 @@ SOURCES =opie-sh.cpp mbox.cpp fviewer.cpp inputdialog.cpp | |||
6 | INCLUDEPATH +=$(OPIEDIR)/include | 6 | INCLUDEPATH +=$(OPIEDIR)/include |
7 | DEPENDPATH +=$(OPIEDIR)/include | 7 | DEPENDPATH +=$(OPIEDIR)/include |
8 | LIBS +=-lqpe | 8 | LIBS +=-lqpe -lopiecore2 |
9 | TARGET = opie-sh | 9 | TARGET = opie-sh |
10 | 10 | ||