blob: bdce5d0d4f971a4a3f2eaa50715b0c243f71cadd [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() {}
djsollen@google.come32b5832011-06-13 16:58:40 +000021 bool attachGL() { return true; }
Scroggof33d1532011-05-31 17:10:21 +000022 void detachGL() {}
23 void presentGL() {}
Scroggo2c8208f2011-06-15 16:49:08 +000024
Scroggo8ac0d542011-06-21 14:44:57 +000025 virtual void onPDFSaved(const char title[], const char desc[],
26 const char path[]);
27
Scroggof33d1532011-05-31 17:10:21 +000028protected:
29 // overrides from SkWindow
30 virtual void onHandleInval(const SkIRect&);
31 virtual void onSetTitle(const char title[]);
32
33private:
34 typedef SkWindow INHERITED;
35};
36
37#endif
38