summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/fviewer.h
authorspiralman <spiralman>2002-05-17 15:29:12 (UTC)
committer spiralman <spiralman>2002-05-17 15:29:12 (UTC)
commit36f5c2e7ebce170c083d75cefdabfbaaf5acdc10 (patch) (side-by-side diff)
tree968f79ff7f54fb0d034015fbd7454185e6e18dbf /noncore/tools/opie-sh/fviewer.h
parenta008476dc0612c5c28e5c36eea33b212f68f2ace (diff)
downloadopie-36f5c2e7ebce170c083d75cefdabfbaaf5acdc10.zip
opie-36f5c2e7ebce170c083d75cefdabfbaaf5acdc10.tar.gz
opie-36f5c2e7ebce170c083d75cefdabfbaaf5acdc10.tar.bz2
initial upload
Diffstat (limited to 'noncore/tools/opie-sh/fviewer.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/opie-sh/fviewer.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/noncore/tools/opie-sh/fviewer.h b/noncore/tools/opie-sh/fviewer.h
new file mode 100644
index 0000000..488b6ed
--- a/dev/null
+++ b/noncore/tools/opie-sh/fviewer.h
@@ -0,0 +1,35 @@
+/*
+Opie-sh. convinience app to allow you to use qdialogs in scripts (mainly shell scripts)
+Copyright (C) 2002 Thomas Stephens
+
+This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
+License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later
+version.
+
+This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
+implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
+Public License for more details.
+
+You should have received a copy of the GNU General Public License along with this program; if not, write to the Free
+Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+
+#include <qwidget.h>
+#include <qfile.h>
+#include <qtextstream.h>
+#include <qtextbrowser.h>
+#include <qlayout.h>
+#include <qtimer.h>
+#include <qdir.h>
+
+class FViewer :public QWidget
+{
+ Q_OBJECT
+public:
+ FViewer(QString filename, QString title, QWidget *parent=0, const char*name=0);
+private:
+ QFile *file;
+ QTextBrowser *textView;
+ QTextStream *stream;
+ QTimer *timer;
+};