2014-08-17 12:56:05 +00:00
|
|
|
/* glcommon GL code & font stuff Header
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
* distribution for more details. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef GLCOMMON_H
|
|
|
|
#define GLCOMMON_H
|
|
|
|
|
2011-08-30 17:22:54 +00:00
|
|
|
#include <QColor>
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-05-06 17:39:05 +00:00
|
|
|
#ifndef nullptr
|
|
|
|
#define nullptr NULL
|
|
|
|
#endif
|
|
|
|
|
2014-08-09 17:12:37 +00:00
|
|
|
//! \brief Returns the grayscale brightness (between 0 and 1) of a color
|
|
|
|
float brightness(QColor color);
|
|
|
|
|
2014-04-23 17:20:38 +00:00
|
|
|
#define MIN(a,b) (((a)<(b)) ? (a) : (b));
|
|
|
|
#define MAX(a,b) (((a)<(b)) ? (b) : (a));
|
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
const QColor COLOR_Black = Qt::black;
|
|
|
|
const QColor COLOR_LightGreen = QColor("light green");
|
|
|
|
const QColor COLOR_DarkGreen = Qt::darkGreen;
|
|
|
|
const QColor COLOR_Purple = QColor("purple");
|
|
|
|
const QColor COLOR_Aqua = QColor("#40c0ff");
|
|
|
|
const QColor COLOR_Magenta = Qt::magenta;
|
|
|
|
const QColor COLOR_Blue = Qt::blue;
|
|
|
|
const QColor COLOR_LightBlue = QColor("light blue");
|
|
|
|
const QColor COLOR_Gray = Qt::gray;
|
|
|
|
const QColor COLOR_LightGray = Qt::lightGray;
|
|
|
|
const QColor COLOR_DarkGray = Qt::darkGray;
|
|
|
|
const QColor COLOR_Cyan = Qt::cyan;
|
|
|
|
const QColor COLOR_DarkCyan = Qt::darkCyan;
|
|
|
|
const QColor COLOR_DarkBlue = Qt::darkBlue;
|
|
|
|
const QColor COLOR_DarkMagenta = Qt::darkMagenta;
|
|
|
|
const QColor COLOR_Gold = QColor("gold");
|
|
|
|
const QColor COLOR_White = Qt::white;
|
|
|
|
const QColor COLOR_Red = Qt::red;
|
|
|
|
const QColor COLOR_Pink = QColor("pink");
|
|
|
|
const QColor COLOR_DarkRed = Qt::darkRed;
|
|
|
|
const QColor COLOR_Yellow = Qt::yellow;
|
|
|
|
const QColor COLOR_DarkYellow = Qt::darkYellow;
|
|
|
|
const QColor COLOR_Orange = QColor("orange");
|
|
|
|
const QColor COLOR_Green = Qt::green;
|
|
|
|
const QColor COLOR_Brown = QColor("brown");
|
2013-09-10 15:09:09 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
const QColor COLOR_Text = Qt::black;
|
|
|
|
const QColor COLOR_Outline = Qt::black;
|
2013-09-10 15:09:09 +00:00
|
|
|
|
2014-04-17 05:55:38 +00:00
|
|
|
const QColor COLOR_ALT_BG1 = QColor(0xd8, 0xff, 0xd8,
|
|
|
|
0xff); // Alternating Background Color 1 (Event Flags)
|
|
|
|
const QColor COLOR_ALT_BG2 =
|
|
|
|
COLOR_White; // Alternating Background Color 2 (Event Flags)
|
2013-09-10 15:09:09 +00:00
|
|
|
|
|
|
|
|
2014-07-19 14:09:04 +00:00
|
|
|
const int max_history = 50;
|
|
|
|
|
2014-05-05 16:24:35 +00:00
|
|
|
#ifndef M_PI
|
2014-04-17 05:55:38 +00:00
|
|
|
const double M_PI = 3.141592653589793;
|
2014-05-05 16:24:35 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef BUILD_WITH_MSVC
|
2014-05-09 07:05:54 +00:00
|
|
|
// Visual C++ earlier than 2013 doesn't have round in it's maths header..
|
|
|
|
#if (_MSC_VER < 1800)
|
2011-12-17 14:38:15 +00:00
|
|
|
double round(double number);
|
|
|
|
#endif
|
2014-05-09 07:05:54 +00:00
|
|
|
#endif
|
2011-12-17 14:38:15 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
#endif // GLCOMMON_H
|