Import project/ code
This commit is contained in:
36
project/include/platform/tizen/TizenFrame.h
Normal file
36
project/include/platform/tizen/TizenFrame.h
Normal file
@@ -0,0 +1,36 @@
|
||||
#ifndef PLATFORM_TIZEN_TIZEN_FRAME_H
|
||||
#define PLATFORM_TIZEN_TIZEN_FRAME_H
|
||||
|
||||
|
||||
#include <Display.h>
|
||||
#include "platform/tizen/TizenStage.h"
|
||||
|
||||
|
||||
namespace nme {
|
||||
|
||||
|
||||
class TizenFrame : public Frame {
|
||||
|
||||
public:
|
||||
|
||||
TizenFrame (int inW, int inH);
|
||||
~TizenFrame ();
|
||||
|
||||
void Resize (const int inWidth, const int inHeight);
|
||||
void SetIcon ();
|
||||
void SetTitle ();
|
||||
|
||||
Stage *GetStage () { return mStage; }
|
||||
inline void HandleEvent (Event &event) { mStage->HandleEvent (event); }
|
||||
|
||||
private:
|
||||
|
||||
TizenStage *mStage;
|
||||
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user