author | harlekin <harlekin> | 2003-03-21 22:29:00 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2003-03-21 22:29:00 (UTC) |
commit | 43b0fded770624c907aae043e88449f80040d7df (patch) (side-by-side diff) | |
tree | 37e92b5da66c34323a831586c21a9c23b0abe261 | |
parent | 07a03b603d964b07d2866e04f480014fadcf1570 (diff) | |
download | opie-43b0fded770624c907aae043e88449f80040d7df.zip opie-43b0fded770624c907aae043e88449f80040d7df.tar.gz opie-43b0fded770624c907aae043e88449f80040d7df.tar.bz2 |
added a button for quicklaunch of a default profile
-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 21 | ||||
-rw-r--r-- | noncore/apps/opie-console/mainwindow.h | 2 | ||||
-rw-r--r-- | noncore/apps/opie-console/terminalwidget.cpp | 0 | ||||
-rw-r--r-- | pics/console/konsole_mini.png | bin | 0 -> 783 bytes |
4 files changed, 23 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index abcdb84..a6fc30b 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp @@ -53,4 +53,5 @@ MainWindow::MainWindow(QWidget *parent, const char *name, WFlags) : QMainWindow( populateScripts(); } + void MainWindow::initUI() { setToolBarsMovable( FALSE ); @@ -120,4 +121,9 @@ void MainWindow::initUI() { m_console->insertSeparator(); + m_quickLaunch = new QAction( tr("QuickLaunch"), Resource::loadPixmap("console/konsole_mini"), QString::null, 0, this, 0 ); + m_quickLaunch->addTo( m_icons ); + connect( m_quickLaunch, SIGNAL( activated() ), + this, SLOT( slotQuickLaunch() ) ); + m_transfer = new QAction( tr("Transfer file..."), Resource::loadPixmap("pass") , QString::null, 0, this, 0 ); @@ -126,4 +132,6 @@ void MainWindow::initUI() { this, SLOT(slotTransfer() ) ); + + /* * immediate change of line wrap policy @@ -403,4 +411,14 @@ void MainWindow::slotTerminate() { } +void MainWindow::slotQuickLaunch() { + Profile prof = manager()->profile( "default" ); + if ( prof.name() == "default" ) { + create( prof ); + } else { + QMessageBox::warning(this, tr("Failure"),tr("please configure one profile named \"default\"")); + } + +} + void MainWindow::slotConfigure() { ConfigDialog conf( manager()->all(), factory() ); @@ -460,4 +478,7 @@ void MainWindow::slotProfile( int id) { create( prof ); } + + + void MainWindow::create( const Profile& prof ) { if(m_curSession) diff --git a/noncore/apps/opie-console/mainwindow.h b/noncore/apps/opie-console/mainwindow.h index 0fac38b..86939c1 100644 --- a/noncore/apps/opie-console/mainwindow.h +++ b/noncore/apps/opie-console/mainwindow.h @@ -68,4 +68,5 @@ private slots: void slotRunScript(int); void slotFullscreen(); + void slotQuickLaunch(); void slotWrap(); void slotSessionChanged( Session* ); @@ -114,4 +115,5 @@ private: QAction* m_connect; QAction* m_disconnect; + QAction* m_quickLaunch; QAction* m_terminate; QAction* m_transfer; diff --git a/noncore/apps/opie-console/terminalwidget.cpp b/noncore/apps/opie-console/terminalwidget.cpp index a8cee93..70f7c9b 100644 --- a/noncore/apps/opie-console/terminalwidget.cpp +++ b/noncore/apps/opie-console/terminalwidget.cpp diff --git a/pics/console/konsole_mini.png b/pics/console/konsole_mini.png Binary files differnew file mode 100644 index 0000000..590a417 --- a/dev/null +++ b/pics/console/konsole_mini.png |