blob: 3794f5ec6acc2a8b83b8d2fc5c6608654666e1ff (
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
|
/***************************************************************************
main.h - description
-------------------
begin : Sat Jul 8 2000
copyright : (C) 2000 by Artur Rataj
email : art@zeus.polsl.gliwice.pl
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef __MAIN_H__
#define __MAIN_H__
#include <tqstring.h>
#include <tqdir.h>
/** The maximum red, green or blue component value in RGB scheme
*/
const int RGB_MAX_COMPONENT_VALUE = 255;
/** The maximum hue in HSV scheme
*/
const int HSV_MAX_H_VALUE = 359;
/** The maximum saturation in HSV scheme
*/
const int HSV_MAX_S_VALUE = 255;
/** The maximum value in HSV scheme
*/
const int HSV_MAX_V_VALUE = 255;
/** name of KDE config directories containing palette files
*/
static const TQString palettesDir("colors");
/** last open file dialog path
*/
static TQString lastOpenPaletteFileDir = TQDir::homeDirPath();
/** last save file as dialog path
*/
static TQString lastSavePaletteAsFileDir = TQDir::homeDirPath();
#endif /* !defined( __MAIN_H__ ) */
|