You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
twin-style-crystal/client/config/crystalconfig.h

68 lines
2.3 KiB

/***************************************************************************
* Copyright (C) 2006 by Sascha Hlusiak *
* Spam84@gmx.de *
* *
* 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 CRYSTALCONFIG_H
#define CRYSTALCONFIG_H
#include <qobject.h>
#define TOP_LEFT 1
#define TOP_RIGHT 2
#define BOT_LEFT 4
#define BOT_RIGHT 8
class KConfig;
class ConfigDialog;
class CrystalConfig : public QObject
{
Q_OBJECT
public:
CrystalConfig(KConfig* config, QWidget* parent);
~CrystalConfig();
signals:
void changed();
public slots:
void load(KConfig*);
void save(KConfig*);
void defaults();
void infoDialog();
protected slots:
void selectionChanged(int);
void overlay_active_changed(int);
void overlay_inactive_changed(int);
void boolChanged(bool) { selectionChanged(0); }
void colorChanged(const QColor&) { selectionChanged(0); }
void textChanged(const QString&) { selectionChanged(0); }
void logoTextChanged(const QString&);
private:
KConfig *config_;
ConfigDialog *dialog_;
void updateLogo();
};
#endif // CRYSTALCONFIG_H