summaryrefslogtreecommitdiff
path: root/libopie2/examples/opieui/okeyconfigwidget/testwidget.cpp
authorzecke <zecke>2004-04-13 14:53:58 (UTC)
committer zecke <zecke>2004-04-13 14:53:58 (UTC)
commitb51d88d7b0b517b71ae3b59d8228335f38ca9fc7 (patch) (unidiff)
tree302377973a897934c944c7a126e5e0a510694979 /libopie2/examples/opieui/okeyconfigwidget/testwidget.cpp
parentc4c842558e1457f64d43b237f24f6ea1a4f9d76b (diff)
downloadopie-b51d88d7b0b517b71ae3b59d8228335f38ca9fc7.zip
opie-b51d88d7b0b517b71ae3b59d8228335f38ca9fc7.tar.gz
opie-b51d88d7b0b517b71ae3b59d8228335f38ca9fc7.tar.bz2
Split the KeyConfig Manager and Widget into Ui and Core parts
Adjust the only user... Don't add a 2nd example to core but mention the one for the classes in opieui/okeyconfigwidget
Diffstat (limited to 'libopie2/examples/opieui/okeyconfigwidget/testwidget.cpp') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/examples/opieui/okeyconfigwidget/testwidget.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/libopie2/examples/opieui/okeyconfigwidget/testwidget.cpp b/libopie2/examples/opieui/okeyconfigwidget/testwidget.cpp
index 10b52f9..5c7bac2 100644
--- a/libopie2/examples/opieui/okeyconfigwidget/testwidget.cpp
+++ b/libopie2/examples/opieui/okeyconfigwidget/testwidget.cpp
@@ -20,25 +20,25 @@
20 */ 20 */
21class MainWindow : public QMainWindow { 21class MainWindow : public QMainWindow {
22 Q_OBJECT 22 Q_OBJECT
23public: 23public:
24 static QString appName() { 24 static QString appName() {
25 return QString::fromLatin1("keyconfig"); 25 return QString::fromLatin1("keyconfig");
26 } 26 }
27 MainWindow( QWidget*, const char*, WFlags fl ); 27 MainWindow( QWidget*, const char*, WFlags fl );
28 ~MainWindow() {} 28 ~MainWindow() {}
29private slots: 29private slots:
30 void slotClicked(); 30 void slotClicked();
31private: 31private:
32 Opie::Ui::OKeyConfigManager *m_manager; 32 Opie::Core::OKeyConfigManager *m_manager;
33}; 33};
34 34
35 35
36OPIE_EXPORT_APP( Opie::Core::OApplicationFactory<MainWindow> ) 36OPIE_EXPORT_APP( Opie::Core::OApplicationFactory<MainWindow> )
37 37
38 38
39MainWindow::MainWindow( QWidget* parent, const char* name, WFlags fl ) 39MainWindow::MainWindow( QWidget* parent, const char* name, WFlags fl )
40 : QMainWindow( parent, name, fl ) 40 : QMainWindow( parent, name, fl )
41{ 41{
42 QVBoxLayout *lay = new QVBoxLayout( this ); 42 QVBoxLayout *lay = new QVBoxLayout( this );
43 QPushButton *btn = new QPushButton( tr("Configure" ), this ); 43 QPushButton *btn = new QPushButton( tr("Configure" ), this );
44 TestMainWindow *wid = new TestMainWindow( this, "name", 0 ); 44 TestMainWindow *wid = new TestMainWindow( this, "name", 0 );
@@ -67,62 +67,62 @@ void MainWindow::slotClicked() {
67 } 67 }
68} 68}
69 69
70TestMainWindow::TestMainWindow( QWidget* parent, const char* slot, WFlags fl ) 70TestMainWindow::TestMainWindow( QWidget* parent, const char* slot, WFlags fl )
71 : Opie::Ui::OListView( parent, slot, fl) 71 : Opie::Ui::OListView( parent, slot, fl)
72{ 72{
73 addColumn( tr( "A Doo" ) ); 73 addColumn( tr( "A Doo" ) );
74 addColumn( tr( "B Doo" ) ); 74 addColumn( tr( "B Doo" ) );
75 75
76 m_config = new Opie::Core::OConfig( "test_config_foo" ); 76 m_config = new Opie::Core::OConfig( "test_config_foo" );
77 77
78 /* generate the black list */ 78 /* generate the black list */
79 Opie::Ui::OKeyPair::List blackList; 79 Opie::Core::OKeyPair::List blackList;
80 blackList.append( Opie::Ui::OKeyPair::leftArrowKey() ); 80 blackList.append( Opie::Core::OKeyPair::leftArrowKey() );
81 blackList.append( Opie::Ui::OKeyPair::rightArrowKey() ); 81 blackList.append( Opie::Core::OKeyPair::rightArrowKey() );
82 blackList.append( Opie::Ui::OKeyPair::downArrowKey() ); 82 blackList.append( Opie::Core::OKeyPair::downArrowKey() );
83 blackList.append( Opie::Ui::OKeyPair::upArrowKey() ); 83 blackList.append( Opie::Core::OKeyPair::upArrowKey() );
84 84
85 m_manager = new Opie::Ui::OKeyConfigManager( m_config, "Key Group", 85 m_manager = new Opie::Core::OKeyConfigManager( m_config, "Key Group",
86 blackList, false, this, "Key Manager" ); 86 blackList, false, this, "Key Manager" );
87 87
88 m_manager->addKeyConfig( Opie::Ui::OKeyConfigItem( tr( "Delete Action" ), "delete_key", QPixmap(), 88 m_manager->addKeyConfig( Opie::Core::OKeyConfigItem( tr( "Delete Action" ), "delete_key", QPixmap(),
89 10, Opie::Ui::OKeyPair( Qt::Key_D, Qt::ShiftButton ), this, 89 10, Opie::Core::OKeyPair( Qt::Key_D, Qt::ShiftButton ), this,
90 SLOT(slotDelete(QWidget*,QKeyEvent*)) ) ); 90 SLOT(slotDelete(QWidget*,QKeyEvent*)) ) );
91 m_manager->addKeyConfig( Opie::Ui::OKeyConfigItem( tr( "Show Action" ), "show_key", QPixmap(), 91 m_manager->addKeyConfig( Opie::Core::OKeyConfigItem( tr( "Show Action" ), "show_key", QPixmap(),
92 11, Opie::Ui::OKeyPair( Qt::Key_S, Qt::AltButton ) ) ); 92 11, Opie::Core::OKeyPair( Qt::Key_S, Qt::AltButton ) ) );
93 93
94 connect(m_manager, SIGNAL(actionActivated(QWidget*,QKeyEvent*,const Opie::Ui::OKeyConfigItem&)), 94 connect(m_manager, SIGNAL(actionActivated(QWidget*,QKeyEvent*,const Opie::Core::OKeyConfigItem&)),
95 this, SLOT(slotAction(QWidget*, QKeyEvent*, const Opie::Ui::OKeyConfigItem&)) ); 95 this, SLOT(slotAction(QWidget*, QKeyEvent*, const Opie::Core::OKeyConfigItem&)) );
96// when commenting the line below out the keyPressEvent will work 96// when commenting the line below out the keyPressEvent will work
97 m_manager->handleWidget( this ); 97 m_manager->handleWidget( this );
98 m_manager->load(); 98 m_manager->load();
99} 99}
100 100
101TestMainWindow::~TestMainWindow() { 101TestMainWindow::~TestMainWindow() {
102 m_manager->save(); 102 m_manager->save();
103 delete m_config; 103 delete m_config;
104} 104}
105 105
106Opie::Ui::OKeyConfigManager* TestMainWindow::manager() { 106Opie::Core::OKeyConfigManager* TestMainWindow::manager() {
107 return m_manager; 107 return m_manager;
108} 108}
109 109
110/* 110/*
111 * This only works if we do not handle the even with m_manager->handleWidget( this ) 111 * This only works if we do not handle the even with m_manager->handleWidget( this )
112 * So this is only for demo purposes 112 * So this is only for demo purposes
113 */ 113 */
114void TestMainWindow::keyPressEvent( QKeyEvent* ev ) { 114void TestMainWindow::keyPressEvent( QKeyEvent* ev ) {
115 qWarning( "String is "+ m_manager->handleKeyEvent( ev ).text() ); 115 qWarning( "String is "+ m_manager->handleKeyEvent( ev ).text() );
116 qWarning( "Id was %d %d %d %d", m_manager->handleKeyEventId( ev ),ev->key(),ev->state(), ev->ascii() ); 116 qWarning( "Id was %d %d %d %d", m_manager->handleKeyEventId( ev ),ev->key(),ev->state(), ev->ascii() );
117 ev->ignore(); 117 ev->ignore();
118} 118}
119 119
120void TestMainWindow::slotDelete( QWidget* wid, QKeyEvent* ev ) { 120void TestMainWindow::slotDelete( QWidget* wid, QKeyEvent* ev ) {
121 qWarning( "Slot Delete %d %d %d", wid, ev->key(), ev->state() ); 121 qWarning( "Slot Delete %d %d %d", wid, ev->key(), ev->state() );
122} 122}
123 123
124void TestMainWindow::slotAction( QWidget* wid, QKeyEvent* ev, const Opie::Ui::OKeyConfigItem& item) { 124void TestMainWindow::slotAction( QWidget* wid, QKeyEvent* ev, const Opie::Core::OKeyConfigItem& item) {
125 qWarning( "Slot Action %d %d %d %s %d", wid, ev->key(), ev->state(), item.text().latin1(), item.id() ); 125 qWarning( "Slot Action %d %d %d %s %d", wid, ev->key(), ev->state(), item.text().latin1(), item.id() );
126} 126}
127 127
128#include "testwidget.moc" 128#include "testwidget.moc"