2007-04-29 17:35:43 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2008-05-12 12:13:52 +00:00
|
|
|
#ifndef KKWMWINDOWS_H
|
|
|
|
#define KKWMWINDOWS_H
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
#include <kcmodule.h>
|
2007-06-25 11:03:18 +00:00
|
|
|
#include <config-workspace.h>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
class QRadioButton;
|
|
|
|
class QCheckBox;
|
|
|
|
class QPushButton;
|
|
|
|
class QComboBox;
|
|
|
|
class QGroupBox;
|
|
|
|
class QLabel;
|
|
|
|
class QSlider;
|
2008-05-12 12:13:52 +00:00
|
|
|
class KButtonGroup;
|
2007-04-29 17:35:43 +00:00
|
|
|
class QSpinBox;
|
|
|
|
|
|
|
|
class KColorButton;
|
|
|
|
class KIntNumInput;
|
|
|
|
|
|
|
|
#define TRANSPARENT 0
|
|
|
|
#define OPAQUE 1
|
|
|
|
|
|
|
|
#define CLICK_TO_FOCUS 0
|
|
|
|
#define FOCUS_FOLLOW_MOUSE 1
|
|
|
|
|
|
|
|
#define TITLEBAR_PLAIN 0
|
|
|
|
#define TITLEBAR_SHADED 1
|
|
|
|
|
|
|
|
#define RESIZE_TRANSPARENT 0
|
|
|
|
#define RESIZE_OPAQUE 1
|
|
|
|
|
|
|
|
#define SMART_PLACEMENT 0
|
|
|
|
#define MAXIMIZING_PLACEMENT 1
|
|
|
|
#define CASCADE_PLACEMENT 2
|
|
|
|
#define RANDOM_PLACEMENT 3
|
|
|
|
#define CENTERED_PLACEMENT 4
|
|
|
|
#define ZEROCORNERED_PLACEMENT 5
|
|
|
|
#define INTERACTIVE_PLACEMENT 6
|
|
|
|
#define MANUAL_PLACEMENT 7
|
|
|
|
|
|
|
|
#define CLICK_TO_FOCUS 0
|
|
|
|
#define FOCUS_FOLLOWS_MOUSE 1
|
|
|
|
#define FOCUS_UNDER_MOUSE 2
|
|
|
|
#define FOCUS_STRICTLY_UNDER_MOUSE 3
|
|
|
|
|
|
|
|
class QSpinBox;
|
|
|
|
|
|
|
|
class KFocusConfig : public KCModule
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
KFocusConfig( bool _standAlone, KConfig *_config, const KComponentData &inst, QWidget *parent );
|
|
|
|
~KFocusConfig();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
void defaults();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void setDelayFocusEnabled();
|
|
|
|
void setAutoRaiseEnabled();
|
|
|
|
void autoRaiseOnTog(bool);//CT 23Oct1998
|
|
|
|
void delayFocusOnTog(bool);
|
|
|
|
void clickRaiseOnTog(bool);
|
|
|
|
void updateAltTabMode();
|
2007-05-09 12:34:55 +00:00
|
|
|
void updateActiveMouseScreen();
|
2007-04-29 17:35:43 +00:00
|
|
|
void changed() { emit KCModule::changed(true); }
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
int getFocus( void );
|
|
|
|
int getAutoRaiseInterval( void );
|
|
|
|
int getDelayFocusInterval( void );
|
|
|
|
|
|
|
|
void setFocus(int);
|
|
|
|
void setAutoRaiseInterval(int);
|
|
|
|
void setAutoRaise(bool);
|
|
|
|
void setDelayFocusInterval(int);
|
|
|
|
void setDelayFocus(bool);
|
|
|
|
void setClickRaise(bool);
|
2007-05-09 12:34:55 +00:00
|
|
|
void setSeparateScreenFocus(bool);
|
|
|
|
void setActiveMouseScreen(bool);
|
2007-04-29 17:35:43 +00:00
|
|
|
void setAltTabMode(bool);
|
|
|
|
void setTraverseAll(bool);
|
|
|
|
void setRollOverDesktops(bool);
|
|
|
|
void setShowPopupinfo(bool);
|
|
|
|
|
2008-01-10 13:18:01 +00:00
|
|
|
QGroupBox *fcsBox;
|
2007-04-29 17:35:43 +00:00
|
|
|
QComboBox *focusCombo;
|
|
|
|
QCheckBox *autoRaiseOn;
|
|
|
|
QCheckBox *delayFocusOn;
|
|
|
|
QCheckBox *clickRaiseOn;
|
|
|
|
KIntNumInput *autoRaise;
|
|
|
|
KIntNumInput *delayFocus;
|
2007-05-09 12:34:55 +00:00
|
|
|
QCheckBox *separateScreenFocus;
|
|
|
|
QCheckBox *activeMouseScreen;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2008-05-12 12:13:52 +00:00
|
|
|
KButtonGroup *kbdBox;
|
2007-04-29 17:35:43 +00:00
|
|
|
QCheckBox *altTabPopup;
|
|
|
|
QCheckBox *traverseAll;
|
|
|
|
QCheckBox *rollOverDesktops;
|
|
|
|
QCheckBox *showPopupinfo;
|
|
|
|
|
|
|
|
KConfig *config;
|
|
|
|
bool standAlone;
|
|
|
|
};
|
|
|
|
|
|
|
|
class KMovingConfig : public KCModule
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
KMovingConfig( bool _standAlone, KConfig *config, const KComponentData &inst, QWidget *parent );
|
|
|
|
~KMovingConfig();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
void defaults();
|
|
|
|
|
|
|
|
private slots:
|
2007-11-20 16:07:20 +00:00
|
|
|
void changed() { emit KCModule::changed(true); }
|
2007-04-29 17:35:43 +00:00
|
|
|
void slotBrdrSnapChanged( int );
|
|
|
|
void slotWndwSnapChanged( int );
|
2008-07-09 15:18:47 +00:00
|
|
|
void slotCntrSnapChanged( int );
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int getMove( void );
|
|
|
|
int getResizeOpaque ( void );
|
|
|
|
bool getGeometryTip( void ); //KS
|
|
|
|
int getPlacement( void ); //CT
|
|
|
|
|
|
|
|
void setMove(int);
|
|
|
|
void setResizeOpaque(int);
|
|
|
|
void setGeometryTip(bool); //KS
|
|
|
|
void setPlacement(int); //CT
|
|
|
|
void setMoveResizeMaximized(bool);
|
|
|
|
|
2008-05-12 12:13:52 +00:00
|
|
|
KButtonGroup *windowsBox;
|
2007-04-29 17:35:43 +00:00
|
|
|
QCheckBox *opaque;
|
|
|
|
QCheckBox *resizeOpaqueOn;
|
|
|
|
QCheckBox *geometryTipOn;
|
|
|
|
QCheckBox *moveResizeMaximized;
|
|
|
|
|
|
|
|
QComboBox *placementCombo;
|
|
|
|
|
|
|
|
KConfig *config;
|
|
|
|
bool standAlone;
|
|
|
|
|
|
|
|
int getBorderSnapZone();
|
|
|
|
void setBorderSnapZone( int );
|
|
|
|
int getWindowSnapZone();
|
|
|
|
void setWindowSnapZone( int );
|
2008-07-09 15:18:47 +00:00
|
|
|
int getCenterSnapZone();
|
|
|
|
void setCenterSnapZone( int );
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2008-05-12 12:13:52 +00:00
|
|
|
KButtonGroup *MagicBox;
|
2008-07-09 15:18:47 +00:00
|
|
|
KIntNumInput *BrdrSnap, *WndwSnap, *CntrSnap;
|
2007-04-29 17:35:43 +00:00
|
|
|
QCheckBox *OverlapSnap;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class KAdvancedConfig : public KCModule
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
KAdvancedConfig( bool _standAlone, KConfig *config, const KComponentData &inst, QWidget *parent );
|
|
|
|
~KAdvancedConfig();
|
|
|
|
|
|
|
|
void load();
|
|
|
|
void save();
|
|
|
|
void defaults();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void shadeHoverChanged(bool);
|
|
|
|
|
|
|
|
//copied from kcontrol/konq/kwindesktop, aleXXX
|
|
|
|
void setEBorders();
|
|
|
|
|
|
|
|
void changed() { emit KCModule::changed(true); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
int getShadeHoverInterval (void );
|
|
|
|
void setShadeHover(bool);
|
|
|
|
void setShadeHoverInterval(int);
|
|
|
|
|
2008-05-12 12:13:52 +00:00
|
|
|
KButtonGroup *shBox;
|
2007-04-29 17:35:43 +00:00
|
|
|
QCheckBox *shadeHoverOn;
|
|
|
|
KIntNumInput *shadeHover;
|
|
|
|
|
|
|
|
KConfig *config;
|
|
|
|
bool standAlone;
|
|
|
|
|
|
|
|
int getElectricBorders( void );
|
|
|
|
int getElectricBorderDelay();
|
|
|
|
void setElectricBorders( int );
|
|
|
|
void setElectricBorderDelay( int );
|
|
|
|
|
2008-05-12 12:13:52 +00:00
|
|
|
KButtonGroup *electricBox;
|
2007-04-29 17:35:43 +00:00
|
|
|
QRadioButton *active_disable;
|
|
|
|
QRadioButton *active_move;
|
|
|
|
QRadioButton *active_always;
|
|
|
|
KIntNumInput *delays;
|
|
|
|
|
|
|
|
void setFocusStealing( int );
|
|
|
|
void setHideUtilityWindowsForInactive( bool );
|
|
|
|
|
|
|
|
QComboBox* focusStealing;
|
|
|
|
QCheckBox* hideUtilityWindowsForInactive;
|
|
|
|
};
|
2007-08-27 04:31:52 +00:00
|
|
|
|
2008-05-12 12:13:52 +00:00
|
|
|
#endif // KKWMWINDOWS_H
|