You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.7 KiB
53 lines
1.7 KiB
/***************************************************************************
|
|
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__ ) */
|