summaryrefslogtreecommitdiffstats
path: root/kwin-styles/glow/config/glowconfigdialog.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-07 21:50:31 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-07 21:50:31 -0600
commite35f3fe53cd8df85d4fd04e49dfffbaeac971cdf (patch)
tree95836fc22de909b3b20dbf3fc3dea230e5e58e3b /kwin-styles/glow/config/glowconfigdialog.h
parenta5355f151396be579eba5838c7d8d93a43362cd7 (diff)
downloadtdeartwork-e35f3fe53cd8df85d4fd04e49dfffbaeac971cdf.tar.gz
tdeartwork-e35f3fe53cd8df85d4fd04e49dfffbaeac971cdf.zip
Rename kwin to twin (Part 2 of 2)
Diffstat (limited to 'kwin-styles/glow/config/glowconfigdialog.h')
-rw-r--r--kwin-styles/glow/config/glowconfigdialog.h92
1 files changed, 0 insertions, 92 deletions
diff --git a/kwin-styles/glow/config/glowconfigdialog.h b/kwin-styles/glow/config/glowconfigdialog.h
deleted file mode 100644
index 81747a4c..00000000
--- a/kwin-styles/glow/config/glowconfigdialog.h
+++ /dev/null
@@ -1,92 +0,0 @@
-/***************************************************************************
- glowconfigdialog.h - description
- -------------------
- begin : Thu Sep 12 2001
- copyright : (C) 2001 by Henning Burchardt
- email : h_burchardt@gmx.net
- ***************************************************************************/
-
-/***************************************************************************
- * *
- * 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. *
- * *
- ***************************************************************************/
-
-#ifndef GLOW_CONFIG_DIALOG_H
-#define GLOW_CONFIG_DIALOG_H
-
-#include <tqvaluevector.h>
-#include <tqobject.h>
-
-class TQListView;
-class TQPushButton;
-class TQSignalMapper;
-class TQCheckBox;
-class TQComboBox;
-class KConfig;
-class KColorButton;
-
-class GlowConfigDialog : public TQObject
-{
- Q_OBJECT
- TQ_OBJECT
-
-public:
- GlowConfigDialog( KConfig* conf, TQWidget* parent );
- ~GlowConfigDialog();
-
-signals:
- void changed();
-
-public slots:
- void load( KConfig* conf );
- void save( KConfig* conf );
- void defaults();
-
-protected slots:
- void slotTitleButtonClicked(int);
- void slotColorButtonChanged(const TQColor&);
- void slotTitlebarGradientTypeChanged(int);
- void slotResizeHandleCheckBoxChanged();
- void slotThemeListViewSelectionChanged ();
-
-private slots:
- void slotLoadThemeList ();
-
-private:
- enum ButtonType{stickyButton, helpButton, iconifyButton,
- maximizeButton, closeButton };
-
- KConfig *_glowConfig;
-
- bool _showResizeHandle;
- KPixmapEffect::GradientType _titlebarGradientType;
- TQString _theme_name;
-
- TQWidget *_main_group_box;
- TQGroupBox *_button_glow_color_group_box;
- TQGroupBox *_theme_group_box;
-
- TQListView * _theme_list_view;
-
- TQCheckBox *_showResizeHandleCheckBox;
- TQComboBox *_titlebarGradientTypeComboBox;
-
- TQPushButton *_stickyButton;
- TQPushButton *_helpButton;
- TQPushButton *_iconifyButton;
- TQPushButton *_maximizeButton;
- TQPushButton *_closeButton;
- TQSignalMapper *_titleButtonMapper;
-
- TQColor* _buttonConfigMap;
- TQValueVector<TQPushButton*> _titleButtonList;
-
- KColorButton *_colorButton;
-};
-
-#endif
-