-rw-r--r-- | microkde/kresources/configpage.cpp | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/microkde/kresources/configpage.cpp b/microkde/kresources/configpage.cpp index 912c62e..2fe021d 100644 --- a/microkde/kresources/configpage.cpp +++ b/microkde/kresources/configpage.cpp | |||
@@ -93,49 +93,59 @@ ConfigPage::ConfigPage( QWidget *parent, const char *name ) | |||
93 | : QWidget( parent, name ), | 93 | : QWidget( parent, name ), |
94 | mCurrentManager( 0 ), | 94 | mCurrentManager( 0 ), |
95 | mCurrentConfig( 0 ) | 95 | mCurrentConfig( 0 ) |
96 | { | 96 | { |
97 | setCaption( i18n( "Resource Configuration" ) ); | 97 | setCaption( i18n( "Resource Configuration" ) ); |
98 | 98 | ||
99 | QVBoxLayout *mainLayout = new QVBoxLayout( this ); | 99 | QVBoxLayout *mainLayout = new QVBoxLayout( this ); |
100 | 100 | ||
101 | QGroupBox *groupBox = new QGroupBox( i18n( "Resources" ), this ); | 101 | QGroupBox *groupBox = new QGroupBox( i18n( "Resources" ), this ); |
102 | groupBox->setColumnLayout(0, Qt::Vertical ); | 102 | groupBox->setColumnLayout(0, Qt::Vertical ); |
103 | groupBox->layout()->setSpacing( 6 ); | 103 | groupBox->layout()->setSpacing( 6 ); |
104 | groupBox->layout()->setMargin( 11 ); | 104 | groupBox->layout()->setMargin( 11 ); |
105 | QGridLayout *groupBoxLayout = new QGridLayout( groupBox->layout(), 2, 2 ); | 105 | QGridLayout *groupBoxLayout = new QGridLayout( groupBox->layout(), 4, 2 ); |
106 | 106 | ||
107 | //US mFamilyCombo = new KComboBox( false, groupBox ); | 107 | //US mFamilyCombo = new KComboBox( false, groupBox ); |
108 | mFamilyCombo = new KComboBox( groupBox ); | 108 | mFamilyCombo = new KComboBox( groupBox ); |
109 | groupBoxLayout->addMultiCellWidget( mFamilyCombo, 0, 0, 0, 1 ); | 109 | groupBoxLayout->addMultiCellWidget( mFamilyCombo, 0, 0, 0, 1 ); |
110 | 110 | ||
111 | mListView = new KListView( groupBox ); | 111 | mListView = new KListView( groupBox ); |
112 | mListView->setAllColumnsShowFocus( true ); | 112 | mListView->setAllColumnsShowFocus( true ); |
113 | mListView->addColumn( i18n( "Name" ) ); | 113 | mListView->addColumn( i18n( "Name" ) ); |
114 | mListView->addColumn( i18n( "Type" ) ); | 114 | mListView->addColumn( i18n( "Type" ) ); |
115 | mListView->addColumn( i18n( "Standard" ) ); | 115 | mListView->addColumn( i18n( "Standard" ) ); |
116 | 116 | ||
117 | groupBoxLayout->addWidget( mListView, 1, 0 ); | 117 | //US groupBoxLayout->addWidget( mListView, 1, 0 ); |
118 | groupBoxLayout->addMultiCellWidget( mListView, 1, 1, 0, 1 ); | ||
119 | |||
120 | |||
121 | mAddButton = new QPushButton( i18n( "&Add..." ), this ); | ||
122 | groupBoxLayout->addWidget( mAddButton, 2, 0 ); | ||
123 | mRemoveButton = new QPushButton( i18n( "&Remove" ), this ); | ||
124 | groupBoxLayout->addWidget( mRemoveButton, 2, 1 ); | ||
125 | mEditButton = new QPushButton( i18n( "&Edit..." ), this ); | ||
126 | groupBoxLayout->addWidget( mEditButton, 3, 0 ); | ||
127 | mStandardButton = new QPushButton( i18n( "&Use as Standard" ), this ); | ||
128 | groupBoxLayout->addWidget( mStandardButton, 3, 1 ); | ||
118 | 129 | ||
119 | KButtonBox *buttonBox = new KButtonBox( groupBox, Vertical ); | ||
120 | mAddButton = buttonBox->addButton( i18n( "&Add..." ), this, SLOT(slotAdd()) ); | ||
121 | mRemoveButton = buttonBox->addButton( i18n( "&Remove" ), this, SLOT(slotRemove()) ); | ||
122 | mRemoveButton->setEnabled( false ); | 130 | mRemoveButton->setEnabled( false ); |
123 | mEditButton = buttonBox->addButton( i18n( "&Edit..." ), this, SLOT(slotEdit()) ); | ||
124 | mEditButton->setEnabled( false ); | 131 | mEditButton->setEnabled( false ); |
125 | mStandardButton = buttonBox->addButton( i18n( "&Use as Standard" ), this, SLOT(slotStandard()) ); | ||
126 | mStandardButton->setEnabled( false ); | 132 | mStandardButton->setEnabled( false ); |
127 | buttonBox->layout(); | ||
128 | 133 | ||
129 | groupBoxLayout->addWidget( buttonBox, 1, 1 ); | 134 | |
135 | connect( mAddButton, SIGNAL( clicked() ), SLOT(slotAdd()) ); | ||
136 | connect( mRemoveButton, SIGNAL( clicked() ), SLOT(slotRemove()) ); | ||
137 | connect( mEditButton, SIGNAL( clicked() ), SLOT(slotEdit()) ); | ||
138 | connect( mStandardButton, SIGNAL( clicked() ), SLOT(slotStandard()) ); | ||
139 | |||
130 | 140 | ||
131 | mainLayout->addWidget( groupBox ); | 141 | mainLayout->addWidget( groupBox ); |
132 | 142 | ||
133 | connect( mFamilyCombo, SIGNAL( activated( int ) ), | 143 | connect( mFamilyCombo, SIGNAL( activated( int ) ), |
134 | SLOT( slotFamilyChanged( int ) ) ); | 144 | SLOT( slotFamilyChanged( int ) ) ); |
135 | connect( mListView, SIGNAL( selectionChanged() ), | 145 | connect( mListView, SIGNAL( selectionChanged() ), |
136 | SLOT( slotSelectionChanged() ) ); | 146 | SLOT( slotSelectionChanged() ) ); |
137 | connect( mListView, SIGNAL( clicked( QListViewItem * ) ), | 147 | connect( mListView, SIGNAL( clicked( QListViewItem * ) ), |
138 | SLOT( slotItemClicked( QListViewItem * ) ) ); | 148 | SLOT( slotItemClicked( QListViewItem * ) ) ); |
139 | 149 | ||
140 | mLastItem = 0; | 150 | mLastItem = 0; |
141 | 151 | ||