~ubuntu-branches/ubuntu/saucy/kopete/saucy-proposed

« back to all changes in this revision

Viewing changes to protocols/sms/smsuserpreferences.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2013-06-21 02:22:39 UTC
  • Revision ID: package-import@ubuntu.com-20130621022239-63l3zc8p0nf26pt6
Tags: upstream-4.10.80
Import upstream version 4.10.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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