summaryrefslogtreecommitdiffstats
path: root/kstyles/plastik/config/plastikconf.h
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-08-18 10:14:48 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2013-08-18 10:14:48 -0500
commitdad42352f4ad47d34caf50040367dc2a95772baa (patch)
tree6d2887d13f9b1403b8ce15be48a6ea7cec32fd96 /kstyles/plastik/config/plastikconf.h
parent365f03061337a81bcffb4a45c4ad637edad27019 (diff)
downloadtdelibs-dad42352f4ad47d34caf50040367dc2a95772baa.tar.gz
tdelibs-dad42352f4ad47d34caf50040367dc2a95772baa.zip
Rename KStyle to TDEStyle to avoid conflicts with KDE4.
Diffstat (limited to 'kstyles/plastik/config/plastikconf.h')
-rw-r--r--kstyles/plastik/config/plastikconf.h85
1 files changed, 0 insertions, 85 deletions
diff --git a/kstyles/plastik/config/plastikconf.h b/kstyles/plastik/config/plastikconf.h
deleted file mode 100644
index 512ad6f2e..000000000
--- a/kstyles/plastik/config/plastikconf.h
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
-Copyright (C) 2003 Sandro Giessl <ceebx@users.sourceforge.net>
-
-based on the Keramik configuration dialog:
-Copyright (c) 2003 Maksim Orlovich <maksim.orlovich@kdemail.net>
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the "Software"),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-DEALINGS IN THE SOFTWARE.
-
-*/
-
-#ifndef PLASTIK_CONF_H
-#define PLASTIK_CONF_H
-
-class TQCheckBox;
-
-class PlastikStyleConfig: public TQWidget
-{
- Q_OBJECT
-public:
- PlastikStyleConfig(TQWidget* parent);
- ~PlastikStyleConfig();
-
- //This signal and the next two slots are the plugin
- //page interface
-signals:
- void changed(bool);
-
-public slots:
- void save();
- void defaults();
-
- //Everything below this is internal.
-protected slots:
- void updateChanged();
-
-protected:
- //We store settings directly in widgets to
- //avoid the hassle of sync'ing things
-// TQCheckBox* scrollBarLines;
- TQCheckBox* animateProgressBar;
- TQCheckBox* drawToolBarSeparator;
- TQCheckBox* drawToolBarItemSeparator;
-// TQCheckBox* drawFocusRect;
- TQCheckBox* drawTriangularExpander;
- TQCheckBox* inputFocusHighlight;
- TQCheckBox* customOverHighlightColor;
- KColorButton* overHighlightColor;
- TQCheckBox* customFocusHighlightColor;
- KColorButton* focusHighlightColor;
- TQCheckBox* customCheckMarkColor;
- KColorButton* checkMarkColor;
-
- //Original settings, for accurate dirtiness tracking
-// bool origScrollBarLines;
- bool origAnimProgressBar;
- bool origDrawToolBarSeparator;
- bool origDrawToolBarItemSeparator;
-// bool origDrawFocusRect;
- bool origDrawTriangularExpander;
- bool origInputFocusHighlight;
- bool origCustomOverHighlightColor;
- TQColor origOverHighlightColor;
- bool origCustomFocusHighlightColor;
- TQColor origFocusHighlightColor;
- bool origCustomCheckMarkColor;
- TQColor origCheckMarkColor;
-};
-
-#endif