summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/plugins/src/styles/sgi/main.cpp
blob: 9e4331f821cd2976743bb06d6dfc46fcfae54465 (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
#include <tqstyleplugin.h>
#include <tqsgistyle.h>

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

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

SGIStyle::SGIStyle()
: TQStylePlugin()
{
}

TQStringList SGIStyle::keys() const
{
    TQStringList list;
    list << "SGI";
    return list;
}

TQStyle* SGIStyle::create( const TQString& s )
{
    if ( s.lower() == "sgi" )
        return new TQSGIStyle();

    return 0;
}

TQ_EXPORT_PLUGIN( SGIStyle )