KVIrc  4.9.2
DeveloperAPIs
KviUserAction.h
Go to the documentation of this file.
1 #ifndef _KVI_USERACTION_H_
2 #define _KVI_USERACTION_H_
3 
4 //=============================================================================
5 //
6 // File : KviUserAction.h
7 // Creation date : Tue Mar 18 2003 13:36:12 by Szymon Stefanek
8 //
9 // This file is part of the KVIrc IRC client distribution
10 // Copyright (C) 2003-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 #define KVI_USERACTION_ACTION 0
60 #define KVI_USERACTION_PRIVMSG 1
61 #define KVI_USERACTION_NOTICE 2
62 #define KVI_USERACTION_TOPIC 3
63 #define KVI_USERACTION_KICK 4
64 #define KVI_USERACTION_NICK 5
65 #define KVI_USERACTION_CHANMODE 6
66 #define KVI_USERACTION_JOIN 7
67 #define KVI_USERACTION_PART 8
68 
69 #define KVI_NUM_USERACTION_TYPES 9
70 
71 #define KVI_MAX_TEMPERATURE 150
72 #define KVI_HOT_TEMPERATURE 100
73 #define KVI_HALF_HOT_TEMPERATURE 40
74 #define KVI_MID_TEMPERATURE 0
75 #define KVI_HALF_COLD_TEMPERATURE -40
76 #define KVI_COLD_TEMPERATURE -100
77 #define KVI_MIN_TEMPERATURE -150
78 
79 //
80 // ACTION 30
81 // NOTICE 25
82 // PRIVMSG 25
83 // TOPIC 20
84 // KICK 10
85 // OP 5
86 // VOICE 5
87 // DEOP -5
88 // DEVOICE -5
89 // UNBAN -15
90 // BAN -20
91 // CHANMODE -25
92 // NICK -30
93 // JOIN -30
94 //
95 
96 extern KVIRC_API int kvi_getUserActionTemperature(unsigned int uIdx);
97 
98 #endif // _KVI_USERACTION_H_
#define KVIRC_API
Definition: kvi_settings.h:128
KVIRC_API int kvi_getUserActionTemperature(unsigned int uIdx)
Definition: KviUserAction.cpp:39
This file contains compile time settings.