summaryrefslogtreecommitdiff
path: root/noncore/net/ubrowser/mainview.h
authorspiralman <spiralman>2003-03-21 21:11:08 (UTC)
committer spiralman <spiralman>2003-03-21 21:11:08 (UTC)
commit2afcd6fa6b581f5ec7b3e65fe312ceadebb37ee7 (patch) (unidiff)
treee5309559f1c024eb0fb9a65021468265e0324349 /noncore/net/ubrowser/mainview.h
parent3ed4386c2ee0e411fa3a8f9a81c3d6c86855d385 (diff)
downloadopie-2afcd6fa6b581f5ec7b3e65fe312ceadebb37ee7.zip
opie-2afcd6fa6b581f5ec7b3e65fe312ceadebb37ee7.tar.gz
opie-2afcd6fa6b581f5ec7b3e65fe312ceadebb37ee7.tar.bz2
fixed loading of files from commandline using relative filenames
Diffstat (limited to 'noncore/net/ubrowser/mainview.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/ubrowser/mainview.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/noncore/net/ubrowser/mainview.h b/noncore/net/ubrowser/mainview.h
index c786eb9..1a9b0db 100644
--- a/noncore/net/ubrowser/mainview.h
+++ b/noncore/net/ubrowser/mainview.h
@@ -4,46 +4,47 @@ Copyright (C) 2002 Thomas Stephens
4 4
5This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public 5This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
6License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later 6License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later
7version. 7version.
8 8
9This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the 9This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
10implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General 10implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
11Public License for more details. 11Public License for more details.
12 12
13You should have received a copy of the GNU General Public License along with this program; if not, write to the Free 13You should have received a copy of the GNU General Public License along with this program; if not, write to the Free
14Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 14Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15*/ 15*/
16 16
17#include <qpe/resource.h> 17#include <qpe/resource.h>
18#include <qpe/qpetoolbar.h> 18#include <qpe/qpetoolbar.h>
19 19
20#include <qapplication.h> 20#include <qapplication.h>
21#include <qmainwindow.h> 21#include <qmainwindow.h>
22#include <qwidget.h> 22#include <qwidget.h>
23#include <qtextbrowser.h> 23#include <qtextbrowser.h>
24#include <qtoolbutton.h> 24#include <qtoolbutton.h>
25#include <qcombobox.h> 25#include <qcombobox.h>
26#include <qlayout.h> 26#include <qlayout.h>
27#include <qlineedit.h> 27#include <qlineedit.h>
28#include <qdir.h>
28 29
29#include <stdio.h> 30#include <stdio.h>
30 31
31#include "httpfactory.h" 32#include "httpfactory.h"
32 33
33class MainView : public QMainWindow 34class MainView : public QMainWindow
34{ 35{
35 Q_OBJECT 36 Q_OBJECT
36public: 37public:
37 MainView(QWidget *parent=0, const char *name=0); 38 MainView(QWidget *parent=0, const char *name=0);
38public slots: 39public slots:
39 void goClicked(); 40 void goClicked();
40 void textChanged(); 41 void textChanged();
41private: 42private:
42 QToolButton *back; 43 QToolButton *back;
43 QToolButton *forward; 44 QToolButton *forward;
44 QToolButton *home; 45 QToolButton *home;
45 QToolButton *go; 46 QToolButton *go;
46 QComboBox *location; 47 QComboBox *location;
47 QTextBrowser *browser; 48 QTextBrowser *browser;
48 HttpFactory *http; 49 HttpFactory *http;
49}; 50};