mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
24 lines
463 B
C++
24 lines
463 B
C++
#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
|