summaryrefslogtreecommitdiff
authorharlekin <harlekin>2003-03-23 14:45:21 (UTC)
committer harlekin <harlekin>2003-03-23 14:45:21 (UTC)
commitfd1b86e8590b34efb38b82953e5bf897a8de1cdf (patch) (unidiff)
tree3e4b84c715084bedf08e33f6f8b1b2db032c5259
parent376aa038c75b3fbccdcb2e81d5b2ac3de787a447 (diff)
downloadopie-fd1b86e8590b34efb38b82953e5bf897a8de1cdf.zip
opie-fd1b86e8590b34efb38b82953e5bf897a8de1cdf.tar.gz
opie-fd1b86e8590b34efb38b82953e5bf897a8de1cdf.tar.bz2
spawn default profile on startup
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/main.cpp2
-rw-r--r--noncore/apps/opie-console/mainwindow.cpp7
2 files changed, 7 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/main.cpp b/noncore/apps/opie-console/main.cpp
index 3b4321a..b17f8e8 100644
--- a/noncore/apps/opie-console/main.cpp
+++ b/noncore/apps/opie-console/main.cpp
@@ -100,9 +100,9 @@ int main(int argc, char **argv) {
100 it.fixIt(); 100 it.fixIt();
101#endif 101#endif
102 102
103 MainWindow mw; 103 MainWindow mw;
104 mw.setCaption(QObject::tr("Opie console") ); 104 mw.setCaption(QObject::tr("Opie Console") );
105 app.showMainWidget( &mw ); 105 app.showMainWidget( &mw );
106 106
107 int ap = app.exec(); 107 int ap = app.exec();
108 108
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp
index 3acbfad..c48116d 100644
--- a/noncore/apps/opie-console/mainwindow.cpp
+++ b/noncore/apps/opie-console/mainwindow.cpp
@@ -53,8 +53,9 @@ MainWindow::MainWindow(QWidget *parent, const char *name, WFlags) : QMainWindow(
53 populateScripts(); 53 populateScripts();
54} 54}
55 55
56void MainWindow::initUI() { 56void MainWindow::initUI() {
57
57 setToolBarsMovable( FALSE ); 58 setToolBarsMovable( FALSE );
58 59
59 /* tool bar for the menu */ 60 /* tool bar for the menu */
60 m_tool = new QToolBar( this ); 61 m_tool = new QToolBar( this );
@@ -119,13 +120,16 @@ void MainWindow::initUI() {
119 this, SLOT(slotDisconnect() ) ); 120 this, SLOT(slotDisconnect() ) );
120 121
121 m_console->insertSeparator(); 122 m_console->insertSeparator();
122 123
124
123 m_quickLaunch = new QAction( tr("QuickLaunch"), Resource::loadPixmap("console/konsole_mini"), QString::null, 0, this, 0 ); 125 m_quickLaunch = new QAction( tr("QuickLaunch"), Resource::loadPixmap("console/konsole_mini"), QString::null, 0, this, 0 );
124 m_quickLaunch->addTo( m_icons ); 126 m_quickLaunch->addTo( m_icons );
125 connect( m_quickLaunch, SIGNAL( activated() ), 127 connect( m_quickLaunch, SIGNAL( activated() ),
126 this, SLOT( slotQuickLaunch() ) ); 128 this, SLOT( slotQuickLaunch() ) );
127 129
130 QWhatsThis::add( m_icons, tr( "The shell button launches the \"default\" profile. If there is none default values are taken" ) );
131
128 m_transfer = new QAction( tr("Transfer file..."), Resource::loadPixmap("pass") , QString::null, 132 m_transfer = new QAction( tr("Transfer file..."), Resource::loadPixmap("pass") , QString::null,
129 0, this, 0 ); 133 0, this, 0 );
130 m_transfer->addTo( m_console ); 134 m_transfer->addTo( m_console );
131 connect(m_transfer, SIGNAL(activated() ), 135 connect(m_transfer, SIGNAL(activated() ),
@@ -234,9 +238,9 @@ void MainWindow::initUI() {
234 this, SLOT(slotPaste() ) ); 238 this, SLOT(slotPaste() ) );
235 239
236 240
237 newCon->addTo( m_icons ); 241 newCon->addTo( m_icons );
238 m_setProfiles->addTo( m_icons ); 242 //m_setProfiles->addTo( m_icons );
239 paste->addTo( m_icons ); 243 paste->addTo( m_icons );
240 m_openKeys->addTo(m_icons); 244 m_openKeys->addTo(m_icons);
241 m_fullscreen->addTo( m_icons ); 245 m_fullscreen->addTo( m_icons );
242 246
@@ -261,8 +265,9 @@ void MainWindow::initUI() {
261 connect(m_consoleWindow, SIGNAL(activated(Session*) ), 265 connect(m_consoleWindow, SIGNAL(activated(Session*) ),
262 this, SLOT(slotSessionChanged(Session*) ) ); 266 this, SLOT(slotSessionChanged(Session*) ) );
263 setCentralWidget( m_consoleWindow ); 267 setCentralWidget( m_consoleWindow );
264 268
269 slotQuickLaunch();
265} 270}
266 271
267ProfileManager* MainWindow::manager() { 272ProfileManager* MainWindow::manager() {
268 return m_manager; 273 return m_manager;