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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
/*
* Copyright (c) 2000 Matthias Elter <elter@kde.org>
* Copyright (c) 2002 Patrick Julien <freak@codepimps.org>
*
* 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 option) 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.
*/
#ifndef KISGLOBAL_H_
#define KISGLOBAL_H_
#include <config.h>
#include LCMS_HEADER
#include <limits.h>
#include <tqglobal.h>
#include <tdeglobal.h>
#define KRITA_VERSION VERSION
const TQ_UINT8 TQ_UINT8_MAX = UCHAR_MAX;
const TQ_UINT16 TQ_UINT16_MAX = 65535;
const TQ_INT32 TQ_INT32_MAX = (2147483647);
const TQ_INT32 TQ_INT32_MIN = (-2147483647-1);
const TQ_UINT8 OPACITY_TRANSPARENT = 0;
const TQ_UINT8 OPACITY_OPAQUE = UCHAR_MAX;
const TQ_UINT8 MAX_SELECTED = UCHAR_MAX;
const TQ_UINT8 MIN_SELECTED = 0;
const TQ_UINT8 SELECTION_THRESHOLD = 1;
enum enumCursorStyle {
CURSOR_STYLE_TOOLICON = 0,
CURSOR_STYLE_CROSSHAIR = 1,
CURSOR_STYLE_POINTER = 2,
CURSOR_STYLE_OUTLINE = 3
};
enum enumResourceTypes {
RESOURCE_PAINTOP,
RESOURCE_FILTER,
RESOURCE_TOOL,
RESOURCE_COLORSPACE
};
/*
* Most wacom pads have 512 levels of pressure; TQt only supports 256, and even
* this is downscaled to 127 levels because the line would be too jittery, and
* the amount of masks take too much memory otherwise.
*/
const TQ_INT32 PRESSURE_LEVELS= 127;
const double PRESSURE_MIN = 0.0;
const double PRESSURE_MAX = 1.0;
const double PRESSURE_DEFAULT = (PRESSURE_MAX - PRESSURE_MIN) / 2;
const double PRESSURE_THRESHOLD = 5.0 / 255.0;
#define CLAMP(x,l,u) ((x)<(l)?(l):((x)>(u)?(u):(x)))
namespace chalk {
// String constants for palettes and palette widgets
const TQString TOOL_OPTION_WIDGET ("tooloptions");
const TQString CONTROL_PALETTE ("controlpalette");
const TQString PAINTBOX ("paintbox");
const TQString COLORBOX ("colorbox");
const TQString LAYERBOX ("layerbox");
}
#endif // KISGLOBAL_H_
|