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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
///////////////////////////////////////////////////////////////////////////////
//
// File : libkvitheme.cpp
// Created on Sat 30 Dec 2006 14:54:56 by Szymon Stefanek
//
// This toolbar is part of the KVirc irc client distribution
// Copyright (C) 2006 Szymon Stefanek (pragma at kvirc dot net)
//
// This program is FREE software. You can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your opinion) any later version.
//
// This program is distributed in the HOPE that it will be USEFUL,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, write to the Free Software Foundation,
// Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
///////////////////////////////////////////////////////////////////////////////
#include "kvi_module.h"
#include "kvi_locale.h"
#include "kvi_qstring.h"
#include "kvi_parameterlist.h"
#include "kvi_cmdformatter.h"
#include "kvi_qstring.h"
#include "kvi_error.h"
#include "kvi_out.h"
#include "kvi_iconmanager.h"
#include "kvi_mirccntrl.h"
#include "kvi_config.h"
#include "kvi_sourcesdate.h"
#include "managementdialog.h"
#include "themefunctions.h"
QRect g_rectManagementDialogGeometry(0,0,0,0);
/*
@doc: theme.install
@type:
command
@title:
theme.install
@short:
Shows the theme theme management editor
@syntax:
theme.install <package_path:string>
@description:
Attempts to install the themes in the package specified by <package_path>.
*/
static bool theme_kvs_cmd_install(KviKvsModuleCommandCall * c)
{
QString szThemePackFile;
KVSM_PARAMETERS_BEGIN(c)
KVSM_PARAMETER("package_path",KVS_PT_STRING,0,szThemePackFile)
KVSM_PARAMETERS_END(c)
QString szError;
if(!KviThemeFunctions::installThemePackage(szThemePackFile,szError))
{
c->error(__tr2qs_ctx("Error installing theme package: %Q","theme"),&szError);
return false;
}
return true;
}
/*
@doc: theme.dialog
@type:
command
@title:
theme.dialog
@short:
Shows the theme theme management editor
@syntax:
theme.dialog
@description:
Shows the theme theme management editor
*/
static bool theme_kvs_cmd_dialog(KviKvsModuleCommandCall * c)
{
KviThemeManagementDialog::display();
return true;
}
static bool theme_module_init(KviModule *m)
{
KVSM_REGISTER_SIMPLE_COMMAND(m,"dialog",theme_kvs_cmd_dialog);
KVSM_REGISTER_SIMPLE_COMMAND(m,"install",theme_kvs_cmd_install);
QString szBuf;
m->getDefaultConfigFileName(szBuf);
KviConfig cfg(szBuf,KviConfig::Read);
g_rectManagementDialogGeometry = cfg.readRectEntry("EditorGeometry",QRect(10,10,390,440));
return true;
}
static bool theme_module_cleanup(KviModule *m)
{
KviThemeManagementDialog::cleanup();
QString szBuf;
m->getDefaultConfigFileName(szBuf);
KviConfig cfg(szBuf,KviConfig::Write);
cfg.writeEntry("EditorGeometry",g_rectManagementDialogGeometry);
return true;
}
static bool theme_module_can_unload(KviModule * m)
{
return (!KviThemeManagementDialog::instance());
}
KVIRC_MODULE(
"theme", // module name
"1.0.0", // module version
"Copyright (C) 2006 Szymon Stefanek (pragma at kvirc dot net)", // author & (C)
"Theme management functions",
theme_module_init,
theme_module_can_unload,
0,
theme_module_cleanup
)
|