KVIrc 5.2.6
Developer APIs
OptionsWidget_irc.h
Go to the documentation of this file.
1#ifndef _OPTW_IRC_H_
2#define _OPTW_IRC_H_
3//=============================================================================
4//
5// File : OptionsWidget_irc.h
6// Creation date : Sun Dec 2 18:59:49 2001 GMT by Szymon Stefanek
7//
8// This file is part of the KVIrc IRC client distribution
9// Copyright (C) 2001-2010 Szymon Stefanek (pragma at kvirc dot net)
10//
11// This program is FREE software. You can redistribute it and/or
12// modify it under the terms of the GNU General Public License
13// as published by the Free Software Foundation; either version 2
14// of the License, or (at your option) any later version.
15//
16// This program is distributed in the HOPE that it will be USEFUL,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19// See the GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program. If not, write to the Free Software Foundation,
23// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24//
25//=============================================================================
26
27#include "KviOptionsWidget.h"
28
29#define KVI_OPTIONS_WIDGET_ICON_OptionsWidget_irc KviIconManager::Irc
30#define KVI_OPTIONS_WIDGET_NAME_OptionsWidget_irc __tr2qs_no_lookup("IRC")
31#define KVI_OPTIONS_WIDGET_PRIORITY_OptionsWidget_irc 80000
32#define KVI_OPTIONS_WIDGET_CONTAINER_OptionsWidget_irc true
33
35{
36 Q_OBJECT
37public:
38 OptionsWidget_irc(QWidget * parent);
40};
41
42#define KVI_OPTIONS_WIDGET_ICON_OptionsWidget_ircGeneral KviIconManager::Irc
43#define KVI_OPTIONS_WIDGET_NAME_OptionsWidget_ircGeneral __tr2qs_no_lookup("General")
44#define KVI_OPTIONS_WIDGET_PARENT_OptionsWidget_ircGeneral OptionsWidget_irc
45#define KVI_OPTIONS_WIDGET_PRIORITY_OptionsWidget_ircGeneral 80000
46
48{
49 Q_OBJECT
50public:
51 OptionsWidget_ircGeneral(QWidget * parent);
53};
54
55#define KVI_OPTIONS_WIDGET_ICON_OptionsWidget_ircAdvanced KviIconManager::Gui
56#define KVI_OPTIONS_WIDGET_NAME_OptionsWidget_ircAdvanced __tr2qs_no_lookup("Advanced")
57#define KVI_OPTIONS_WIDGET_PARENT_OptionsWidget_ircAdvanced OptionsWidget_irc
58#define KVI_OPTIONS_WIDGET_PRIORITY_OptionsWidget_ircAdvanced 50000
59
61{
62 Q_OBJECT
63public:
64 OptionsWidget_ircAdvanced(QWidget * parent);
66};
67
68#endif //_OPTW_IRC_H_
KviOptionsWidget(QWidget *parent, const char *name=nullptr, bool bSunken=true)
Definition KviOptionsWidget.cpp:43
OptionsWidget_ircAdvanced(QWidget *parent)
Definition OptionsWidget_irc.cpp:59
OptionsWidget_ircGeneral(QWidget *parent)
Definition OptionsWidget_irc.cpp:41
OptionsWidget_irc(QWidget *parent)
Definition OptionsWidget_irc.cpp:32