summaryrefslogtreecommitdiffstats
path: root/plugins/src/styles/windows/main.cpp
blob: 93684d4952977019fee7e3f4f4dc50e4e34cc196 (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 <ntqwindowsstyle.h>

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

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

WindowsStyle::WindowsStyle()
: TQStylePlugin()
{
}

TQStringList WindowsStyle::keys() const
{
    TQStringList list;
    list << "Windows";
    return list;
}

TQStyle* WindowsStyle::create( const TQString& s )
{
    if ( s.lower() == "windows" )
	return new TQWindowsStyle();

    return 0;
}

TQ_EXPORT_PLUGIN( WindowsStyle )