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

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

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

CompactStyle::CompactStyle()
: QStylePlugin()
{
}

QStringList CompactStyle::keys() const
{
    QStringList list;
    list << "Compact";
    return list;
}

QStyle* CompactStyle::create( const QString& s )
{
    if ( s.lower() == "compact" )
        return new QCompactStyle();

    return 0;
}


Q_EXPORT_PLUGIN( CompactStyle )