summaryrefslogtreecommitdiffstats
path: root/plugins/src/styles/motif/main.cpp
blob: 118a577df6af66e9a0d59235dff2fb3e2659f72d (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 <ntqstyleplugin.h>
#include <ntqmotifstyle.h>

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

    TQStringList keys() const;
    TQStyle *create( const TQString& );
};

MotifStyle::MotifStyle()
: TQStylePlugin()
{
}

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

TQStyle* MotifStyle::create( const TQString& s )
{
    if ( s.lower() == "motif" )
	return new TQMotifStyle();

    return 0;
}

Q_EXPORT_PLUGIN( MotifStyle )