-rw-r--r-- | libopie2/examples/opieui/okeyconfigwidget/keyconfig.pro | 4 | ||||
-rw-r--r-- | libopie2/examples/opieui/okeyconfigwidget/testwidget.cpp | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/libopie2/examples/opieui/okeyconfigwidget/keyconfig.pro b/libopie2/examples/opieui/okeyconfigwidget/keyconfig.pro index 07188d9..7c60384 100644 --- a/libopie2/examples/opieui/okeyconfigwidget/keyconfig.pro +++ b/libopie2/examples/opieui/okeyconfigwidget/keyconfig.pro | |||
@@ -1,12 +1,12 @@ | |||
1 | CONFIG += qt | 1 | CONFIG += qt |
2 | 2 | ||
3 | TEMPLATE = app | 3 | TEMPLATE = app |
4 | SOURCES = ../../../../noncore/graphics/opie-eye/lib/okeyconfigwidget.cpp testwidget.cpp | 4 | SOURCES = testwidget.cpp |
5 | HEADERS = ../../../../noncore/graphics/opie-eye/lib/okeyconfigwidget.h testwidget.h | 5 | HEADERS = testwidget.h |
6 | 6 | ||
7 | INCLUDEPATH += $(OPIEDIR)/include $(OPIEDIR)/noncore/graphics/opie-eye/lib/ | 7 | INCLUDEPATH += $(OPIEDIR)/include $(OPIEDIR)/noncore/graphics/opie-eye/lib/ |
8 | DESTPATH += $(OPIEDIR)/include | 8 | DESTPATH += $(OPIEDIR)/include |
9 | 9 | ||
10 | LIBS += -lopieui2 -lopiecore2 | 10 | LIBS += -lopieui2 -lopiecore2 |
11 | 11 | ||
12 | include ( $(OPIEDIR)/include.pro ) | 12 | include ( $(OPIEDIR)/include.pro ) |
diff --git a/libopie2/examples/opieui/okeyconfigwidget/testwidget.cpp b/libopie2/examples/opieui/okeyconfigwidget/testwidget.cpp index 5553166..10b52f9 100644 --- a/libopie2/examples/opieui/okeyconfigwidget/testwidget.cpp +++ b/libopie2/examples/opieui/okeyconfigwidget/testwidget.cpp | |||
@@ -1,11 +1,11 @@ | |||
1 | #include "testwidget.h" | 1 | #include "testwidget.h" |
2 | 2 | ||
3 | #include "okeyconfigwidget.h" | 3 | #include <opie2/okeyconfigwidget.h> |
4 | 4 | ||
5 | #include <opie2/oapplicationfactory.h> | 5 | #include <opie2/oapplicationfactory.h> |
6 | #include <opie2/otabwidget.h> | 6 | #include <opie2/otabwidget.h> |
7 | 7 | ||
8 | #include <qpe/qpeapplication.h> | 8 | #include <qpe/qpeapplication.h> |
9 | 9 | ||
10 | #include <qevent.h> | 10 | #include <qevent.h> |
11 | #include <qlayout.h> | 11 | #include <qlayout.h> |
@@ -47,16 +47,18 @@ MainWindow::MainWindow( QWidget* parent, const char* name, WFlags fl ) | |||
47 | lay->addWidget( wid ); | 47 | lay->addWidget( wid ); |
48 | m_manager = wid->manager(); | 48 | m_manager = wid->manager(); |
49 | 49 | ||
50 | connect( btn, SIGNAL(clicked()), this, SLOT(slotClicked()) ); | 50 | connect( btn, SIGNAL(clicked()), this, SLOT(slotClicked()) ); |
51 | } | 51 | } |
52 | 52 | ||
53 | void MainWindow::slotClicked() { | 53 | void MainWindow::slotClicked() { |
54 | QDialog diag( this, "name", true ); | 54 | QDialog diag( this, "name", true ); |
55 | diag.setCaption( tr( "Manage Keys" ) ); | ||
56 | |||
55 | QHBoxLayout *lay = new QHBoxLayout( &diag ); | 57 | QHBoxLayout *lay = new QHBoxLayout( &diag ); |
56 | Opie::Ui::OKeyConfigWidget *wid = new Opie::Ui::OKeyConfigWidget( &diag, "key config" ); | 58 | Opie::Ui::OKeyConfigWidget *wid = new Opie::Ui::OKeyConfigWidget( &diag, "key config" ); |
57 | wid->setChangeMode( Opie::Ui::OKeyConfigWidget::Queue ); | 59 | wid->setChangeMode( Opie::Ui::OKeyConfigWidget::Queue ); |
58 | wid->insert( tr("MainWindow Options" ), m_manager ); | 60 | wid->insert( tr("MainWindow Options" ), m_manager ); |
59 | wid->load(); | 61 | wid->load(); |
60 | 62 | ||
61 | lay->addWidget( wid ); | 63 | lay->addWidget( wid ); |
62 | 64 | ||