KVIrc  4.9.2
DeveloperAPIs
kvi_defaults.h
Go to the documentation of this file.
1 #ifndef _KVI_DEFAULTS_H_
2 #define _KVI_DEFAULTS_H_
3 
4 //=============================================================================
5 //
6 // File : kvi_defaults.h
7 // Creation date : Wed Jun 21 2000 13:23:13 CEST by Szymon Stefanek
8 //
9 // This file is part of the KVIrc IRC client distribution
10 // Copyright (C) 2000-2010 Szymon Stefanek (pragma at kvirc dot net)
11 //
12 // This program is FREE software. You can redistribute it and/or
13 // modify it under the terms of the GNU General Public License
14 // as published by the Free Software Foundation; either version 2
15 // of the License, or (at your option) any later version.
16 //
17 // This program is distributed in the HOPE that it will be USEFUL,
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20 // See the GNU General Public License for more details.
21 //
22 // You should have received a copy of the GNU General Public License
23 // along with this program. If not, write to the Free Software Foundation,
24 // Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25 //
26 //=============================================================================
27 
57 #include "kvi_settings.h"
58 
59 #if defined(COMPILE_ON_WINDOWS) || defined(COMPILE_ON_MINGW)
60 #define KVI_HOME_CONFIG_FILE_NAME "kvirc4.ini"
61 #else
62 #define KVI_HOME_CONFIG_FILE_NAME ".kvirc4.rc"
63 #endif
64 
65 #define KVI_FORCE_LOCALE_FILE_NAME ".kvirc_force_locale"
66 
67 #define KVI_DEFAULT_INCOMING_SUBDIRECTORY_NAME "Downloads"
68 
69 #define KVI_DEFAULT_NICKNAME_TOKEN "%nick%"
70 
71 #define KVI_DEFAULT_NICKNAME1 "newbie"
72 #define KVI_DEFAULT_NICKNAME2 "%nick%|2"
73 #define KVI_DEFAULT_NICKNAME3 "%nick%|3"
74 #define KVI_DEFAULT_NICKNAME4 "%nick%|4"
75 #define KVI_DEFAULT_USERNAME "kvirc"
76 #define KVI_DEFAULT_REALNAME "KVIrc $version(v) $version(n) http://kvirc.net/"
77 
78 #define KVI_DEFAULT_PART_MESSAGE "No boundaries on the net!"
79 #define KVI_DEFAULT_QUIT_MESSAGE "KVIrc $version(v) $version(n) http://www.kvirc.net/"
80 #define KVI_DEFAULT_CTCP_USERINFO_REPLY "I'm too lazy to edit this field."
81 #define KVI_DEFAULT_CTCP_PAGE_REPLY "Your message has been received and logged"
82 #define KVI_DEFAULT_AWAY_MESSAGE "I'm off to see the wizard."
83 #define KVI_DEFAULT_AWAY_NICK "%nick%|NotHere"
84 
85 #define KVI_MAX_PENDING_AVATARS 20
86 #define KVI_MAX_RECENT_SERVERS 10
87 #define KVI_MAX_RECENT_CHANNELS 30
88 #define KVI_MAX_RECENT_NICKNAMES 10
89 #define KVI_MAX_RECENT_TOPICS 20
90 
91 #endif //_KVI_DEFAULTS_H_
This file contains compile time settings.