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.
80 lines
2.0 KiB
80 lines
2.0 KiB
9 years ago
|
/*
|
||
|
Copyright (C) 2006 Michael Lentner <michaell@gmx.net>
|
||
|
|
||
|
based on KDE2 Default configuration widget:
|
||
|
Copyright (c) 2001
|
||
|
Karol Szwed <gallium@kde.org>
|
||
|
http://gallium.n3.net/
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Library General Public
|
||
|
License version 2 as published by the Free Software Foundation.
|
||
|
|
||
|
This library 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
|
||
|
Library General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this library; if not, write to the Free Software
|
||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||
|
*/
|
||
|
|
||
|
#ifndef DOMINOCONFIG_H
|
||
|
#define DOMINOCONFIG_H
|
||
|
|
||
4 years ago
|
#ifdef HAVE_CONFIG_H
|
||
|
#include "config.h"
|
||
|
#endif
|
||
|
|
||
9 years ago
|
#include <tqcheckbox.h>
|
||
9 years ago
|
#include <tdeconfig.h>
|
||
9 years ago
|
#include <tqvbox.h>
|
||
9 years ago
|
#include <kcolorbutton.h>
|
||
|
|
||
9 years ago
|
class DominoConfig: public TQObject
|
||
9 years ago
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
9 years ago
|
DominoConfig( TDEConfig* config, TQWidget* parent );
|
||
9 years ago
|
~DominoConfig();
|
||
|
|
||
|
// These public signals/slots work similar to KCM modules
|
||
|
signals:
|
||
|
void changed();
|
||
|
|
||
|
public slots:
|
||
9 years ago
|
void load(TDEConfig* config);
|
||
|
void save(TDEConfig* config);
|
||
9 years ago
|
void defaults();
|
||
|
|
||
|
protected slots:
|
||
|
void slotSelectionChanged(); // Internal use
|
||
|
void loadButtonContourColors();
|
||
|
private:
|
||
9 years ago
|
TDEConfig* conf;
|
||
9 years ago
|
TQVBox* vBox;
|
||
|
TQCheckBox* customBorderColor;
|
||
9 years ago
|
KColorButton* borderColor;
|
||
9 years ago
|
TQCheckBox* customButtonColor;
|
||
9 years ago
|
KColorButton* buttonColor;
|
||
9 years ago
|
TQCheckBox* customButtonIconColor;
|
||
9 years ago
|
KColorButton* buttonIconColor;
|
||
|
|
||
9 years ago
|
TQCheckBox* showInactiveButtons;
|
||
|
TQCheckBox* showButtonIcons;
|
||
|
TQCheckBox* customGradientColors;
|
||
9 years ago
|
KColorButton* topGradientColor;
|
||
|
KColorButton* bottomGradientColor;
|
||
9 years ago
|
TQCheckBox* darkFrame;
|
||
9 years ago
|
|
||
9 years ago
|
TQCheckBox* useDominoStyleContourColors;
|
||
9 years ago
|
KColorButton* buttonContourColor;
|
||
|
KColorButton* buttonMouseOverContourColor;
|
||
|
KColorButton* buttonPressedContourColor;
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|