blob: 38bf783065facce25232e00d121ef678d72524df (
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
|
//
// C++ Interface: colordialog
//
// Description:
//
//
// Author: Andras Mantia <[email protected]>, (C) 2008
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef FONTDIALOG_H
#define FONTDIALOG_H
#include <qlabel.h>
#include <kommanderwidget.h>
#include <qfont.h>
/**
@author Andras Mantia <[email protected]>
*/
class FontDialog : public QLabel, public KommanderWidget
{
Q_OBJECT
Q_PROPERTY(QString populationText READ populationText WRITE setPopulationText DESIGNABLE false)
Q_PROPERTY(QStringList associations READ associatedText WRITE setAssociatedText DESIGNABLE false)
Q_PROPERTY(bool KommanderWidget READ isKommanderWidget)
public:
FontDialog(QWidget *parent = 0, const char *name = 0);
~FontDialog();
virtual bool isKommanderWidget() const;
virtual QString currentState() const;
virtual bool isFunctionSupported(int function);
virtual QString handleDCOP(int function, const QStringList& args);
virtual QStringList associatedText() const;
virtual void setAssociatedText(const QStringList&);
virtual QString populationText() const;
virtual void setPopulationText(const QString&);
public slots:
virtual void setWidgetText(const QString &);
virtual void populate();
QFont m_font;
};
#endif
|