This commit is contained in:
parent
3da7e250c4
commit
8a43e1a060
6 changed files with 91 additions and 12 deletions
|
@ -20,6 +20,11 @@
|
|||
Includes
|
||||
-------- */
|
||||
|
||||
#ifndef __GUI_GREADOUT_H__
|
||||
#include "gui\greadout.h"
|
||||
#endif
|
||||
|
||||
|
||||
/* Std Lib
|
||||
------- */
|
||||
|
||||
|
@ -36,15 +41,21 @@ class CGUIFactory
|
|||
public:
|
||||
// Creates a frame containing a value button with text label
|
||||
static void createValueButtonFrame(class CGUIObject *_parent,
|
||||
int _x,int _y,int _w, int _h,
|
||||
int _x,int _y,int _w,int _h,
|
||||
int _textId,
|
||||
int *_target,int _value);
|
||||
|
||||
// Creates a frame containing a cycle button, text readout and text label
|
||||
static void createCycleButtonFrame(class CGUIObject *_parent,
|
||||
int _x,int _y,int _w,int _h,
|
||||
int _textId,
|
||||
int *_target,int *_data,CGUITextReadout::TextReadoutData *_readoutData);
|
||||
|
||||
// Creates a frame containing a slider button, readout and text label
|
||||
static void createSliderButtonFrame(class CGUIObject *_parent,
|
||||
int _x,int _y,int _w, int _h,
|
||||
int _x,int _y,int _w,int _h,
|
||||
int _textId,
|
||||
int *_target,int _min, int _max);
|
||||
int *_target,int _min,int _max);
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue