blob: 232a202205b51304b7f8b3d01e653eff40863822 [file] [log] [blame]
reed@android.com8a1c16f2008-12-17 15:59:43 +00001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef SkOSWindow_Mac_DEFINED
18#define SkOSWindow_Mac_DEFINED
19
reed@android.com64dbab72009-01-23 16:33:13 +000020#include <Carbon/Carbon.h>
reed@android.com8a1c16f2008-12-17 15:59:43 +000021#include "SkWindow.h"
22
23class SkOSWindow : public SkWindow {
24public:
25 SkOSWindow(void* hwnd);
26
27 void* getHWND() const { return fHWND; }
reed@android.com6efdc472008-12-19 18:24:35 +000028 void* getHVIEW() const { return fHVIEW; }
reed@android.com8a1c16f2008-12-17 15:59:43 +000029 void updateSize();
30
31 static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
32
reed@android.com91861032009-09-23 00:43:53 +000033 static OSStatus EventHandler(EventHandlerCallRef inHandler,
34 EventRef inEvent, void* userData);
reed@android.com8a1c16f2008-12-17 15:59:43 +000035
reed@android.comf2b98d62010-12-20 18:26:13 +000036 void doPaint(void* ctx);
37
38
bsalomon@google.com498a6232011-03-10 18:24:15 +000039 bool attachGL();
reed@android.comf2b98d62010-12-20 18:26:13 +000040 void detachGL();
41 void presentGL();
reed@android.com6efdc472008-12-19 18:24:35 +000042
reed@android.com8a1c16f2008-12-17 15:59:43 +000043protected:
reed@android.com6efdc472008-12-19 18:24:35 +000044 // overrides from SkEventSink
45 virtual bool onEvent(const SkEvent& evt);
reed@android.com8a1c16f2008-12-17 15:59:43 +000046 // overrides from SkWindow
47 virtual void onHandleInval(const SkIRect&);
48 // overrides from SkView
49 virtual void onAddMenu(const SkOSMenu*);
50 virtual void onSetTitle(const char[]);
reed@android.comf2b98d62010-12-20 18:26:13 +000051
reed@android.com8a1c16f2008-12-17 15:59:43 +000052
53private:
54 void* fHWND;
reed@android.com6efdc472008-12-19 18:24:35 +000055 void* fHVIEW;
reed@android.comf2b98d62010-12-20 18:26:13 +000056 void* fAGLCtx;
reed@android.com8a1c16f2008-12-17 15:59:43 +000057
58 typedef SkWindow INHERITED;
59};
60
61#endif
62