#ifndef __GTKGAUGEH__
#define __GTKGAUGEH__
-#include "wx/defs.h"
-
-#if wxUSE_GAUGE
-
-#include "wx/object.h"
-#include "wx/list.h"
-#include "wx/control.h"
-
-//-----------------------------------------------------------------------------
-// classes
-//-----------------------------------------------------------------------------
-
-class WXDLLIMPEXP_FWD_CORE wxGauge;
-
-//-----------------------------------------------------------------------------
-// global data
-//-----------------------------------------------------------------------------
-
-extern WXDLLIMPEXP_CORE const wxChar wxGaugeNameStr[];
-
//-----------------------------------------------------------------------------
// wxGaugeBox
//-----------------------------------------------------------------------------
void SetBezelFace( int WXUNUSED(w) ) { }
void SetRange( int r );
void SetValue( int pos );
- int GetShadowWidth() const { return 0; };
- int GetBezelFace() const { return 0; };
+ int GetShadowWidth() const { return 0; }
+ int GetBezelFace() const { return 0; }
int GetRange() const;
int GetValue() const;
DECLARE_DYNAMIC_CLASS(wxGauge)
};
-#endif
-
#endif
// __GTKGAUGEH__