blob: 60bd18e732b7676581e38c2171b555591e2960e5 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
|
{
fpGUI - Free Pascal GUI Toolkit
Copyright (C) 2006 - 2014 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
for details about redistributing fpGUI.
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.
Description:
Constants used throughout fpGUI will be defined here. This includes
language constants for localization.
You only need to changes these defines if you want the default
fpGUI language to be something other than English.
Soon the lang_*.inc files will be auto generated from the
actual *.po files. At which point only the .po files need
to be maintained.
}
unit fpg_constants;
{$mode objfpc}{$H+}
interface
uses
SysUtils;
resourcestring
{ Define Compiler language symbol (eg: de for German) to include the correct
language resource file otherwise the Default (English) resource file will
be used. }
{.$DEFINE de} // German
{.$DEFINE ru} // Russian
{.$DEFINE fr} // French
{.$DEFINE pt} // Portuguese (Brazil)
{.$DEFINE af} // Afrikaans
{.$DEFINE it} // Italian
{.$DEFINE es} // Spanish
{$IF defined(de)}
{$I lang_de.inc}
{$ELSEIF defined(ru)}
{$I lang_ru.inc}
{$ELSEIF defined(fr)}
{$I lang_fr.inc}
{$ELSEIF defined(pt)}
{$I lang_pt.inc}
{$ELSEIF defined(af)}
{$I lang_af.inc}
{$ELSEIF defined(it)}
{$I lang_it.inc}
{$ELSEIF defined(es)}
{$I lang_es.inc}
{$ELSE}
{$I lang_en.inc}
{$IFEND}
const
{ Double click support }
DOUBLECLICK_MS = 320; // the max time between left-clicks for doubleclick in milliseconds
DOUBLECLICK_DISTANCE = 5; // max distance between points when doing doubleclick in pixels
ONE_MILISEC = 1/MSecsPerDay;
DEFAULT_HINT_PAUSE = 500; // in milliseconds
{ Default fpGUI help viewer }
FPG_HELPVIEWER = 'docview';
FPG_CONFIG_DIR = 'fpgui_toolkit' + PathDelim;
FPG_BOOKMARKS_FILE = 'bookmarks.ini';
FPG_BOOKMARK_SECTION = 'bookmarks';
// Used for the internal message queue
cMessageQueueSize = 2048;
// version and name constants
{$I VERSION_FILE.inc} // this includes the auto generated: fpGUI_Version = xxx
fpGUIName = 'fpGUI Toolkit';
fpGUIWebsite = 'http://fpgui.sourceforge.net/';
txtWordDelims: set of char = [' ', #9, #13, #10];
implementation
end.
|