summaryrefslogtreecommitdiffstats
path: root/src/common/gui/misc_gui.h
blob: 2d58569194f722af91950364b3f91af9d2c23cd4 (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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/***************************************************************************
 *   Copyright (C) 2006-2007 Nicolas Hadacek <hadacek@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.                                   *
 ***************************************************************************/
#ifndef MISC_GUI_H
#define MISC_GUI_H

#include <qlayout.h>
#include <qsplitter.h>
#include <qvaluevector.h>
#include <qvalidator.h>
#include <qcombobox.h>
#include <qwidgetstack.h>

#include <klocale.h>
#include <kpushbutton.h>
#include <ktabwidget.h>
#include <ktabbar.h>
#include <kstdguiitem.h>
#include <klineedit.h>
class KAction;

#include "common/global/generic_config.h"
#include "common/global/log.h"
#include "common/common/number.h"

//-----------------------------------------------------------------------------
class BusyCursor
{
public:
  BusyCursor() { start(); }
  ~BusyCursor() { stop(); }
  static void start();
  static void stop();
  static void pause();
  static void restore();

private:
  static bool _overridePaused;
};

//-----------------------------------------------------------------------------
namespace MessageBox
{
extern void information(const QString &text, Log::ShowMode show, const QString &dontShowAgainName = QString::null);
extern void detailedSorry(const QString &text, const QString &details, Log::ShowMode show);
inline void sorry(const QString &text, Log::ShowMode show) { detailedSorry(text, QString::null, show); }
extern bool askContinue(const QString &text, const KGuiItem &continueButton = KStdGuiItem::cont(),
                        const QString &caption = i18n("Warning"));
extern bool questionYesNo(const QString &text, const KGuiItem &yesButton, const KGuiItem &noButton,
                          const QString &caption = i18n("Warning"));
enum Result { Yes, No, Cancel };
extern Result questionYesNoCancel(const QString &text, const KGuiItem &yesButton, const KGuiItem &noButton,
                                  const QString &caption = i18n("Warning"));
extern void text(const QString &text, Log::ShowMode show);
}

//----------------------------------------------------------------------------
class PopupButton : public KPushButton
{
Q_OBJECT
public:
  PopupButton(QWidget *parent = 0, const char *name = 0);
  PopupButton(const QString &text, QWidget *parent = 0, const char *name = 0);
  void appendAction(KAction *action);
  void appendAction(const QString &label, const QString &icon = QString::null,
                    QObject *receiver = 0, const char *slot = 0);
  int appendItem(const QString &label, uint id) { return appendItem(label, QPixmap(), id); }
  int appendItem(const QString &label, const QString &icon, int id = -1);
  int appendItem(const QString &label, const QPixmap &icon, int id = -1);
  void appendSeparator() { _separator = true; }

signals:
  void activated(int id);

private:
  bool _separator;

  void init();
};

//-----------------------------------------------------------------------------
class Splitter : public QSplitter
{
Q_OBJECT
public:
  Splitter(const QValueList<int> &defaultSizes, Orientation orientation,
           QWidget *parent, const char *name);
  virtual ~Splitter();

private slots:
  void updateSizes();

private:
  QValueList<int> _defaultSizes;
};

//-----------------------------------------------------------------------------
class GuiConfig : public GenericConfig
{
public:
  GuiConfig() : GenericConfig("gui") {}
};

//-----------------------------------------------------------------------------
class SeparatorWidget : public QFrame
{
Q_OBJECT
public:
  SeparatorWidget(QWidget *parent) : QFrame(parent, "separator") {
    setFrameStyle(QFrame::Panel | QFrame::Sunken);
    setMargin(2);
    setFixedHeight(2*2);
  }
};

//-----------------------------------------------------------------------------
class TabBar : public KTabBar
{
Q_OBJECT
public:
  TabBar(QWidget *parent = 0, const char *name = 0);

protected:
  virtual void wheelEvent(QWheelEvent *e);

private:
  bool _ignoreWheelEvent;

  friend class TabWidget;
};

class TabWidget : public KTabWidget
{
Q_OBJECT
public:
  TabWidget(QWidget *parent = 0, const char *name = 0);
  void setIgnoreWheelEvent(bool ignore);

protected:
  virtual void wheelEvent(QWheelEvent *e);
  void setTabBar(TabBar *tabbar);
};

//-----------------------------------------------------------------------------
class ComboBox : public QComboBox
{
Q_OBJECT
public:
  ComboBox(QWidget *parent = 0, const char *name = 0);
  void setIgnoreWheelEvent(bool ignore) { _ignoreWheelEvent = ignore; }

protected:
  virtual void wheelEvent(QWheelEvent *e);

private:
  bool _ignoreWheelEvent;
};

#endif