mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 20:05:47 -04:00
Initial community commit
This commit is contained in:
27
Src/Wasabi/api/wnd/wndclass/sepwnd.h
Normal file
27
Src/Wasabi/api/wnd/wndclass/sepwnd.h
Normal file
@ -0,0 +1,27 @@
|
||||
#ifndef __SEPWND_H
|
||||
#define __SEPWND_H
|
||||
|
||||
#include <tataki/bitmap/bitmap.h>
|
||||
#include <api/wnd/virtualwnd.h>
|
||||
|
||||
#define SEP_UNKNOWN -1
|
||||
#define SEP_VERTICAL 0
|
||||
#define SEP_HORIZONTAL 1
|
||||
|
||||
#define SEPWND_PARENT VirtualWnd
|
||||
|
||||
class SepWnd : public VirtualWnd {
|
||||
public:
|
||||
SepWnd();
|
||||
~SepWnd();
|
||||
virtual int onPaint(Canvas *c);
|
||||
virtual int setOrientation(int which);
|
||||
virtual int onInit();
|
||||
virtual void freeResources();
|
||||
private:
|
||||
SkinBitmap *bitmap;
|
||||
int orientation;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user