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
|
//=============================================================================
//
// File : libkvilogview.cpp
// Creation date : Sun Feb 10 2000 23:25:10 CEST by Juanjo Alvarez
//
// This file is part of the KVIrc IRC client distribution
// Copyright (C) 2000-2010 Szymon Stefanek (pragma at kvirc dot net)
// Copyright (C) 2011 Elvio Basello (hellvis69 at gmail dot com)
//
// 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 option) 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
//=============================================================================
#include "LogViewWidget.h"
#include "LogViewWindow.h"
#include "KviConfigurationFile.h"
#include "KviModule.h"
#include "KviMainWindow.h"
#include "KviIconManager.h"
#include "KviLocale.h"
#include "KviApplication.h"
static QRect g_rectLogViewGeometry;
LogViewWindow * g_pLogViewWindow = 0;
#define LOGVIEW_MODULE_EXTENSION_NAME "Log viewer extension"
/*
@doc: logview.open
@type:
command
@title:
logview.open
@short:
Opens the log viewer window
@syntax:
logview.open [-m] [-n]
@switches:
!sw: -m
Causes the window to be created as minimized
!sw: -n
Causes the window to be not raised if already open
@description:
Opens a window that allows visual browsing of the logs
stored on disk.
*/
static bool logview_kvs_cmd_open(KviKvsModuleCommandCall * c)
{
QString dummy;
bool bCreateMinimized = c->hasSwitch('m', dummy);
bool bNoRaise = c->hasSwitch('n', dummy);
if(!g_pLogViewWindow)
{
g_pLogViewWindow = new LogViewWindow();
g_pMainWindow->addWindow(g_pLogViewWindow, !bCreateMinimized);
return true;
}
if(!bNoRaise)
g_pLogViewWindow->delayedAutoRaise();
return true;
}
static bool logview_module_init(KviModule * m)
{
g_pLogViewWindow = 0;
KVSM_REGISTER_SIMPLE_COMMAND(m, "open", logview_kvs_cmd_open);
return true;
}
static bool logview_module_cleanup(KviModule *)
{
if(g_pLogViewWindow && g_pMainWindow)
g_pMainWindow->closeWindow(g_pLogViewWindow);
g_pLogViewWindow = 0;
return true;
}
static bool logview_module_can_unload(KviModule *)
{
return (!g_pLogViewWindow);
}
static bool logview_module_ctrl(KviModule *, const char * pcOperation, void * pParam)
{
if(!kvi_strEqualCI("logview::export", pcOperation))
return false;
LogFileData * pData = (LogFileData *)pParam;
if(!pData)
return false;
LogFile * pLog = new LogFile(pData->szName);
int iId = LogFile::PlainText;
if(pData->szType == "html")
iId = LogFile::HTML;
g_pLogViewWindow->createLog(pLog, iId, &(pData->szFile));
return true;
}
KVIRC_MODULE(
"KVIrc Log Viewer Widget",
"4.0.0",
"Copyright (C) 2000 Juanjo Alvarez <juanjux@yahoo.es>\n"
" 2011 Elvio Basello (hellvis69 at gmail dot com)",
"A structured log file viewer",
logview_module_init,
logview_module_can_unload,
logview_module_ctrl,
logview_module_cleanup,
"logview")
|