author | spiralman <spiralman> | 2003-03-21 20:53:13 (UTC) |
---|---|---|
committer | spiralman <spiralman> | 2003-03-21 20:53:13 (UTC) |
commit | dddd49cc1350f7c38917ac5eda2e9142a89d0774 (patch) (side-by-side diff) | |
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 @@ -56,12 +56,21 @@ MainView::MainView(QWidget *parent, const char *name) : QMainWindow(parent, name //notify me when the text of the browser has changed (like when the user clicks a link) connect(browser, SIGNAL(textChanged()), this, SLOT(textChanged()) ); http = new HttpFactory(browser); + + if( qApp->argc() > 1 ) + { + char **argv = qApp->argv(); + location->setEditText( argv[1] ); + goClicked(); + } } void MainView::goClicked() { + location->insertItem( location->currentText() ); + if(location->currentText().startsWith("http://") ) { location->setEditText(location->currentText().lower()); browser->setMimeSourceFactory(http); 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 @@ -16,8 +16,9 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA #include <qpe/resource.h> #include <qpe/qpetoolbar.h> +#include <qapplication.h> #include <qmainwindow.h> #include <qwidget.h> #include <qtextbrowser.h> #include <qtoolbutton.h> |