Fix crash on login.
[kdenetwork.git] / kopete / protocols / oscar / oscarencodingselectiondialog.h
blob6d6d3fd821376a4768aadc8ef2732f5563a55699
1 // oscarencodingselectiondialog.h
2 // Copyright (C) 2005 Matt Rogers <mattr@kde.org>
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 // 02110-1301, USA.
19 #ifndef OSCARENCODINGSELECTIONDIALOG_H
20 #define OSCARENCODINGSELECTIONDIALOG_H
22 #include <kdialog.h>
23 #include "kopete_export.h"
25 namespace Ui { class OscarEncodingBaseUI; }
27 class OSCAR_EXPORT OscarEncodingSelectionDialog : public KDialog
29 Q_OBJECT
30 public:
31 explicit OscarEncodingSelectionDialog( QWidget* parent = 0, int initialEncoding = 4);
32 ~OscarEncodingSelectionDialog() {}
34 int selectedEncoding() const;
36 signals:
37 void closing( int );
39 protected slots:
40 void slotOk();
41 void slotCancel();
43 private:
44 Ui::OscarEncodingBaseUI* m_encodingUI;
45 QMap<int, QString> m_encodings;
48 #endif