From 43b0fded770624c907aae043e88449f80040d7df Mon Sep 17 00:00:00 2001 From: harlekin Date: Fri, 21 Mar 2003 22:29:00 +0000 Subject: added a button for quicklaunch of a default profile --- (limited to 'noncore/apps') 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 @@ -52,6 +52,7 @@ MainWindow::MainWindow(QWidget *parent, const char *name, WFlags) : QMainWindow( populateProfiles(); populateScripts(); } + void MainWindow::initUI() { setToolBarsMovable( FALSE ); @@ -119,12 +120,19 @@ 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 ); m_transfer->addTo( m_console ); connect(m_transfer, SIGNAL(activated() ), this, SLOT(slotTransfer() ) ); + + /* * immediate change of line wrap policy */ @@ -402,6 +410,16 @@ void MainWindow::slotTerminate() { /* FIXME move to the next session */ } +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() ); conf.showMaximized(); @@ -459,6 +477,9 @@ void MainWindow::slotProfile( int id) { Profile prof = manager()->profile( m_sessionsPop->text( id) ); create( prof ); } + + + void MainWindow::create( const Profile& prof ) { if(m_curSession) if(m_curSession->transferDialog()) m_curSession->transferDialog()->hide(); 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 @@ -67,6 +67,7 @@ private slots: void slotSaveScript(); void slotRunScript(int); void slotFullscreen(); + void slotQuickLaunch(); void slotWrap(); void slotSessionChanged( Session* ); void slotKeyReceived(FKey, ushort, ushort, bool); @@ -113,6 +114,7 @@ private: QPopupMenu* m_scripts; QAction* m_connect; QAction* m_disconnect; + QAction* m_quickLaunch; QAction* m_terminate; QAction* m_transfer; QAction* m_setProfiles; 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 @@ -48,28 +48,28 @@ TerminalWidget::TerminalWidget( const QString& name, QWidget* parent, m_sizeMedium = new QRadioButton(tr("medium"), m_groupSize ); m_sizeLarge = new QRadioButton(tr("large"), m_groupSize ); - m_groupConv = new QHGroupBox(tr("Line-break conversions"), this ); - m_convInbound = new QCheckBox(tr("Inbound"), m_groupConv ); - m_convOutbound = new QCheckBox(tr("Outbound"), m_groupConv ); + m_groupConv = new QHGroupBox( tr("Line-break conversions"), this ); + m_convInbound = new QCheckBox( tr("Inbound"), m_groupConv ); + m_convOutbound = new QCheckBox( tr("Outbound"), m_groupConv ); m_groupOptions = new QHGroupBox( tr("Options"), this ); - m_optionEcho = new QCheckBox(tr("Local echo"), m_groupOptions ); - m_optionWrap = new QCheckBox(tr("Line wrap"), m_groupOptions ); + m_optionEcho = new QCheckBox( tr("Local echo"), m_groupOptions ); + m_optionWrap = new QCheckBox( tr("Line wrap"), m_groupOptions ); - m_lroot = new QVBoxLayout( this ); + m_lroot = new QVBoxLayout( this ); m_typeBox = new QVBoxLayout( m_lroot ); m_colorBox = new QVBoxLayout( m_lroot ); // Layout - m_typeBox->add(m_terminal ); - m_typeBox->add(m_terminalBox ); - m_lroot->add(m_groupSize ); + m_typeBox->add( m_terminal ); + m_typeBox->add( m_terminalBox ); + m_lroot->add( m_groupSize ); - m_colorBox->add( m_colorLabel ); - m_colorBox->add( m_colorCmb ); + m_colorBox->add( m_colorLabel ); + m_colorBox->add( m_colorCmb ); - m_lroot->add(m_groupConv ); - m_lroot->add(m_groupOptions ); + m_lroot->add( m_groupConv ); + m_lroot->add( m_groupOptions ); m_lroot->addStretch( 0 ); // Fill in some options -- cgit v0.9.0.2