summaryrefslogtreecommitdiffstats
path: root/plugins/src/styles/motif/main.cpp
blob: c818e4d5916d6f5dd1b4cf8c9a23ccd4ae511419 (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
#include <qstyleplugin.h>
#include <qmotifstyle.h>

class MotifStyle : public QStylePlugin
{
public:
    MotifStyle();

    QStringList keys() const;
    QStyle *create( const QString& );
};

MotifStyle::MotifStyle()
: QStylePlugin()
{
}

QStringList MotifStyle::keys() const
{
    QStringList list;
    list << "Motif";
    return list;
}

QStyle* MotifStyle::create( const QString& s )
{
    if ( s.lower() == "motif" )
	return new QMotifStyle();

    return 0;
}

Q_EXPORT_PLUGIN( MotifStyle )