krop's commit fixes my problem in a better way, reverting
[kdepim.git] / kmail / kmacctseldlg.h
blob0091be7acf2f74130f113a956de86bd59326967e
1 /*
2 * kmail: KDE mail client
3 * Copyright (C) 2000 Espen Sand, <espen@kde.org>
4 * Contains code segments and ideas from earlier kmail dialog code
5 * by Stefan Taferner <taferner@kde.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 #ifndef kmacctseldlg_h
24 #define kmacctseldlg_h
26 #include <kdialog.h>
27 #include <kaccount.h>
29 class QButtonGroup;
30 class QRadioButton;
31 class QLayout;
33 using KPIM::KAccount;
35 /** Select account from given list of account types */
36 class KMAcctSelDlg: public KDialog
38 Q_OBJECT
40 public:
41 KMAcctSelDlg( QWidget *parent=0 );
43 /**
44 * Returns selected button from the account selection group.
45 * By default, KAccount::Pop is selected.
47 KAccount::Type selected(void) const;
49 private:
51 // Small Helper function which creates a new button and adds it to the
52 // layout and the button group.
53 QRadioButton *addButton( const KAccount::Type type, QLayout *layout );
55 QButtonGroup *mAccountTypeGroup;
59 #endif /*kmacctseldlg_h*/