summaryrefslogtreecommitdiff
path: root/noncore/tools/opie-sh/fviewer.cpp
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.cpp
parenta008476dc0612c5c28e5c36eea33b212f68f2ace (diff)
downloadopie-36f5c2e7ebce170c083d75cefdabfbaaf5acdc10.zip
opie-36f5c2e7ebce170c083d75cefdabfbaaf5acdc10.tar.gz
opie-36f5c2e7ebce170c083d75cefdabfbaaf5acdc10.tar.bz2
initial upload
Diffstat (limited to 'noncore/tools/opie-sh/fviewer.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/tools/opie-sh/fviewer.cpp56
1 files changed, 56 insertions, 0 deletions
diff --git a/noncore/tools/opie-sh/fviewer.cpp b/noncore/tools/opie-sh/fviewer.cpp
new file mode 100644
index 0000000..1a0acc6
--- a/dev/null
+++ b/noncore/tools/opie-sh/fviewer.cpp
@@ -0,0 +1,56 @@
+/*
+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 "fviewer.h"
+
+FViewer::FViewer(QString filename, QString title, QWidget *parent=0, const char*name=0):QWidget(parent, name)
+{
+ QVBoxLayout *layout = new QVBoxLayout(this);
+
+ textView = new QTextBrowser(this, "textview");
+ layout->addWidget(textView);
+
+ QString string;
+
+ if(title.isNull())
+ {
+ setCaption(filename);
+ }
+ else
+ {
+ setCaption(title);
+ }
+
+ file = new QFile();
+
+ if(!filename.isNull())
+ {
+ file->setName(filename);
+ file->open(IO_ReadOnly);
+ }
+ else
+ {
+ file->open(IO_ReadOnly, 0);
+ }
+
+ stream = new QTextStream(file);
+
+ string = stream->read();
+ textView->setText(string);
+ textView->mimeSourceFactory()->setFilePath(QDir::currentDirPath());
+ file->close();
+
+}
+