2010-05-14 15:04:01 +02:00
|
|
|
#ifndef PREFERENCES_H
|
|
|
|
#define PREFERENCES_H
|
|
|
|
|
|
|
|
#include <wx/colour.h>
|
2010-06-22 12:29:36 +02:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
struct category
|
|
|
|
{
|
|
|
|
wxString id;
|
|
|
|
wxString name;
|
|
|
|
wxColour color;
|
|
|
|
};
|
2010-05-14 15:04:01 +02:00
|
|
|
|
|
|
|
class Preferences
|
|
|
|
{
|
2010-05-15 11:21:42 +02:00
|
|
|
public:
|
2010-06-27 21:39:49 +02:00
|
|
|
std::vector<struct category> _categories;
|
2010-05-14 15:04:01 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|