2011-07-28 14:26:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2011-06-24 17:20:50 +00:00
|
|
|
#ifndef SkOSWindow_iOS_DEFINED
|
|
|
|
#define SkOSWindow_iOS_DEFINED
|
|
|
|
|
|
|
|
#include "SkWindow.h"
|
2011-08-02 13:23:15 +00:00
|
|
|
|
2011-06-24 17:20:50 +00:00
|
|
|
class SkOSWindow : public SkWindow {
|
|
|
|
public:
|
|
|
|
SkOSWindow(void* hwnd);
|
|
|
|
~SkOSWindow();
|
|
|
|
void* getHWND() const { return fHWND; }
|
|
|
|
|
2012-04-02 19:24:21 +00:00
|
|
|
enum SkBackEndTypes {
|
|
|
|
kNone_BackEndType,
|
|
|
|
kNativeGL_BackEndType,
|
|
|
|
};
|
|
|
|
|
|
|
|
void detach();
|
2013-03-05 20:06:05 +00:00
|
|
|
bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
|
2012-04-02 19:24:21 +00:00
|
|
|
void present();
|
2011-06-24 17:20:50 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// overrides from SkEventSink
|
|
|
|
virtual bool onEvent(const SkEvent& evt);
|
|
|
|
// overrides from SkWindow
|
|
|
|
virtual void onHandleInval(const SkIRect&);
|
|
|
|
// overrides from SkView
|
|
|
|
virtual void onAddMenu(const SkOSMenu*);
|
2012-09-20 15:45:41 +00:00
|
|
|
virtual void onUpdateMenu(SkOSMenu*);
|
2011-06-24 17:20:50 +00:00
|
|
|
virtual void onSetTitle(const char[]);
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2011-06-24 17:20:50 +00:00
|
|
|
private:
|
|
|
|
void* fHWND;
|
|
|
|
bool fInvalEventIsPending;
|
|
|
|
void* fNotifier;
|
|
|
|
typedef SkWindow INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|