summaryrefslogtreecommitdiffstats
path: root/src/modules/notifier/notifiersettings.h
blob: dea985235be4d3f9364d71d08ba56567456daa31 (plain)
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
#ifndef _NOTIFIER_SETTINGS_H_
#define _NOTIFIER_SETTINGS_H_
//=============================================================================
//
//   File : kvinotifierwindowcaption.h
//   Created on gio 30 dic 2004 21:21:33 by Iacopo Palazzi
//
//   This file is part of the Notifier - KVIrc Distribution distribution
//   Copyright (C) 2004 Iacopo Palazzi < iakko(at)siena(dot)linux(dot)it >
//
//   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.
//
//=============================================================================

// Global settings for KviNotifier



#define WDG_MIN_WIDTH	370
#define WDG_MIN_HEIGHT	150
#define WDG_BORDER_THICKNESS 5
#define SPACING 2

#define WDG_ICON_OUT		0
#define WDG_ICON_OVER		1
#define WDG_ICON_CLICKED	2
#define WDG_ICON_ON			3
#define WDG_ICON_OFF		4

#define NTF_TABS_FONT_BASELINE	8

#define MAX_MESSAGES_IN_WINDOW 20
// keep hidden messages for 600 seconds : 10 min
#define MAX_MESSAGE_LIFETIME 600

#define OPACITY_STEP 0.07

#define NUM_OLD_COLORS 6

#define WDG_UPSX	1
#define WDG_UP		2
#define WDG_UPDX	3
#define WDG_DWNSX	4
#define WDG_DWN		5
#define WDG_DWNDX	6
#define WDG_SX		7
#define WDG_DX		8

#define	m_mac_bkgColor	TQColor(236,233,216)		// Light-brown color of notifier background widget

enum State { Hidden, Showing, Visible, Hiding , FocusingOff, FocusingOn };
enum TabState { Normal, Highlighted, Changed };

#endif	//_NOTIFIER_SETTINGS_H_