blob: 9b72b4874eaa7e013dd7b79e8efa9329f5cfa894 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
Scroggof33d1532011-05-31 17:10:21 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2011 Skia
Scroggof33d1532011-05-31 17:10:21 +00004 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00005 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
Scroggof33d1532011-05-31 17:10:21 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
Scroggof33d1532011-05-31 17:10:21 +000010#ifndef SkOSWindow_Android_DEFINED
11#define SkOSWindow_Android_DEFINED
12
13#include "SkWindow.h"
Scroggof33d1532011-05-31 17:10:21 +000014
Scroggo2c8208f2011-06-15 16:49:08 +000015class SkIRect;
djsollen@google.come32b5832011-06-13 16:58:40 +000016
Scroggof33d1532011-05-31 17:10:21 +000017class SkOSWindow : public SkWindow {
18public:
19 SkOSWindow(void*) {}
20 ~SkOSWindow() {}
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000021
22 enum SkBackEndTypes {
23 kNone_BackEndType,
24 kNativeGL_BackEndType,
25 };
26
bsalomon@google.com11959252012-04-06 20:13:38 +000027 bool attach(SkBackEndTypes /* attachType */, int /* msaaSampleCount */) {
28 return true;
29 }
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000030 void detach() {}
31 void present() {}
Scroggo2c8208f2011-06-15 16:49:08 +000032
Scroggo8ac0d542011-06-21 14:44:57 +000033 virtual void onPDFSaved(const char title[], const char desc[],
34 const char path[]);
35
Scroggof33d1532011-05-31 17:10:21 +000036protected:
37 // overrides from SkWindow
38 virtual void onHandleInval(const SkIRect&);
39 virtual void onSetTitle(const char title[]);
40
41private:
42 typedef SkWindow INHERITED;
43};
44
45#endif
46