-rw-r--r-- | noncore/settings/packagemanager/filterdlg.cpp | 47 |
1 files changed, 26 insertions, 21 deletions
diff --git a/noncore/settings/packagemanager/filterdlg.cpp b/noncore/settings/packagemanager/filterdlg.cpp index 70875bd..0e1ea52 100644 --- a/noncore/settings/packagemanager/filterdlg.cpp +++ b/noncore/settings/packagemanager/filterdlg.cpp | |||
@@ -1,30 +1,30 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of the OPIE Project | 2 | This file is part of the OPIE Project |
3 | 3 | ||
4 | =. Copyright (c) 2003 Dan Williams <drw@handhelds.org> | 4 | =. Copyright (c) 2003 Dan Williams <drw@handhelds.org> |
5 | .=l. | 5 | .=l. |
6 | .>+-= | 6 | .>+-= |
7 | _;:, .> :=|. This file is free software; you can | 7 | _;:, .> :=|. This file is free software; you can |
8 | .> <`_, > . <= redistribute it and/or modify it under | 8 | .> <`_, > . <= redistribute it and/or modify it under |
9 | :`=1 )Y*s>-.-- : the terms of the GNU General Public | 9 | :`=1 )Y*s>-.-- : the terms of the GNU General Public |
10 | .="- .-=="i, .._ License as published by the Free Software | 10 | .="- .-=="i, .._ License as published by the Free Software |
11 | - . .-<_> .<> Foundation; either version 2 of the License, | 11 | - . .-<_> .<> Foundation; either version 2 of the License, |
12 | ._= =} : or (at your option) any later version. | 12 | ._= =} : or (at your option) any later version. |
13 | .%`+i> _;_. | 13 | .%`+i> _;_. |
14 | .i_,=:_. -<s. This file is distributed in the hope that | 14 | .i_,=:_. -<s. This file is distributed in the hope that |
15 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 15 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
16 | : .. .:, . . . without even the implied warranty of | 16 | : .. .:, . . . without even the implied warranty of |
17 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 17 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
18 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU General | 18 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU General |
19 | ..}^=.= = ; Public License for more details. | 19 | ..}^=.= = ; Public License for more details. |
20 | ++= -. .` .: | 20 | ++= -. .` .: |
21 | : = ...= . :.=- You should have received a copy of the GNU | 21 | : = ...= . :.=- You should have received a copy of the GNU |
22 | -. .:....=;==+<; General Public License along with this file; | 22 | -. .:....=;==+<; General Public License along with this file; |
23 | -_. . . )=. = see the file COPYING. If not, write to the | 23 | -_. . . )=. = see the file COPYING. If not, write to the |
24 | -- :-=` Free Software Foundation, Inc., | 24 | -- :-=` Free Software Foundation, Inc., |
25 | 59 Temple Place - Suite 330, | 25 | 59 Temple Place - Suite 330, |
26 | Boston, MA 02111-1307, USA. | 26 | Boston, MA 02111-1307, USA. |
27 | 27 | ||
28 | */ | 28 | */ |
29 | 29 | ||
30 | #include "filterdlg.h" | 30 | #include "filterdlg.h" |
@@ -139,27 +139,31 @@ void FilterDlg::initItem( QComboBox *comboBox, QCheckBox *checkBox, const QStrin | |||
139 | comboBox->setEnabled( !selection.isNull() ); | 139 | comboBox->setEnabled( !selection.isNull() ); |
140 | } | 140 | } |
141 | 141 | ||
142 | void FilterDlg::slotNameSelected( bool selected ) | 142 | void FilterDlg::slotNameSelected( bool selected ) |
143 | { | 143 | { |
144 | m_name->setEnabled( selected ); | 144 | m_name->setEnabled( selected ); |
145 | m_name->setFocus(); | ||
145 | } | 146 | } |
146 | 147 | ||
147 | void FilterDlg::slotServerSelected( bool selected ) | 148 | void FilterDlg::slotServerSelected( bool selected ) |
148 | { | 149 | { |
149 | m_server->setEnabled( selected ); | 150 | m_server->setEnabled( selected ); |
151 | m_server->setFocus(); | ||
150 | } | 152 | } |
151 | 153 | ||
152 | void FilterDlg::slotDestSelected( bool selected ) | 154 | void FilterDlg::slotDestSelected( bool selected ) |
153 | { | 155 | { |
154 | m_destination->setEnabled( selected ); | 156 | m_destination->setEnabled( selected ); |
157 | m_destination->setFocus(); | ||
155 | } | 158 | } |
156 | 159 | ||
157 | void FilterDlg::slotStatusSelected( bool selected ) | 160 | void FilterDlg::slotStatusSelected( bool selected ) |
158 | { | 161 | { |
159 | m_status->setEnabled( selected ); | 162 | m_status->setEnabled( selected ); |
163 | m_status->setFocus(); | ||
160 | 164 | ||
161 | if ( !selected && !m_destCB->isEnabled() ) | 165 | if ( !selected && !m_destCB->isEnabled() ) |
162 | { | 166 | { |
163 | // If status check box has been deselected and destination option was previously deselected | 167 | // If status check box has been deselected and destination option was previously deselected |
164 | // (because status == "Not installed"), re-enable destination option | 168 | // (because status == "Not installed"), re-enable destination option |
165 | m_destCB->setEnabled( true ); | 169 | m_destCB->setEnabled( true ); |
@@ -183,7 +187,8 @@ void FilterDlg::slotStatusChanged( const QString &category ) | |||
183 | m_destCB->setChecked( false ); | 187 | m_destCB->setChecked( false ); |
184 | } | 188 | } |
185 | 189 | ||
186 | void FilterDlg::slotCategorySelected( bool selected ) | 190 | void FilterDlg::slotCategorySelected( bool selected ) |
187 | { | 191 | { |
188 | m_category->setEnabled( selected ); | 192 | m_category->setEnabled( selected ); |
193 | m_category->setFocus(); | ||
189 | } | 194 | } |