summaryrefslogtreecommitdiff
path: root/noncore/net/ubrowser/mainview.h
authorspiralman <spiralman>2002-07-19 18:37:09 (UTC)
committer spiralman <spiralman>2002-07-19 18:37:09 (UTC)
commit3d98febb63ff5dcbd2a711b6f120aa5e00a0b337 (patch) (side-by-side diff)
treef4ca92851ae0f75a5d33c0badd7e81c9227b3571 /noncore/net/ubrowser/mainview.h
parente6b8378c45c717c11172b5af124aba6a0c6aecd3 (diff)
downloadopie-3d98febb63ff5dcbd2a711b6f120aa5e00a0b337.zip
opie-3d98febb63ff5dcbd2a711b6f120aa5e00a0b337.tar.gz
opie-3d98febb63ff5dcbd2a711b6f120aa5e00a0b337.tar.bz2
initial add of ubrowser source
Diffstat (limited to 'noncore/net/ubrowser/mainview.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/ubrowser/mainview.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/noncore/net/ubrowser/mainview.h b/noncore/net/ubrowser/mainview.h
new file mode 100644
index 0000000..bd9d19c
--- a/dev/null
+++ b/noncore/net/ubrowser/mainview.h
@@ -0,0 +1,48 @@
+/*
+Opie-uBrowser. a very small web browser, using on QTextBrowser for html display/parsing
+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 <qpe/resource.h>
+#include <qpe/qpetoolbar.h>
+
+#include <qmainwindow.h>
+#include <qwidget.h>
+#include <qtextbrowser.h>
+#include <qtoolbutton.h>
+#include <qcombobox.h>
+#include <qlayout.h>
+#include <qlineedit.h>
+
+#include <stdio.h>
+
+#include "httpfactory.h"
+
+class MainView : public QMainWindow
+{
+ Q_OBJECT
+public:
+ MainView(QWidget *parent=0, const char *name=0);
+public slots:
+ void goClicked();
+ void textChanged();
+private:
+ QToolButton *back;
+ QToolButton *forward;
+ QToolButton *home;
+ QToolButton *go;
+ QComboBox *location;
+ QTextBrowser *browser;
+ HttpFactory *http;
+};