summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh
authorspiralman <spiralman>2002-05-27 00:59:37 (UTC)
committer spiralman <spiralman>2002-05-27 00:59:37 (UTC)
commitd3451ccc7191bc2f761bae12b50c7ce274647bdb (patch) (unidiff)
treef96f3c210de2c91d793d999e19bbcbc81ff02a99 /noncore/tools/opie-sh
parent95d2a3806a39bb31c9cca38c2c6158ecb77818e9 (diff)
downloadopie-d3451ccc7191bc2f761bae12b50c7ce274647bdb.zip
opie-d3451ccc7191bc2f761bae12b50c7ce274647bdb.tar.gz
opie-d3451ccc7191bc2f761bae12b50c7ce274647bdb.tar.bz2
added help files and an icon in the Applications tab
Diffstat (limited to 'noncore/tools/opie-sh') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/opie-sh/fviewer.cpp4
-rw-r--r--noncore/tools/opie-sh/fviewer.h3
-rw-r--r--noncore/tools/opie-sh/opie-sh.control5
-rw-r--r--noncore/tools/opie-sh/opie-sh.cpp16
4 files changed, 20 insertions, 8 deletions
diff --git a/noncore/tools/opie-sh/fviewer.cpp b/noncore/tools/opie-sh/fviewer.cpp
index 5dc09ff..882c72c 100644
--- a/noncore/tools/opie-sh/fviewer.cpp
+++ b/noncore/tools/opie-sh/fviewer.cpp
@@ -17,5 +17,7 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 17
18FViewer::FViewer(QString filename, QString title, QWidget *parent=0, const char*name=0):QWidget(parent, name) 18FViewer::FViewer(QString icon, QString filename, QString title, QWidget *parent=0, const char*name=0):QWidget(parent, name)
19{ 19{
20 QVBoxLayout *layout = new QVBoxLayout(this); 20 QVBoxLayout *layout = new QVBoxLayout(this);
21
22 setIcon(Resource::loadPixmap("opie-sh"));
21 23
diff --git a/noncore/tools/opie-sh/fviewer.h b/noncore/tools/opie-sh/fviewer.h
index 488b6ed..cd5206c 100644
--- a/noncore/tools/opie-sh/fviewer.h
+++ b/noncore/tools/opie-sh/fviewer.h
@@ -23,2 +23,3 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23#include <qdir.h> 23#include <qdir.h>
24#include <qpe/resource.h>
24 25
@@ -28,3 +29,3 @@ class FViewer :public QWidget
28public: 29public:
29 FViewer(QString filename, QString title, QWidget *parent=0, const char*name=0); 30 FViewer(QString icon, QString filename, QString title, QWidget *parent=0, const char*name=0);
30private: 31private:
diff --git a/noncore/tools/opie-sh/opie-sh.control b/noncore/tools/opie-sh/opie-sh.control
index e9b13a5..8f586fe 100644
--- a/noncore/tools/opie-sh/opie-sh.control
+++ b/noncore/tools/opie-sh/opie-sh.control
@@ -1,3 +1,4 @@
1Files: bin/opie-sh pics/opie-sh/*.png 1Files: bin/opie-sh* apps/Applications/opie-sh.desktop pics/opie-sh/*.png help/opie-sh/*.html
2Priority: optional 2Priority: optional
3Package: opie-sh
3Section: opie/applications 4Section: opie/applications
@@ -5,3 +6,3 @@ Maintainer: Thomas Stephens <spiralman@softhome.net>
5Architecture: arm 6Architecture: arm
6Version: 0.4-$SUB_VERSION 7Version: 0.5-$SUB_VERSION
7Depends: opie-base ($QPE_VERSION) 8Depends: opie-base ($QPE_VERSION)
diff --git a/noncore/tools/opie-sh/opie-sh.cpp b/noncore/tools/opie-sh/opie-sh.cpp
index a1b8035..e898cb1 100644
--- a/noncore/tools/opie-sh/opie-sh.cpp
+++ b/noncore/tools/opie-sh/opie-sh.cpp
@@ -130,3 +130,3 @@ void printusage()
130 printf(" -E Makes list input editable\n"); 130 printf(" -E Makes list input editable\n");
131 printf(" -g Disable fullscreen\n"); 131 printf(" -g Disable fullscreen\n\0");
132} 132}
@@ -136,3 +136,3 @@ int fileviewer(QPEApplication *a, int argc, QStringList args)
136 int i; 136 int i;
137 QString filename, title; 137 QString filename, title, icon;
138 bool update=false; 138 bool update=false;
@@ -149,2 +149,7 @@ int fileviewer(QPEApplication *a, int argc, QStringList args)
149 149
150 if(args[i] == "-I")
151 {
152 icon=args[i+1];
153 }
154
150 if(args[i] == "-t") 155 if(args[i] == "-t")
@@ -154,3 +159,3 @@ int fileviewer(QPEApplication *a, int argc, QStringList args)
154 } 159 }
155 FViewer *fview = new FViewer(filename, title, 0, (QString) "fileviewer"); 160 FViewer *fview = new FViewer(icon, filename, title, 0, (QString) "fileviewer");
156 a->setMainWidget(fview); 161 a->setMainWidget(fview);
@@ -195,3 +200,6 @@ int input(int wi, int h, QWidget *w, int argc, QStringList args)
195 { 200 {
196 filename = args[i+1]; 201 if(args[i+1][0] != '-')
202 {
203 filename = args[i+1];
204 }
197 } 205 }