File: variouswidgets.h

package info (click to toggle)
basket 1.0.2-5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 14,272 kB
  • ctags: 3,211
  • sloc: cpp: 28,424; sh: 9,518; perl: 2,730; makefile: 235
file content (151 lines) | stat: -rw-r--r-- 4,665 bytes parent folder | download
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
/***************************************************************************
 *   Copyright (C) 2003 by Sbastien Laot                                 *
 *   slaout@linux62.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.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/

#ifndef VARIOUSWIDGETS_H
#define VARIOUSWIDGETS_H

#include <qwidget.h>
#include <kcombobox.h>
#include <qdialog.h>
#include <kurllabel.h>
#include <qstring.h>
#include <kdialogbase.h>

class QLineEdit;
class KIconViewItem;
class QIconViewItem;

class Basket;

/** A widget to select a command to run,
  * with a QLineEdit and a QPushButton.
  * @author Sbastien Laot
  */
class RunCommandRequester : public QWidget
{
  Q_OBJECT
  public:
	RunCommandRequester(const QString &runCommand, const QString &message, QWidget *parent = 0, const char *name = 0);
	~RunCommandRequester();
	QString runCommand();
	void setRunCommand(const QString &runCommand);
	QLineEdit *lineEdit() { return m_runCommand; }
  private slots:
	void slotSelCommand();
  private:
	QLineEdit *m_runCommand;
	QString    m_message;
};

/** QComboBox to ask icon size
  * @author Sbastien Laot
  */
class IconSizeCombo : public QComboBox
{
  Q_OBJECT
  public:
	IconSizeCombo(bool rw, QWidget *parent = 0, const char *name = 0);
	~IconSizeCombo();
	int iconSize();
	void setSize(int size);
};

/** A window that the user resize to graphically choose a new image size
  * TODO: Create a SizePushButton or even SizeWidget
  * @author Sbastien Laot
  */
class ViewSizeDialog : public QDialog
{
  Q_OBJECT
  public:
	ViewSizeDialog(QWidget *parent, int w, int h);
	~ViewSizeDialog();
  private:
	virtual void resizeEvent(QResizeEvent *);
	QWidget *m_sizeGrip;
};

/** A label displaying a link that, once clicked, offer a What's This messageBox to help users.
  * @author Sbastien Laot
  */
class HelpLabel : public KURLLabel
{
  Q_OBJECT
  public:
	HelpLabel(const QString &text, const QString &message, QWidget *parent);
	~HelpLabel();
	QString message()                       { return m_message;    }
  public slots:
	void setMessage(const QString &message) { m_message = message; }
	void showMessage();
  protected:
	void keyPressEvent(QKeyEvent *event);
  private:
	QString m_message;
};

/** A dialog to choose the size of an icon.
  * @author Sbastien Laot
  */
class IconSizeDialog : public KDialogBase
{
  Q_OBJECT
  public:
	IconSizeDialog(const QString &caption, const QString &message, const QString &icon, int iconSize, QWidget *parent);
	~IconSizeDialog();
	int iconSize() { return m_iconSize; } /// << @return the choosen icon size (16, 32, ...) or -1 if canceled!
  protected slots:
	void slotCancel();
	void slotSelectionChanged();
	void choose(QIconViewItem*);
  private:
	KIconViewItem *m_size16;
	KIconViewItem *m_size22;
	KIconViewItem *m_size32;
	KIconViewItem *m_size48;
	KIconViewItem *m_size64;
	KIconViewItem *m_size128;
	int m_iconSize;
};

/**
 * A missing class from KDE (and Qt): a combobox to select a font size!
 */
class FontSizeCombo : public KComboBox
{
  Q_OBJECT
  public:
	FontSizeCombo(bool rw, bool withDefault, QWidget *parent = 0, const char *name = 0);
	~FontSizeCombo();
	void setFontSize(int size);
	int fontSize();
  protected:
	void keyPressEvent(QKeyEvent *event);
  signals:
	void sizeChanged(int size);
	void escapePressed();
	void returnPressed2();
  private slots:
	void textChangedInCombo(const QString &text);
  private:
	bool m_withDefault;
};

#endif // VARIOUSWIDGETS_H