author | alwin <alwin> | 2005-03-14 14:57:07 (UTC) |
---|---|---|
committer | alwin <alwin> | 2005-03-14 14:57:07 (UTC) |
commit | 2a1c1ebfe0203d9aa98a966b3571a340f413a624 (patch) (side-by-side diff) | |
tree | 721d87824c7dbb802cd990326c2828554fc49bca | |
parent | 740454f425131a88fbcc973d3ec5cc152aa7fb70 (diff) | |
download | opie-2a1c1ebfe0203d9aa98a966b3571a340f413a624.zip opie-2a1c1ebfe0203d9aa98a966b3571a340f413a624.tar.gz opie-2a1c1ebfe0203d9aa98a966b3571a340f413a624.tar.bz2 |
scrollview - when having a lot of buttons the dialog window is to small
to display them.
-rw-r--r-- | core/settings/button/buttonsettings.cpp | 34 |
1 files changed, 22 insertions, 12 deletions
diff --git a/core/settings/button/buttonsettings.cpp b/core/settings/button/buttonsettings.cpp index 779f6ef..a90b4a1 100644 --- a/core/settings/button/buttonsettings.cpp +++ b/core/settings/button/buttonsettings.cpp @@ -27,2 +27,6 @@ +#include "buttonsettings.h" +#include "buttonutils.h" +#include "remapdlg.h" + #include <opie2/odevice.h> @@ -34,6 +38,4 @@ #include <qtimer.h> +#include <qscrollview.h> -#include "buttonsettings.h" -#include "buttonutils.h" -#include "remapdlg.h" @@ -67,4 +69,12 @@ ButtonSettings::ButtonSettings ( QWidget *parent , const char *, bool, WFlags QVBoxLayout *toplay = new QVBoxLayout ( this, 3, 3 ); + QScrollView*mainview = new QScrollView(this); + mainview->setResizePolicy( QScrollView::AutoOneFit ); + + toplay->addWidget(mainview); + QFrame*framehold=new QFrame(mainview->viewport()); + framehold->setFrameStyle(QFrame::NoFrame|QFrame::Plain); + mainview->addChild(framehold); + toplay = new QVBoxLayout (framehold, 3, 3 ); - QLabel *l = new QLabel ( tr( "<center>Press or hold the button you want to remap.</center>" ), this ); + QLabel *l = new QLabel ( tr( "<center>Press or hold the button you want to remap.</center>" ), framehold ); toplay-> addWidget ( l ); @@ -84,3 +94,3 @@ ButtonSettings::ButtonSettings ( QWidget *parent , const char *, bool, WFlags if ( it != buttons. begin ( )) { - QFrame *f = new QFrame ( this ); + QFrame *f = new QFrame ( framehold ); f-> setFrameStyle ( QFrame::Sunken | QFrame::VLine ); @@ -98,3 +108,3 @@ ButtonSettings::ButtonSettings ( QWidget *parent , const char *, bool, WFlags - l = new QLabel ( this ); + l = new QLabel ( framehold ); l-> setPixmap (( *it ). pixmap ( )); @@ -103,8 +113,8 @@ ButtonSettings::ButtonSettings ( QWidget *parent , const char *, bool, WFlags - l = new QLabel ( tr( "Press:" ), this ); + l = new QLabel ( tr( "Press:" ), framehold ); lay-> addWidget ( l, i, 1, AlignLeft | AlignBottom ); - l = new QLabel ( tr( "Hold:" ), this ); + l = new QLabel ( tr( "Hold:" ), framehold ); lay-> addWidget ( l, i + 1, 1, AlignLeft | AlignTop ); - l = new QLabel ( this ); + l = new QLabel ( framehold ); l-> setFixedSize ( 16, 16 ); @@ -113,3 +123,3 @@ ButtonSettings::ButtonSettings ( QWidget *parent , const char *, bool, WFlags - l = new QLabel ( this ); + l = new QLabel ( framehold ); l-> setAlignment ( AlignLeft | AlignVCenter | SingleLine ); @@ -118,3 +128,3 @@ ButtonSettings::ButtonSettings ( QWidget *parent , const char *, bool, WFlags - l = new QLabel ( this ); + l = new QLabel ( framehold ); l-> setFixedSize ( 16, 16 ); @@ -123,3 +133,3 @@ ButtonSettings::ButtonSettings ( QWidget *parent , const char *, bool, WFlags - l = new QLabel ( this ); + l = new QLabel ( framehold ); l-> setAlignment ( AlignLeft | AlignVCenter | SingleLine ); |