summaryrefslogtreecommitdiffstats
path: root/kalarm/fontcolour.h
blob: e550831e0bade5d2a1d44f93ca31eca3228dfa79 (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
/*
 *  fontcolour.h  -  font and colour chooser widget
 *  Program:  kalarm
 *  Copyright © 2001,2003,2008 by David Jarvie <djarvie@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.
 */

#ifndef FONTCOLOUR_H
#define FONTCOLOUR_H

#include <tdeversion.h>
#include <tqwidget.h>
#include <tqstringlist.h>
#include <tdefontdialog.h>
#include "colourlist.h"

class ColourCombo;
class TQPushButton;
class CheckBox;


class FontColourChooser : public TQWidget
{
	Q_OBJECT
  
public:
	explicit FontColourChooser(TQWidget* parent = 0, const char* name = 0,
	       bool onlyFixed = false,
	       const TQStringList& fontList = TQStringList(),
	       const TQString& frameLabel = i18n("Requested font"),
	       bool editColours = false, bool fg = true, bool defaultFont = false,
	       int visibleListSize = 8);

	void              setDefaultFont();
	void              setFont(const TQFont&, bool onlyFixed = false);
	bool              defaultFont() const;
	TQFont             font() const;
	TQColor            fgColour() const;
	TQColor            bgColour() const;
	const ColourList& colours() const   { return mColourList; }
	void              setFgColour(const TQColor&);
	void              setBgColour(const TQColor&);
	void              setColours(const ColourList&);
	TQString           sampleText() const;
	void              setSampleText(const TQString& text);
	bool              isReadOnly() const     { return mReadOnly; }
	void              setReadOnly(bool);
	virtual bool      eventFilter(TQObject*, TQEvent*);

private slots:
	void              setSampleColour();
	void              slotDefaultFontToggled(bool);
	void              slotAddColour();
	void              slotRemoveColour();

private:
	ColourCombo*     mFgColourButton;       // or null
	ColourCombo*     mBgColourButton;
	TQPushButton*     mRemoveColourButton;
	TDEFontChooser*    mFontChooser;
	CheckBox*        mDefaultFont;          // or null
	ColourList       mColourList;
	bool             mReadOnly;
};

#endif