1
0
Fork 0

- changed to no-value constructor for FGPanel

- removed update method with args
This commit is contained in:
curt 2001-06-20 20:51:34 +00:00
parent 4d96e62a10
commit 982f145bb7

View file

@ -125,7 +125,7 @@ class FGPanel : public FGSubsystem
{
public:
FGPanel (int window_x, int window_y, int window_w, int window_h);
FGPanel ();
virtual ~FGPanel ();
// Update the panel (every frame).
@ -133,7 +133,6 @@ public:
virtual void bind ();
virtual void unbind ();
virtual void update ();
virtual void update (GLfloat winx, GLfloat winw, GLfloat winy, GLfloat winh);
// transfer pointer ownership!!!
virtual void addInstrument (FGPanelInstrument * instrument);
@ -175,13 +174,15 @@ private:
mutable int _mouseDelay;
mutable FGPanelInstrument * _mouseInstrument;
typedef vector<FGPanelInstrument *> instrument_list_type;
int _winx, _winy, _winw, _winh;
int _width;
int _height;
int _x_offset;
int _y_offset;
int _view_height;
bool _bound;
const SGPropertyNode * _xsize_node;
const SGPropertyNode * _ysize_node;
ssgTexture * _bg;
// List of instruments in panel.