You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.6 KiB
80 lines
2.6 KiB
/*
|
|
* 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
|
|
{
|
|
TQ_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
|