1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: settings.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-29 18:03:18 +00:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
1998-05-20 14:01:55 +00:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKSETTINGSH__
|
|
|
|
#define __GTKSETTINGSH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/gdicmn.h"
|
|
|
|
#include "wx/pen.h"
|
|
|
|
#include "wx/font.h"
|
|
|
|
|
1998-12-12 16:42:43 +00:00
|
|
|
class wxSystemSettings: public wxObject
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
|
|
|
public:
|
1998-12-12 16:42:43 +00:00
|
|
|
inline wxSystemSettings() {}
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-07 15:09:04 +00:00
|
|
|
inline static void Init() {}
|
|
|
|
static void Done();
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
// Get a system colour
|
|
|
|
static wxColour GetSystemColour(int index);
|
|
|
|
|
|
|
|
// Get a system font
|
|
|
|
static wxFont GetSystemFont(int index);
|
|
|
|
|
|
|
|
// Get a system metric, e.g. scrollbar size
|
|
|
|
static int GetSystemMetric(int index);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// __GTKSETTINGSH__
|