diff options
author | onestone <onestone> | 2006-12-18 16:10:53 +0000 |
---|---|---|
committer | onestone <onestone> | 2006-12-18 16:10:53 +0000 |
commit | 37519d57fb36374e0fe4b3b0dde072283be76e15 (patch) | |
tree | 3272c249c0e26dbdc5a95920e55944a5d2adfe0f /kcm/main.h | |
parent | 6b3607d9d78a74bcc1eaf98b033e7127cedb7f54 (diff) | |
download | aquamarine-37519d57fb36374e0fe4b3b0dde072283be76e15.tar.gz aquamarine-37519d57fb36374e0fe4b3b0dde072283be76e15.tar.bz2 |
aquamarine: fixed some build system issues
settings-backend: included new libberylsettings changes
kcm: added a beryl kcontrol module (currently empty)
Diffstat (limited to 'kcm/main.h')
-rw-r--r-- | kcm/main.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/kcm/main.h b/kcm/main.h new file mode 100644 index 0000000..df1120c --- /dev/null +++ b/kcm/main.h @@ -0,0 +1,46 @@ +/* + * KControl module for Beryl and Aquamarine + * + * Copyright (c) 2006 Dennis Kasprzyk <onestone@beryl-project.org> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + +#ifndef KCM_BERYL_MAIN_H +#define KCM_BERYL_MAIN_H + +#include <kcmodule.h> + + + +class KCMBeryl: public KCModule +{ + Q_OBJECT + +public: + KCMBeryl(QWidget *parent, const char *name, const QStringList &); + ~KCMBeryl(); + + virtual void load(); + virtual void save(); + virtual void defaults(); + +private: + +}; + + +#endif |