aboutsummaryrefslogtreecommitdiff
path: root/Src/Wasabi/api/skin/nakedobject.h
blob: ad6895338b7e555d86ca7440bd9de99538cf2baf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef __NAKEDOBJECT_H
#define __NAKEDOBJECT_H

#include <api/wnd/wndclass/guiobjwnd.h>

// NakedObject, an invisible GuiObject

#define NAKEDOBJECT_PARENT GuiObjectWnd 

class NakedObject : public GuiObjectWnd {
  public:
    NakedObject();
    virtual ~NakedObject() {}

    virtual int getPreferences(int what);
    virtual int onResize();
    virtual void onSetVisible(int i);

  protected:
    int reentry_onresize;
    int reentry_onsetvisible;
};

#endif