first commit
This commit is contained in:
29
include/engine/ui/widget_bitmap.h
Normal file
29
include/engine/ui/widget_bitmap.h
Normal file
@ -0,0 +1,29 @@
|
||||
/* -----------------------------------------------------------------------------
|
||||
GSFramework
|
||||
Copyright 2001-2013 Emmanuel Julien. All Rights Reserved.
|
||||
----------------------------------------------------------------------------- */
|
||||
|
||||
|
||||
#ifndef __NUI_WIDGET_BITMAP__
|
||||
#define __NUI_WIDGET_BITMAP__
|
||||
|
||||
|
||||
#include "ui/widget_drawable.h"
|
||||
|
||||
|
||||
namespace GS {
|
||||
namespace S2D {
|
||||
|
||||
/// Bitmap widget.
|
||||
struct BitmapWidget : public DrawableWidget
|
||||
{
|
||||
void SetPicture(Picture *);
|
||||
|
||||
BitmapWidget(int id = -1, Picture *bitmap = 0);
|
||||
};
|
||||
|
||||
} // S2D
|
||||
} // GS
|
||||
|
||||
|
||||
#endif // __NUI_WIDGET_BITMAP__
|
||||
Reference in New Issue
Block a user