2011-07-28 14:26:00 +00:00
|
|
|
|
2009-05-22 20:44:12 +00:00
|
|
|
/*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Copyright 2006 The Android Open Source Project
|
2009-05-22 20:44:12 +00:00
|
|
|
*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2009-05-22 20:44:12 +00:00
|
|
|
*/
|
|
|
|
|
2011-07-28 14:26:00 +00:00
|
|
|
|
2009-05-22 20:44:12 +00:00
|
|
|
#ifndef SkOSWindow_SDL_DEFINED
|
|
|
|
#define SkOSWindow_SDL_DEFINED
|
|
|
|
|
|
|
|
#include "SDL.h"
|
|
|
|
#include "SkWindow.h"
|
|
|
|
|
2009-05-29 03:40:05 +00:00
|
|
|
class SkGLCanvas;
|
|
|
|
|
2009-05-22 20:44:12 +00:00
|
|
|
class SkOSWindow : public SkWindow {
|
|
|
|
public:
|
2009-05-26 13:27:48 +00:00
|
|
|
SkOSWindow(void* screen);
|
|
|
|
virtual ~SkOSWindow();
|
2009-05-22 20:44:12 +00:00
|
|
|
|
|
|
|
static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
|
|
|
|
|
|
|
|
void handleSDLEvent(const SDL_Event& event);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// overrides from SkWindow
|
|
|
|
virtual void onHandleInval(const SkIRect&);
|
|
|
|
// overrides from SkView
|
|
|
|
virtual void onAddMenu(const SkOSMenu*);
|
|
|
|
virtual void onSetTitle(const char[]);
|
|
|
|
|
|
|
|
private:
|
2009-05-26 13:27:48 +00:00
|
|
|
SDL_Surface* fScreen;
|
2009-05-22 20:44:12 +00:00
|
|
|
SDL_Surface* fSurface;
|
2009-05-29 03:40:05 +00:00
|
|
|
SkGLCanvas* fGLCanvas;
|
2009-05-22 20:44:12 +00:00
|
|
|
|
|
|
|
void doDraw();
|
|
|
|
|
|
|
|
typedef SkWindow INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|