825a0372bc
CT: cosmetics, code simplification, proper use of KNumInput, proper accelerators. Sorry to the translators for the number of strings touched. svn path=/trunk/kdebase/kwin/; revision=151959
228 lines
4.9 KiB
C++
228 lines
4.9 KiB
C++
/*
|
|
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#ifndef __KWINDOWCONFIG_H__
|
|
#define __KWINDOWCONFIG_H__
|
|
|
|
#include <qwidget.h>
|
|
#include <config.h>
|
|
|
|
class QRadioButton;
|
|
class QCheckBox;
|
|
class QPushButton;
|
|
class QComboBox;
|
|
class QLabel;
|
|
class QSlider;
|
|
class QButtonGroup;
|
|
class QSpinBox;
|
|
class QVButtonGroup;
|
|
|
|
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 CASCADE_PLACEMENT 1
|
|
#define RANDOM_PLACEMENT 2
|
|
#define INTERACTIVE_PLACEMENT 3
|
|
#define MANUAL_PLACEMENT 4
|
|
|
|
#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 QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
KFocusConfig( KConfig *_config, QWidget *parent=0, const char* name=0 );
|
|
~KFocusConfig();
|
|
|
|
void load();
|
|
void save();
|
|
void defaults();
|
|
|
|
signals:
|
|
void changed( bool state );
|
|
|
|
private slots:
|
|
void setAutoRaiseEnabled();
|
|
void autoRaiseOnTog(bool);//CT 23Oct1998
|
|
void clickRaiseOnTog(bool);
|
|
void slotChanged();
|
|
|
|
private:
|
|
|
|
int getFocus( void );
|
|
int getAutoRaiseInterval( void );
|
|
|
|
void setFocus(int);
|
|
void setAutoRaiseInterval(int);
|
|
void setAutoRaise(bool);
|
|
void setClickRaise(bool);
|
|
void setAltTabMode(bool);
|
|
void setTraverseAll(bool);
|
|
void setRollOverDesktops(bool);
|
|
void setShowPopupinfo(bool);
|
|
|
|
QButtonGroup *fcsBox;
|
|
QComboBox *focusCombo;
|
|
QCheckBox *autoRaiseOn;
|
|
QCheckBox *clickRaiseOn;
|
|
KIntNumInput *autoRaise;
|
|
|
|
QButtonGroup *kbdBox;
|
|
QRadioButton *kdeMode;
|
|
QRadioButton *cdeMode;
|
|
QCheckBox *traverseAll;
|
|
QCheckBox *rollOverDesktops;
|
|
QCheckBox *showPopupinfo;
|
|
|
|
KConfig *config;
|
|
};
|
|
|
|
class KMovingConfig : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
KMovingConfig( KConfig *config, QWidget *parent=0, const char* name=0 );
|
|
~KMovingConfig();
|
|
|
|
void load();
|
|
void save();
|
|
void defaults();
|
|
|
|
signals:
|
|
void changed( bool state );
|
|
|
|
private slots:
|
|
void slotChanged();
|
|
void setMinimizeAnim( bool );
|
|
void setMinimizeAnimSpeed( int );
|
|
|
|
private:
|
|
int getMove( void );
|
|
bool getMinimizeAnim( void );
|
|
int getMinimizeAnimSpeed( void );
|
|
int getResizeOpaque ( void );
|
|
int getPlacement( void ); //CT
|
|
|
|
void setMove(int);
|
|
void setResizeOpaque(int);
|
|
void setPlacement(int); //CT
|
|
void setMoveResizeMaximized(bool);
|
|
|
|
QButtonGroup *windowsBox;
|
|
QCheckBox *opaque;
|
|
|
|
QCheckBox *resizeOpaqueOn;
|
|
QCheckBox* minimizeAnimOn;
|
|
QSlider *minimizeAnimSlider;
|
|
QLabel *minimizeAnimSlowLabel, *minimizeAnimFastLabel;
|
|
QCheckBox *moveResizeMaximized;
|
|
|
|
QComboBox *placementCombo;
|
|
|
|
KConfig *config;
|
|
|
|
int getBorderSnapZone();
|
|
void setBorderSnapZone( int );
|
|
int getWindowSnapZone();
|
|
void setWindowSnapZone( int );
|
|
|
|
QVButtonGroup *MagicBox;
|
|
KIntNumInput *BrdrSnap, *WndwSnap;
|
|
QCheckBox *OverlapSnap;
|
|
|
|
};
|
|
|
|
class KAdvancedConfig : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
KAdvancedConfig( KConfig *config, QWidget *parent=0, const char* name=0 );
|
|
~KAdvancedConfig();
|
|
|
|
void load();
|
|
void save();
|
|
void defaults();
|
|
|
|
signals:
|
|
void changed( bool state );
|
|
|
|
private slots:
|
|
void slotChanged();
|
|
void shadeHoverChanged(bool);
|
|
|
|
//copied from kcontrol/konq/kwindesktop, aleXXX
|
|
void setEBorders();
|
|
|
|
void setXinerama(bool);
|
|
|
|
private:
|
|
|
|
int getShadeHoverInterval (void );
|
|
void setAnimateShade(bool);
|
|
void setShadeHover(bool);
|
|
void setShadeHoverInterval(int);
|
|
|
|
QCheckBox *animateShade;
|
|
QButtonGroup *shBox;
|
|
QCheckBox *shadeHoverOn;
|
|
KIntNumInput *shadeHover;
|
|
|
|
#ifdef HAVE_XINERAMA
|
|
QButtonGroup *xineramaBox;
|
|
QCheckBox *xineramaEnable;
|
|
QCheckBox *xineramaMovementEnable;
|
|
QCheckBox *xineramaPlacementEnable;
|
|
QCheckBox *xineramaMaximizeEnable;
|
|
#endif
|
|
|
|
KConfig *config;
|
|
|
|
int getElectricBorders( void );
|
|
int getElectricBorderDelay();
|
|
void setElectricBorders( int );
|
|
void setElectricBorderDelay( int );
|
|
|
|
QVButtonGroup *electricBox;
|
|
QRadioButton *active_disable;
|
|
QRadioButton *active_move;
|
|
QRadioButton *active_always;
|
|
KIntNumInput *delays;
|
|
};
|
|
|
|
#endif
|
|
|