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
|
#ifndef _OPTW_IRCVIEW_H_
#define _OPTW_IRCVIEW_H_
//=============================================================================
//
// File : OptionsWidget_ircView.h
// Creation date : Sat Aug 11 2001 03:28:19 CEST by Szymon Stefanek
//
// This file is part of the KVIrc irc client distribution
// Copyright (C) 2001 Szymon Stefanek (pragma at kvirc dot net)
// Copyright (C) 2008 Elvio Basello (hellvis69 at netsons dot org)
//
// 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
//=============================================================================
#include "KviOptionsWidget.h"
#include <QComboBox>
#define KVI_OPTIONS_WIDGET_ICON_OptionsWidget_ircViewTheme KviIconManager::IrcView
#define KVI_OPTIONS_WIDGET_NAME_OptionsWidget_ircViewTheme __tr2qs_no_lookup("Output")
#define KVI_OPTIONS_WIDGET_KEYWORDS_OptionsWidget_ircViewTheme __tr2qs_no_lookup("theme,colors,output")
#define KVI_OPTIONS_WIDGET_GROUP_OptionsWidget_ircViewTheme "theme"
#define KVI_OPTIONS_WIDGET_CONTAINER_OptionsWidget_ircViewTheme true
class OptionsWidget_ircViewTheme : public KviOptionsWidget
{
Q_OBJECT
public:
OptionsWidget_ircViewTheme(QWidget * pParent);
~OptionsWidget_ircViewTheme();
};
#define KVI_OPTIONS_WIDGET_ICON_OptionsWidget_ircViewLook KviIconManager::IrcView
#define KVI_OPTIONS_WIDGET_NAME_OptionsWidget_ircViewLook __tr2qs_no_lookup("Look")
#define KVI_OPTIONS_WIDGET_KEYWORDS_OptionsWidget_ircViewLook __tr2qs_no_lookup("theme,colors,output")
#define KVI_OPTIONS_WIDGET_GROUP_OptionsWidget_ircViewLook "theme"
#define KVI_OPTIONS_WIDGET_PARENT_OptionsWidget_ircViewLook OptionsWidget_ircViewTheme
#define KVI_OPTIONS_WIDGET_PRIORITY_OptionsWidget_ircViewLook 30
class OptionsWidget_ircViewLook : public KviOptionsWidget
{
Q_OBJECT
private:
QComboBox * m_pHorizontalAlign;
QComboBox * m_pVerticalAlign;
public:
OptionsWidget_ircViewLook(QWidget * parent);
~OptionsWidget_ircViewLook();
public:
virtual void commit();
};
#define KVI_OPTIONS_WIDGET_ICON_OptionsWidget_ircViewFeatures KviIconManager::IrcView
#define KVI_OPTIONS_WIDGET_NAME_OptionsWidget_ircViewFeatures __tr2qs_no_lookup("Features")
#define KVI_OPTIONS_WIDGET_GROUP_OptionsWidget_ircViewFeatures "theme"
#define KVI_OPTIONS_WIDGET_PARENT_OptionsWidget_ircViewFeatures OptionsWidget_ircViewTheme
#define KVI_OPTIONS_WIDGET_PRIORITY_OptionsWidget_ircViewFeatures 20
class OptionsWidget_ircViewFeatures : public KviOptionsWidget
{
Q_OBJECT
public:
OptionsWidget_ircViewFeatures(QWidget * parent);
~OptionsWidget_ircViewFeatures();
};
#define KVI_OPTIONS_WIDGET_ICON_OptionsWidget_ircViewMarker KviIconManager::IrcView
#define KVI_OPTIONS_WIDGET_NAME_OptionsWidget_ircViewMarker __tr2qs_no_lookup("Marker")
#define KVI_OPTIONS_WIDGET_GROUP_OptionsWidget_ircViewMarker "theme"
#define KVI_OPTIONS_WIDGET_PARENT_OptionsWidget_ircViewMarker OptionsWidget_ircViewTheme
#define KVI_OPTIONS_WIDGET_PRIORITY_OptionsWidget_ircViewMarker 10
class OptionsWidget_ircViewMarker : public KviOptionsWidget
{
Q_OBJECT
public:
OptionsWidget_ircViewMarker(QWidget * pParent);
~OptionsWidget_ircViewMarker();
virtual void commit();
private:
QComboBox * m_pMarkerStyle;
};
#endif //!_OPTW_IRCVIEW_H_
|