kwin/kcmkwin/kwinoptions/windows.h

194 lines
4.1 KiB
C
Raw Normal View History

/*
* windows.h
*
* Copyright (c) 1997 Patrick Dowler dowler@morgul.fsh.uvic.ca
* Copyright (c) 2001 Waldo Bastian bastian@kde.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 KKWMWINDOWS_H
#define KKWMWINDOWS_H
#include <QWidget>
#include <kcmodule.h>
#include <config-workspace.h>
#include "ui_advanced.h"
#include "ui_focus.h"
#include "ui_moving.h"
class QRadioButton;
class QCheckBox;
class QPushButton;
class KComboBox;
class QGroupBox;
class QLabel;
class QSlider;
class KButtonGroup;
// class QSpinBox;
class KColorButton;
class KIntNumInput;
class KWinFocusConfigForm : public QWidget, public Ui::KWinFocusConfigForm
{
Q_OBJECT
public:
explicit KWinFocusConfigForm(QWidget* parent);
};
class KWinMovingConfigForm : public QWidget, public Ui::KWinMovingConfigForm
{
Q_OBJECT
public:
explicit KWinMovingConfigForm(QWidget* parent);
};
class KWinAdvancedConfigForm : public QWidget, public Ui::KWinAdvancedConfigForm
{
Q_OBJECT
public:
explicit KWinAdvancedConfigForm(QWidget* parent);
};
class KFocusConfig : public KCModule
{
2011-01-30 14:34:42 +00:00
Q_OBJECT
public:
2013-09-30 05:29:38 +00:00
KFocusConfig(bool _standAlone, KConfig *_config, QWidget *parent);
2011-01-30 14:34:42 +00:00
~KFocusConfig();
2011-01-30 14:34:42 +00:00
void load();
void save();
void defaults();
protected:
2011-01-30 14:34:42 +00:00
void showEvent(QShowEvent *ev);
2013-09-30 05:26:46 +00:00
private Q_SLOTS:
2011-01-30 14:34:42 +00:00
void setDelayFocusEnabled();
void focusPolicyChanged();
void autoRaiseOnTog(bool);//CT 23Oct1998
void delayFocusOnTog(bool);
void updateActiveMouseScreen();
void updateMultiScreen();
2011-01-30 14:34:42 +00:00
void changed() {
emit KCModule::changed(true);
}
private:
2011-01-30 14:34:42 +00:00
int getFocus(void);
int getAutoRaiseInterval(void);
int getDelayFocusInterval(void);
void setFocus(int);
void setAutoRaiseInterval(int);
void setAutoRaise(bool);
void setDelayFocusInterval(int);
void setClickRaise(bool);
void setSeparateScreenFocus(bool);
void setActiveMouseScreen(bool);
void setFocusStealing(int);
KConfig *config;
bool standAlone;
KWinFocusConfigForm *m_ui;
};
class KMovingConfig : public KCModule
{
2011-01-30 14:34:42 +00:00
Q_OBJECT
public:
2013-09-30 05:29:38 +00:00
KMovingConfig(bool _standAlone, KConfig *config, QWidget *parent);
2011-01-30 14:34:42 +00:00
~KMovingConfig();
2011-01-30 14:34:42 +00:00
void load();
void save();
void defaults();
protected:
2011-01-30 14:34:42 +00:00
void showEvent(QShowEvent *ev);
2013-09-30 05:26:46 +00:00
private Q_SLOTS:
2011-01-30 14:34:42 +00:00
void changed() {
emit KCModule::changed(true);
}
private:
2011-01-30 14:34:42 +00:00
bool getGeometryTip(void); //KS
void setGeometryTip(bool); //KS
KConfig *config;
bool standAlone;
KWinMovingConfigForm *m_ui;
2011-01-30 14:34:42 +00:00
int getBorderSnapZone();
void setBorderSnapZone(int);
int getWindowSnapZone();
void setWindowSnapZone(int);
int getCenterSnapZone();
void setCenterSnapZone(int);
};
class KAdvancedConfig : public KCModule
{
2011-01-30 14:34:42 +00:00
Q_OBJECT
public:
2013-09-30 05:29:38 +00:00
KAdvancedConfig(bool _standAlone, KConfig *config, QWidget *parent);
2011-01-30 14:34:42 +00:00
~KAdvancedConfig();
2011-01-30 14:34:42 +00:00
void load();
void save();
void defaults();
protected:
2011-01-30 14:34:42 +00:00
void showEvent(QShowEvent *ev);
2013-09-30 05:26:46 +00:00
private Q_SLOTS:
2011-01-30 14:34:42 +00:00
void shadeHoverChanged(bool);
2011-01-30 14:34:42 +00:00
void changed() {
emit KCModule::changed(true);
}
private:
2011-01-30 14:34:42 +00:00
int getShadeHoverInterval(void);
void setShadeHover(bool);
void setShadeHoverInterval(int);
2011-01-30 14:34:42 +00:00
KConfig *config;
bool standAlone;
KWinAdvancedConfigForm *m_ui;
2011-01-30 14:34:42 +00:00
void setHideUtilityWindowsForInactive(bool);
void setInactiveTabsSkipTaskbar(bool);
void setAutogroupSimilarWindows(bool);
void setAutogroupInForeground(bool);
};
#endif // KKWMWINDOWS_H