summaryrefslogtreecommitdiffstats
path: root/src/komposepreferences.h
blob: f634bfc5d6284aff0a92bf0a610d736bb3176d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
//
// C++ Interface: komposepreferences
//
// Description:
//
//
// Author: Hans Oischinger <hans.oischinger@kde-mail.net>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KOMPOSEPREFERENCES_H
#define KOMPOSEPREFERENCES_H

#include <kdialogbase.h>

#include <klocale.h>

class QCheckBox;
class QFrame;
class QSpinBox;
class KColorButton;
class QButtonGroup;
class QSlider;
class QPushButton;
class QFont;
class QRadioButton;

/**
@author Hans Oischinger
*/
class KomposePreferences : public KDialogBase
{
  Q_OBJECT
public:
  KomposePreferences();

  ~KomposePreferences();


protected:
  void fillPages();

protected slots:
  void slotApply();
  void slotOk();
  void updateIconSliderDesc( int );
  void showDesktopTitleFontDialog();
  void showWindowTitleFontDialog();
  void setUseCompositeToggled( bool );

private:
  bool m_hasXinerama;
  QFrame *page1;
  QFrame *page2;

  QButtonGroup *defaultViewBtnGroup;
  QRadioButton *defaultViewWorld;
  QRadioButton *defaultViewVirtualDesks;
  QRadioButton *defaultViewCurrentDesk;

  QCheckBox *useComposite;

  QCheckBox *passiveScreenshots;
  QCheckBox *dynamicVirtDeskLayout;
  QCheckBox *cacheScaledPixmaps;

  QCheckBox *imageEffects;

  QSpinBox *screenshotGrabDelay;

  QCheckBox *showIcons;
  QSlider *iconSize;
  QLabel *iconSizeDescription;

  QCheckBox *showWindowTitles;
  QPushButton *windowTitleFontBtn;
  QFont *windowTitleFont;

  KColorButton *windowTitleFontColor;
  QCheckBox *showWindowTitleShadow;
  KColorButton *windowTitleFontShadowColor;
  QLabel *windowTitleFontColorLabel;

  QPushButton *desktopTitleFontBtn;
  QLabel *desktopTitleFontColorLabel;
  QLabel *desktopTitleFontHighlightColorLabel;
  KColorButton *desktopTitleFontColor;
  KColorButton *desktopTitleFontHighlightColor;
  QFont *desktopTitleFont;

  QCheckBox *m_topLeftCorner;
  QCheckBox *m_bottomLeftCorner;
  QCheckBox *m_topRightCorner;
  QCheckBox *m_bottomRightCorner;

  QCheckBox *m_topEdge;
  QCheckBox *m_bottomEdge;
  QCheckBox *m_rightEdge;
  QCheckBox *m_leftEdge;
  QSpinBox *autoLockDelay;

  QCheckBox *showDesktopNum;

  QSpinBox *m_viewScreen;
  QCheckBox *m_viewScreenAll;
};

#endif