KVIrc 5.2.6
Developer APIs
kvi_defaults.h
Go to the documentation of this file.
1#ifndef _KVI_DEFAULTS_H_
2#define _KVI_DEFAULTS_H_
3//=============================================================================
4//
5// File : kvi_defaults.h
6// Creation date : Wed Jun 21 2000 13:23:13 CEST by Szymon Stefanek
7//
8// This file is part of the KVIrc IRC client distribution
9// Copyright (C) 2000-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
56#include "kvi_settings.h"
57
58#ifdef COMPILE_KDE_SUPPORT
59#define KVI_HOME_CONFIG_FILE_NAME "kvircrc"
60#elif defined(COMPILE_ON_WINDOWS) || defined(COMPILE_ON_MINGW)
61#define KVI_HOME_CONFIG_FILE_NAME "kvirc4.ini"
62#else
63#define KVI_HOME_CONFIG_FILE_NAME ".kvirc4.rc"
64#endif
65
66#define KVI_FORCE_LOCALE_FILE_NAME ".kvirc_force_locale"
67
68#define KVI_DEFAULT_INCOMING_SUBDIRECTORY_NAME "Downloads"
69
70#define KVI_DEFAULT_NICKNAME_TOKEN "%nick%"
71
72#define KVI_DEFAULT_NICKNAME1 "newbie"
73#define KVI_DEFAULT_NICKNAME2 "%nick%|2"
74#define KVI_DEFAULT_NICKNAME3 "%nick%|3"
75#define KVI_DEFAULT_NICKNAME4 "%nick%|4"
76#define KVI_DEFAULT_USERNAME "kvirc"
77#define KVI_DEFAULT_REALNAME "KVIrc $version(v) $version(n) http://kvirc.net/"
78
79#define KVI_DEFAULT_PART_MESSAGE "No boundaries on the net!"
80#define KVI_DEFAULT_QUIT_MESSAGE "KVIrc $version(v) $version(n) http://www.kvirc.net/"
81#define KVI_DEFAULT_CTCP_USERINFO_REPLY "I'm too lazy to edit this field."
82#define KVI_DEFAULT_CTCP_PAGE_REPLY "Your message has been received and logged"
83#define KVI_DEFAULT_AWAY_MESSAGE "I'm off to see the wizard."
84#define KVI_DEFAULT_AWAY_NICK "%nick%|NotHere"
85
86#define KVI_MAX_PENDING_AVATARS 20
87#define KVI_MAX_RECENT_SERVERS 10
88#define KVI_MAX_RECENT_CHANNELS 30
89#define KVI_MAX_RECENT_NICKNAMES 10
90#define KVI_MAX_RECENT_TOPICS 20
91
92#endif //_KVI_DEFAULTS_H_
This file contains compile time settings.