blob: 2cb7f3ca3c79923f57c86fc90a291e9a8746cd72 [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
20#include "SkWindow.h"
21
22class SkOSWindow : public SkWindow {
23public:
24 SkOSWindow(void* hwnd);
25
26 void* getHWND() const { return fHWND; }
reed@android.com6efdc472008-12-19 18:24:35 +000027 void* getHVIEW() const { return fHVIEW; }
reed@android.com8a1c16f2008-12-17 15:59:43 +000028 void updateSize();
29
30 static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
31
reed@android.com3a0b5be2009-01-23 16:23:10 +000032 static OSStatus SkOSWindow::EventHandler(EventHandlerCallRef inHandler,
33 EventRef inEvent, void* userData);
reed@android.com8a1c16f2008-12-17 15:59:43 +000034
reed@android.com6efdc472008-12-19 18:24:35 +000035 void doPaint(void* ctx);
36
reed@android.com8a1c16f2008-12-17 15:59:43 +000037protected:
reed@android.com6efdc472008-12-19 18:24:35 +000038 // overrides from SkEventSink
39 virtual bool onEvent(const SkEvent& evt);
reed@android.com8a1c16f2008-12-17 15:59:43 +000040 // overrides from SkWindow
41 virtual void onHandleInval(const SkIRect&);
42 // overrides from SkView
43 virtual void onAddMenu(const SkOSMenu*);
44 virtual void onSetTitle(const char[]);
45
46private:
47 void* fHWND;
reed@android.com6efdc472008-12-19 18:24:35 +000048 void* fHVIEW;
reed@android.com8a1c16f2008-12-17 15:59:43 +000049
50 typedef SkWindow INHERITED;
51};
52
53#endif
54