2012-05-14 14:47:14 -05:00
|
|
|
//
|
|
|
|
// Style.h
|
|
|
|
// The Powder Toy
|
|
|
|
//
|
|
|
|
// Created by Simon Robertshaw on 14/05/2012.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef The_Powder_Toy_Style_h
|
|
|
|
#define The_Powder_Toy_Style_h
|
|
|
|
#include "interface/Colour.h"
|
|
|
|
|
|
|
|
namespace style
|
|
|
|
{
|
|
|
|
class Colour
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static ui::Colour InformationTitle;
|
|
|
|
static ui::Colour WarningTitle;
|
|
|
|
static ui::Colour ErrorTitle;
|
|
|
|
|
2012-05-15 12:13:17 -05:00
|
|
|
static ui::Colour ConfirmButton;
|
|
|
|
|
2012-05-14 14:47:14 -05:00
|
|
|
static ui::Colour ActiveBorder;
|
|
|
|
static ui::Colour InactiveBorder;
|
|
|
|
|
|
|
|
static ui::Colour ActiveBackground;
|
|
|
|
static ui::Colour InactiveBackground;
|
|
|
|
};
|
|
|
|
class Metrics
|
|
|
|
{
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|