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

« back to all changes in this revision

Viewing changes to kopete/config/appearance/appearanceconfig.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
    appearanceconfig.h  -  Kopete Look Feel Config
 
3
 
 
4
    Copyright (c) 2001-2002 by Duncan Mac-Vicar Prett <duncan@kde.org>
 
5
    Copyright (c) 2005      by Michaël Larouche       <larouche@kde.org>
 
6
 
 
7
    Kopete    (c) 2002-2005 by the Kopete developers  <kopete-devel@kde.org>
 
8
 
 
9
    *************************************************************************
 
10
    *                                                                       *
 
11
    * This program is free software; you can redistribute it and/or modify  *
 
12
    * it under the terms of the GNU General Public License as published by  *
 
13
    * the Free Software Foundation; either version 2 of the License, or     *
 
14
    * (at your option) any later version.                                   *
 
15
    *                                                                       *
 
16
    *************************************************************************
 
17
*/
 
18
 
 
19
#ifndef APPEARANCECONFIG_H
 
20
#define APPEARANCECONFIG_H
 
21
 
 
22
#define KDE3_SUPPORT
 
23
#include <kcmodule.h>
 
24
#undef KDE3_SUPPORT
 
25
 
 
26
/**
 
27
 * @author Duncan Mac-Vicar P. <duncan@kde.org>
 
28
 * @author Michaël Larouche <larouche@kde.org>
 
29
 */
 
30
class AppearanceConfig : public KCModule
 
31
{
 
32
        Q_OBJECT
 
33
 
 
34
 
 
35
public:
 
36
        AppearanceConfig( QWidget *parent, const QVariantList &args );
 
37
        ~AppearanceConfig();
 
38
 
 
39
        virtual void save();
 
40
        virtual void load();
 
41
 
 
42
private slots:
 
43
        void slotHighlightChanged();
 
44
        void slotChangeFont();
 
45
        void slotEditTooltips();
 
46
        void emitChanged();
 
47
private:
 
48
        
 
49
private:
 
50
        class Private;
 
51
        Private * const d;
 
52
};
 
53
#endif
 
54
// vim: set noet ts=4 sts=4 sw=4: