1 /*
2   smsuserpreferences.h  -  SMS Plugin User Preferences
3 
4   Copyright (c) 2003      by Richard Lärkäng        <nouseforaname@home.se>
5   Copyright (c) 2003      by Gav Wood               <gav@kde.org>
6 
7   *************************************************************************
8   *                                                                       *
9   * This program is free software; you can redistribute it and/or modify  *
10   * it under the terms of the GNU General Public License as published by  *
11   * the Free Software Foundation; either version 2 of the License, or     *
12   * (at your option) any later version.                                   *
13   *                                                                       *
14   *************************************************************************
15 */
16 
17 #ifndef SMSUSERPREFERENCES_H
18 #define SMSUSERPREFERENCES_H
19 
20 #include <kdialog.h>
21 #include <kvbox.h>
22 
23 class SMSPreferencesBase;
24 class SMSUserPrefsUI;
25 class SMSContact;
26 
27 class SMSUserPreferences : public KDialog
28 {
29     Q_OBJECT
30 public:
31     SMSUserPreferences(SMSContact *contact);
32     ~SMSUserPreferences();
33 private:
34     SMSPreferencesBase *prefBase;
35     SMSUserPrefsUI *userPrefs;
36     KVBox *topWidget;
37 
38     SMSContact *m_contact;
39 public slots:
40     void slotOk();
41     void slotCancel();
42 };
43 
44 #endif //SMSUSERPREFERENCES_H
45