~ubuntu-branches/ubuntu/warty/kdebase/warty

« back to all changes in this revision

Viewing changes to kwin/clients/keramik/config/config.h

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-09-16 04:51:45 UTC
  • Revision ID: james.westby@ubuntu.com-20040916045145-9vr63kith3k1cpza
Tags: upstream-3.2.2
Import upstream version 3.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: config.h,v 1.1.1.1 2002/05/17 16:33:45 fredrik Exp $
 
3
 * 
 
4
 * Keramik KWin client configuration module
 
5
 *
 
6
 * Copyright (C) 2002 Fredrik H�glund <fredrik@kde.org>
 
7
 *
 
8
 * Based on the Quartz configuration module,
 
9
 *     Copyright (c) 2001 Karol Szwed <gallium@kde.org>
 
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
 * This program is distributed in the hope that it will be useful,
 
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
19
 * General Public License for more details.
 
20
 *
 
21
 * You should have received a copy of the GNU General Public License
 
22
 * along with this program; see the file COPYING.  If not, write to
 
23
 * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
24
 * Boston, MA 02111-1307, USA.
 
25
 */
 
26
 
 
27
#ifndef __KWIN_KERAMIK_CONFIG_H
 
28
#define __KWIN_KERAMIK_CONFIG_H
 
29
 
 
30
#include <kconfig.h>
 
31
 
 
32
#include "keramikconfig.h"
 
33
 
 
34
class KeramikConfig: public QObject
 
35
{
 
36
        Q_OBJECT
 
37
 
 
38
        public:
 
39
                KeramikConfig( KConfig* conf, QWidget* parent );
 
40
                ~KeramikConfig();
 
41
 
 
42
        // These public signals/slots work similar to KCM modules
 
43
        signals:
 
44
                void changed();
 
45
 
 
46
        public slots:
 
47
                void load( KConfig* conf );     
 
48
                void save( KConfig* conf );
 
49
                void defaults();
 
50
 
 
51
        private:
 
52
                KeramikConfigUI *ui;
 
53
                KConfig *c;
 
54
};
 
55
 
 
56
 
 
57
#endif
 
58
 
 
59
// vim: set noet ts=4 sw=4: