summaryrefslogtreecommitdiff
path: root/noncore/styles/liquid/plugin.cpp
blob: f149c29017cc5421882019de8e24c9d759e1a391 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#include "liquid.h"
#include "liquidset.h"
#include "plugin.h"



LiquidInterface::LiquidInterface ( ) :  ref ( 0 )
{
}
    
LiquidInterface::~LiquidInterface ( )
{
}
        
QStyle *LiquidInterface::create ( )
{
	return new LiquidStyle ( );
}

QString LiquidInterface::name ( )
{
	return QObject::tr( "Liquid", "name" );
}

QString LiquidInterface::description ( )
{
	return QObject::tr( "High Performance Liquid style by Mosfet", "description" );
}

QCString LiquidInterface::key ( )
{
	return QCString ( "liquid" );
}

unsigned int LiquidInterface::version ( )
{
	return 100; // 1.0.0 (\d+.\d.\d)
}

QRESULT LiquidInterface::queryInterface ( const QUuid &uuid, QUnknownInterface **iface )
{
	static LiquidSettingsInterface *setiface = 0;

	*iface = 0;
	
	if ( uuid == IID_QUnknown )
		*iface = this;
	else if ( uuid == IID_Style )
		*iface = this;
	else if ( uuid == IID_StyleSettings ) {
		if ( !setiface )
			setiface = new LiquidSettingsInterface ( );
		*iface = setiface;
	}
	
	if ( *iface )
		(*iface)-> addRef ( );
		
	return QS_OK;
}

Q_EXPORT_INTERFACE()
{
	Q_CREATE_INSTANCE( LiquidInterface )
}


LiquidSettingsInterface::LiquidSettingsInterface ( ) :  ref ( 0 )
{
	m_widget = 0;
}
    
LiquidSettingsInterface::~LiquidSettingsInterface ( )
{
}
        
QWidget *LiquidSettingsInterface::create ( QWidget *parent, const char *name )
{
	m_widget = new LiquidSettings ( parent, name ? name : "LIQUID-SETTINGS" );
		
	return m_widget;
}

bool LiquidSettingsInterface::accept ( )
{
	if ( !m_widget )
		return false;

	return m_widget-> writeConfig ( );
}

void LiquidSettingsInterface::reject ( )
{
}

QRESULT LiquidSettingsInterface::queryInterface ( const QUuid &uuid, QUnknownInterface **iface )
{
	*iface = 0;
	
	
	if ( uuid == IID_QUnknown )
		*iface = this;
	else if ( uuid == IID_StyleSettings )
		*iface = this;
	
	if ( *iface )
		(*iface)-> addRef ( );
		
	return QS_OK;
}