blob: 1f6a1fa9b24c0639cd8e6a5e903dbe06b110ee45 [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; }
27 void updateSize();
28
29 static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
30
31 static pascal OSStatus SkOSWindow::EventHandler( EventHandlerCallRef inHandler, EventRef inEvent, void* userData );
32
33protected:
34 // overrides from SkWindow
35 virtual void onHandleInval(const SkIRect&);
36 // overrides from SkView
37 virtual void onAddMenu(const SkOSMenu*);
38 virtual void onSetTitle(const char[]);
39
40private:
41 void* fHWND;
42
43 void doPaint(void* ctx);
44
45 typedef SkWindow INHERITED;
46};
47
48#endif
49