author | spiralman <spiralman> | 2003-03-21 21:11:08 (UTC) |
---|---|---|
committer | spiralman <spiralman> | 2003-03-21 21:11:08 (UTC) |
commit | 2afcd6fa6b581f5ec7b3e65fe312ceadebb37ee7 (patch) (unidiff) | |
tree | e5309559f1c024eb0fb9a65021468265e0324349 | |
parent | 3ed4386c2ee0e411fa3a8f9a81c3d6c86855d385 (diff) | |
download | opie-2afcd6fa6b581f5ec7b3e65fe312ceadebb37ee7.zip opie-2afcd6fa6b581f5ec7b3e65fe312ceadebb37ee7.tar.gz opie-2afcd6fa6b581f5ec7b3e65fe312ceadebb37ee7.tar.bz2 |
fixed loading of files from commandline using relative filenames
-rw-r--r-- | noncore/net/ubrowser/mainview.cpp | 7 | ||||
-rw-r--r-- | noncore/net/ubrowser/mainview.h | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/noncore/net/ubrowser/mainview.cpp b/noncore/net/ubrowser/mainview.cpp index 7931d1a..d3f4c57 100644 --- a/noncore/net/ubrowser/mainview.cpp +++ b/noncore/net/ubrowser/mainview.cpp | |||
@@ -16,85 +16,90 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |||
16 | 16 | ||
17 | 17 | ||
18 | #include "mainview.h" | 18 | #include "mainview.h" |
19 | 19 | ||
20 | MainView::MainView(QWidget *parent, const char *name) : QMainWindow(parent, name) | 20 | MainView::MainView(QWidget *parent, const char *name) : QMainWindow(parent, name) |
21 | { | 21 | { |
22 | setIcon( Resource::loadPixmap( "remote" ) ); | 22 | setIcon( Resource::loadPixmap( "remote" ) ); |
23 | setCaption("uBrowser"); | 23 | setCaption("uBrowser"); |
24 | 24 | ||
25 | setToolBarsMovable( false ); | 25 | setToolBarsMovable( false ); |
26 | 26 | ||
27 | QPEToolBar *toolbar = new QPEToolBar(this, "toolbar"); | 27 | QPEToolBar *toolbar = new QPEToolBar(this, "toolbar"); |
28 | back = new QToolButton(Resource::loadPixmap("ubrowser/back"), 0, 0, 0, 0, toolbar, "back"); | 28 | back = new QToolButton(Resource::loadPixmap("ubrowser/back"), 0, 0, 0, 0, toolbar, "back"); |
29 | forward = new QToolButton(Resource::loadPixmap("ubrowser/forward"), 0, 0, 0, 0, toolbar, "forward"); | 29 | forward = new QToolButton(Resource::loadPixmap("ubrowser/forward"), 0, 0, 0, 0, toolbar, "forward"); |
30 | home = new QToolButton(Resource::loadPixmap("ubrowser/home"), 0, 0, 0, 0, toolbar, "home"); | 30 | home = new QToolButton(Resource::loadPixmap("ubrowser/home"), 0, 0, 0, 0, toolbar, "home"); |
31 | location = new QComboBox(true, toolbar, "location"); | 31 | location = new QComboBox(true, toolbar, "location"); |
32 | go = new QToolButton(Resource::loadPixmap("ubrowser/go"), 0, 0, 0, 0, toolbar, "go"); | 32 | go = new QToolButton(Resource::loadPixmap("ubrowser/go"), 0, 0, 0, 0, toolbar, "go"); |
33 | 33 | ||
34 | toolbar->setStretchableWidget(location); | 34 | toolbar->setStretchableWidget(location); |
35 | toolbar->setHorizontalStretchable(true); | 35 | toolbar->setHorizontalStretchable(true); |
36 | 36 | ||
37 | addToolBar(toolbar); | 37 | addToolBar(toolbar); |
38 | 38 | ||
39 | browser = new QTextBrowser(this, "browser"); | 39 | browser = new QTextBrowser(this, "browser"); |
40 | setCentralWidget(browser); | 40 | setCentralWidget(browser); |
41 | 41 | ||
42 | //make the button take you to the location | 42 | //make the button take you to the location |
43 | connect(go, SIGNAL(clicked()), this, SLOT(goClicked()) ); | 43 | connect(go, SIGNAL(clicked()), this, SLOT(goClicked()) ); |
44 | connect(location->lineEdit(), SIGNAL(returnPressed()), this, SLOT(goClicked()) ); | 44 | connect(location->lineEdit(), SIGNAL(returnPressed()), this, SLOT(goClicked()) ); |
45 | 45 | ||
46 | //make back, forward and home do their thing (isnt QTextBrowser great?) | 46 | //make back, forward and home do their thing (isnt QTextBrowser great?) |
47 | connect(back, SIGNAL(clicked()), browser, SLOT(backward()) ); | 47 | connect(back, SIGNAL(clicked()), browser, SLOT(backward()) ); |
48 | connect(forward, SIGNAL(clicked()), browser, SLOT(forward()) ); | 48 | connect(forward, SIGNAL(clicked()), browser, SLOT(forward()) ); |
49 | connect(home, SIGNAL(clicked()), browser, SLOT(home()) ); | 49 | connect(home, SIGNAL(clicked()), browser, SLOT(home()) ); |
50 | 50 | ||
51 | //make back and forward buttons be enabled, only when you can go back or forward (again, i love QTextBrowser) | 51 | //make back and forward buttons be enabled, only when you can go back or forward (again, i love QTextBrowser) |
52 | //this doesnt seem to work, but doesnt break anything either... | 52 | //this doesnt seem to work, but doesnt break anything either... |
53 | connect(browser, SIGNAL(backwardAvailable(bool)), back, SLOT(setOn(bool)) ); | 53 | connect(browser, SIGNAL(backwardAvailable(bool)), back, SLOT(setOn(bool)) ); |
54 | connect(browser, SIGNAL(forwardAvailable(bool)), forward, SLOT(setOn(bool)) ); | 54 | connect(browser, SIGNAL(forwardAvailable(bool)), forward, SLOT(setOn(bool)) ); |
55 | 55 | ||
56 | //notify me when the text of the browser has changed (like when the user clicks a link) | 56 | //notify me when the text of the browser has changed (like when the user clicks a link) |
57 | connect(browser, SIGNAL(textChanged()), this, SLOT(textChanged()) ); | 57 | connect(browser, SIGNAL(textChanged()), this, SLOT(textChanged()) ); |
58 | 58 | ||
59 | http = new HttpFactory(browser); | 59 | http = new HttpFactory(browser); |
60 | 60 | ||
61 | if( qApp->argc() > 1 ) | 61 | if( qApp->argc() > 1 ) |
62 | { | 62 | { |
63 | char **argv = qApp->argv(); | 63 | char **argv = qApp->argv(); |
64 | location->setEditText( argv[1] ); | 64 | QString *argv1 = new QString( argv[1] ); |
65 | if( !argv1->startsWith( "http://" ) && !argv1->startsWith( "/" ) ) | ||
66 | { | ||
67 | argv1->insert( 0, QDir::currentDirPath()+"/" ); | ||
68 | } | ||
69 | location->setEditText( *argv1 ); | ||
65 | goClicked(); | 70 | goClicked(); |
66 | } | 71 | } |
67 | } | 72 | } |
68 | 73 | ||
69 | void MainView::goClicked() | 74 | void MainView::goClicked() |
70 | { | 75 | { |
71 | location->insertItem( location->currentText() ); | 76 | location->insertItem( location->currentText() ); |
72 | 77 | ||
73 | if(location->currentText().startsWith("http://") ) | 78 | if(location->currentText().startsWith("http://") ) |
74 | { | 79 | { |
75 | location->setEditText(location->currentText().lower()); | 80 | location->setEditText(location->currentText().lower()); |
76 | browser->setMimeSourceFactory(http); | 81 | browser->setMimeSourceFactory(http); |
77 | printf("MainView::goClicked: using http source factory\n"); | 82 | printf("MainView::goClicked: using http source factory\n"); |
78 | } | 83 | } |
79 | else | 84 | else |
80 | { | 85 | { |
81 | browser->setMimeSourceFactory(QMimeSourceFactory::defaultFactory()); | 86 | browser->setMimeSourceFactory(QMimeSourceFactory::defaultFactory()); |
82 | printf("MainView::goClicked: using default source factory\n"); | 87 | printf("MainView::goClicked: using default source factory\n"); |
83 | } | 88 | } |
84 | 89 | ||
85 | browser->setSource(location->currentText()); | 90 | browser->setSource(location->currentText()); |
86 | } | 91 | } |
87 | 92 | ||
88 | void MainView::textChanged() | 93 | void MainView::textChanged() |
89 | { | 94 | { |
90 | if(browser->documentTitle().isNull()) | 95 | if(browser->documentTitle().isNull()) |
91 | { | 96 | { |
92 | setCaption(browser->source() + " - uBrowser"); | 97 | setCaption(browser->source() + " - uBrowser"); |
93 | } | 98 | } |
94 | else | 99 | else |
95 | { | 100 | { |
96 | setCaption(browser->documentTitle() + " - uBrowser"); | 101 | setCaption(browser->documentTitle() + " - uBrowser"); |
97 | } | 102 | } |
98 | 103 | ||
99 | location->setEditText(browser->source()); | 104 | location->setEditText(browser->source()); |
100 | } | 105 | } |
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 | |||
@@ -1,49 +1,50 @@ | |||
1 | /* | 1 | /* |
2 | Opie-uBrowser. a very small web browser, using on QTextBrowser for html display/parsing | 2 | Opie-uBrowser. a very small web browser, using on QTextBrowser for html display/parsing |
3 | Copyright (C) 2002 Thomas Stephens | 3 | Copyright (C) 2002 Thomas Stephens |
4 | 4 | ||
5 | This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public | 5 | This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public |
6 | License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later | 6 | License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later |
7 | version. | 7 | version. |
8 | 8 | ||
9 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the | 9 | This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the |
10 | implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General | 10 | implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General |
11 | Public License for more details. | 11 | Public License for more details. |
12 | 12 | ||
13 | You should have received a copy of the GNU General Public License along with this program; if not, write to the Free | 13 | You should have received a copy of the GNU General Public License along with this program; if not, write to the Free |
14 | Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 14 | Software 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 | ||
33 | class MainView : public QMainWindow | 34 | class MainView : public QMainWindow |
34 | { | 35 | { |
35 | Q_OBJECT | 36 | Q_OBJECT |
36 | public: | 37 | public: |
37 | MainView(QWidget *parent=0, const char *name=0); | 38 | MainView(QWidget *parent=0, const char *name=0); |
38 | public slots: | 39 | public slots: |
39 | void goClicked(); | 40 | void goClicked(); |
40 | void textChanged(); | 41 | void textChanged(); |
41 | private: | 42 | private: |
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 | }; |