summaryrefslogtreecommitdiff
path: root/noncore/apps
authorharlekin <harlekin>2002-10-24 12:22:18 (UTC)
committer harlekin <harlekin>2002-10-24 12:22:18 (UTC)
commit23b602802d2c02b20a8c6a9bf8c3785b9ca97b43 (patch) (side-by-side diff)
tree9af1c9f623316eb888ae525efaeb3a99169ce82d /noncore/apps
parentacf708cee945b8b843b0132672d79f5c4571c22b (diff)
downloadopie-23b602802d2c02b20a8c6a9bf8c3785b9ca97b43.zip
opie-23b602802d2c02b20a8c6a9bf8c3785b9ca97b43.tar.gz
opie-23b602802d2c02b20a8c6a9bf8c3785b9ca97b43.tar.bz2
taken most quickbutton stuff out now and also set the nicer icon again for keys
Diffstat (limited to 'noncore/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/mainwindow.cpp10
-rw-r--r--noncore/apps/opie-console/mainwindow.h3
2 files changed, 3 insertions, 10 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp
index 02a3fa9..ddaaf1b 100644
--- a/noncore/apps/opie-console/mainwindow.cpp
+++ b/noncore/apps/opie-console/mainwindow.cpp
@@ -26,7 +26,6 @@
#include "function_keyboard.h"
#include "emulation_handler.h"
#include "script.h"
-#include "quick_button.h"
@@ -174,7 +173,7 @@ void MainWindow::initUI() {
* action that open/closes the keyboard
*/
m_openKeys = new QAction (tr("Open Keyboard..."),
- Resource::loadPixmap( "down" ),
+ Resource::loadPixmap( "console/keys/keyboard_icon" ),
QString::null, 0, this, 0);
m_openKeys->setToggleAction(true);
@@ -227,12 +226,6 @@ void MainWindow::initUI() {
m_buttonBar->setHorizontalStretchable( TRUE );
m_buttonBar->hide();
- /*
- m_qb = new QuickButton( m_buttonBar );
- connect( m_qb, SIGNAL( keyPressed( ushort, ushort, bool, bool, bool) ),
- this, SLOT( slotKeyReceived( ushort, ushort, bool, bool, bool) ) );
- */
- /* now add the copy and paste actions */
a = new QAction(tr("Copy"),
Resource::loadPixmap("copy"), QString::null,
0, this, 0 );
@@ -447,6 +440,7 @@ void MainWindow::create( const Profile& prof ) {
m_sessions.append( ses );
tabWidget()->add( ses );
+ tabWidget()->repaint();
m_curSession = ses;
// dicide if its a local term ( then no connction and no tranfer), maybe make a wrapper method out of it
diff --git a/noncore/apps/opie-console/mainwindow.h b/noncore/apps/opie-console/mainwindow.h
index 16b6252..7cc2aa5 100644
--- a/noncore/apps/opie-console/mainwindow.h
+++ b/noncore/apps/opie-console/mainwindow.h
@@ -21,7 +21,7 @@ class ProfileManager;
class Profile;
class FunctionKeyboard;
class FKey;
-class QuickButton;
+
class MainWindow : public QMainWindow {
Q_OBJECT
@@ -121,7 +121,6 @@ private:
QAction* m_closewindow;
FunctionKeyboard *m_kb;
- QuickButton *m_qb;
bool m_isFullscreen;
QWidget* savedParentFullscreen;