author | spiralman <spiralman> | 2003-03-21 20:53:13 (UTC) |
---|---|---|
committer | spiralman <spiralman> | 2003-03-21 20:53:13 (UTC) |
commit | dddd49cc1350f7c38917ac5eda2e9142a89d0774 (patch) (unidiff) | |
tree | 887dc189d755924ae042d766a8ed7c59d35cc9db | |
parent | baada724494f774e6eb2afc0eebc499c6006c586 (diff) | |
download | opie-dddd49cc1350f7c38917ac5eda2e9142a89d0774.zip opie-dddd49cc1350f7c38917ac5eda2e9142a89d0774.tar.gz opie-dddd49cc1350f7c38917ac5eda2e9142a89d0774.tar.bz2 |
added support for specifying a file or url at the command line (currently must be first argument)
-rw-r--r-- | noncore/net/ubrowser/mainview.cpp | 9 | ||||
-rw-r--r-- | noncore/net/ubrowser/mainview.h | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/noncore/net/ubrowser/mainview.cpp b/noncore/net/ubrowser/mainview.cpp index 179fa6b..7931d1a 100644 --- a/noncore/net/ubrowser/mainview.cpp +++ b/noncore/net/ubrowser/mainview.cpp | |||
@@ -57,10 +57,19 @@ MainView::MainView(QWidget *parent, const char *name) : QMainWindow(parent, name | |||
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 | |||
61 | if( qApp->argc() > 1 ) | ||
62 | { | ||
63 | char **argv = qApp->argv(); | ||
64 | location->setEditText( argv[1] ); | ||
65 | goClicked(); | ||
66 | } | ||
60 | } | 67 | } |
61 | 68 | ||
62 | void MainView::goClicked() | 69 | void MainView::goClicked() |
63 | { | 70 | { |
71 | location->insertItem( location->currentText() ); | ||
72 | |||
64 | if(location->currentText().startsWith("http://") ) | 73 | if(location->currentText().startsWith("http://") ) |
65 | { | 74 | { |
66 | location->setEditText(location->currentText().lower()); | 75 | location->setEditText(location->currentText().lower()); |
diff --git a/noncore/net/ubrowser/mainview.h b/noncore/net/ubrowser/mainview.h index bd9d19c..c786eb9 100644 --- a/noncore/net/ubrowser/mainview.h +++ b/noncore/net/ubrowser/mainview.h | |||
@@ -17,6 +17,7 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |||
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 <qmainwindow.h> | 21 | #include <qmainwindow.h> |
21 | #include <qwidget.h> | 22 | #include <qwidget.h> |
22 | #include <qtextbrowser.h> | 23 | #include <qtextbrowser.h> |