blob: 8c4d81962a923ea8fa7d649f0342e3dbfd1fee40 [file] [log] [blame]
reed@android.com8a1c16f2008-12-17 15:59:43 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00003 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00004 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00006 */
7
8#ifndef SkOSWindow_Unix_DEFINED
9#define SkOSWindow_Unix_DEFINED
10
Scroggo9df214e2011-04-15 14:48:08 +000011#include <GL/glx.h>
tomhudson@google.com178b8e02012-03-05 18:29:23 +000012#include <X11/Xlib.h>
reed@android.com8a1c16f2008-12-17 15:59:43 +000013
tomhudson@google.com178b8e02012-03-05 18:29:23 +000014#include "SkWindow.h"
15
scroggob7e9aee2011-03-15 15:15:15 +000016class SkEvent;
17
reed@android.com8a1c16f2008-12-17 15:59:43 +000018struct SkUnixWindow {
19 Display* fDisplay;
20 Window fWin;
21 size_t fOSWin;
scroggob7e9aee2011-03-15 15:15:15 +000022 GC fGc;
Scroggo9df214e2011-04-15 14:48:08 +000023 GLXContext fGLContext;
reed@android.com8a1c16f2008-12-17 15:59:43 +000024};
25
26class SkOSWindow : public SkWindow {
27public:
scroggob7e9aee2011-03-15 15:15:15 +000028 SkOSWindow(void*);
29 ~SkOSWindow();
reed@android.com8a1c16f2008-12-17 15:59:43 +000030
scroggob7e9aee2011-03-15 15:15:15 +000031 void* getHWND() const { return (void*)fUnixWindow.fWin; }
32 void* getDisplay() const { return (void*)fUnixWindow.fDisplay; }
33 void* getUnixWindow() const { return (void*)&fUnixWindow; }
Scroggo9df214e2011-04-15 14:48:08 +000034 void loop();
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000035
36 enum SkBackEndTypes {
37 kNone_BackEndType,
38 kNativeGL_BackEndType,
39 };
40
bsalomon@google.com64cc8102013-03-05 20:06:05 +000041 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000042 void detach();
43 void present();
reed@android.com8a1c16f2008-12-17 15:59:43 +000044
bsalomon@google.com11959252012-04-06 20:13:38 +000045 int getMSAASampleCount() const { return fMSAASampleCount; }
46
scroggob7e9aee2011-03-15 15:15:15 +000047 //static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
reed@android.com8a1c16f2008-12-17 15:59:43 +000048
reed@android.com8a1c16f2008-12-17 15:59:43 +000049protected:
tomhudson@google.com178b8e02012-03-05 18:29:23 +000050 // Overridden from from SkWindow:
mtklein72c9faa2015-01-09 10:06:39 -080051 void onSetTitle(const char title[]) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000052
53private:
reed@google.comacb3d882013-06-17 13:42:43 +000054 enum NextXEventResult {
55 kContinue_NextXEventResult,
56 kQuitRequest_NextXEventResult,
57 kPaintRequest_NextXEventResult
58 };
59
60 NextXEventResult nextXEvent();
tomhudson@google.com178b8e02012-03-05 18:29:23 +000061 void doPaint();
62 void mapWindowAndWait();
63
bsalomon@google.com11959252012-04-06 20:13:38 +000064 void closeWindow();
bsalomon@google.com64cc8102013-03-05 20:06:05 +000065 void initWindow(int newMSAASampleCount, AttachmentInfo* info);
bsalomon@google.com11959252012-04-06 20:13:38 +000066
tomhudson@google.com178b8e02012-03-05 18:29:23 +000067 SkUnixWindow fUnixWindow;
Scroggo9df214e2011-04-15 14:48:08 +000068
69 // Needed for GL
70 XVisualInfo* fVi;
bsalomon@google.com11959252012-04-06 20:13:38 +000071 // we recreate the underlying xwindow if this changes
72 int fMSAASampleCount;
reed@android.com8a1c16f2008-12-17 15:59:43 +000073
reed@android.com8a1c16f2008-12-17 15:59:43 +000074 typedef SkWindow INHERITED;
75};
76
77#endif