~ubuntu-branches/ubuntu/gutsy/kdebase-workspace/gutsy-backports

« back to all changes in this revision

Viewing changes to kicker/settings/hidingconfig.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-09-05 20:45:14 UTC
  • Revision ID: james.westby@ubuntu.com-20070905204514-632hhspl0nvrc84i
Tags: upstream-3.93.0
ImportĀ upstreamĀ versionĀ 3.93.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright (c) 2005      Stefan Nikolaus <stefan.nikolaus@kdemail.net>
 
3
 *
 
4
 *  This program is free software; you can redistribute it and/or modify
 
5
 *  it under the terms of the GNU General Public License as published by
 
6
 *  the Free Software Foundation; either version 2 of the License, or
 
7
 *  (at your option) any later version.
 
8
 *
 
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.
 
13
 *
 
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
 */
 
17
 
 
18
#ifndef __hidingconfig_h__
 
19
#define __hidingconfig_h__
 
20
 
 
21
#include <kcmodule.h>
 
22
 
 
23
class HidingTab;
 
24
 
 
25
class HidingConfig : public KCModule
 
26
{
 
27
    Q_OBJECT
 
28
 
 
29
public:
 
30
    HidingConfig(QWidget *parent = 0, const char *name = 0);
 
31
 
 
32
    void load();
 
33
    void save();
 
34
    void defaults();
 
35
 
 
36
public Q_SLOTS:
 
37
    void notChanged();
 
38
    void aboutToNotifyKicker();
 
39
 
 
40
private:
 
41
    HidingTab *m_widget;
 
42
};
 
43
 
 
44
#endif // __hidingconfig_h__