blob: d7fcf6e3928663fdd9a9cd4af424fa3a081d3d2b [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,
hendrikw6f0fdac2015-09-23 11:35:55 -070039#if SK_ANGLE
40 kANGLE_BackEndType,
41#endif // SK_ANGLE
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000042 };
43
bsalomon@google.com64cc8102013-03-05 20:06:05 +000044 bool attach(SkBackEndTypes attachType, int msaaSampleCount, AttachmentInfo*);
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000045 void detach();
46 void present();
reed@android.com8a1c16f2008-12-17 15:59:43 +000047
bsalomon@google.com11959252012-04-06 20:13:38 +000048 int getMSAASampleCount() const { return fMSAASampleCount; }
49
scroggob7e9aee2011-03-15 15:15:15 +000050 //static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
reed@android.com8a1c16f2008-12-17 15:59:43 +000051
bsalomon85ab5512015-06-16 12:47:25 -070052 bool makeFullscreen();
53 void setVsync(bool);
54 void closeWindow();
joshualittda7b8432015-05-27 09:19:03 -070055
reed@android.com8a1c16f2008-12-17 15:59:43 +000056protected:
tomhudson@google.com178b8e02012-03-05 18:29:23 +000057 // Overridden from from SkWindow:
mtklein36352bf2015-03-25 18:17:31 -070058 void onSetTitle(const char title[]) override;
reed@android.com8a1c16f2008-12-17 15:59:43 +000059
60private:
reed@google.comacb3d882013-06-17 13:42:43 +000061 enum NextXEventResult {
62 kContinue_NextXEventResult,
63 kQuitRequest_NextXEventResult,
64 kPaintRequest_NextXEventResult
65 };
66
67 NextXEventResult nextXEvent();
tomhudson@google.com178b8e02012-03-05 18:29:23 +000068 void doPaint();
69 void mapWindowAndWait();
70
joshualitt7fe8ee42015-06-01 10:03:54 -070071 // Forcefully closes the window. If a graceful shutdown is desired then call the public
72 // closeWindow method
73 void internalCloseWindow();
bsalomon@google.com64cc8102013-03-05 20:06:05 +000074 void initWindow(int newMSAASampleCount, AttachmentInfo* info);
bsalomon@google.com11959252012-04-06 20:13:38 +000075
tomhudson@google.com178b8e02012-03-05 18:29:23 +000076 SkUnixWindow fUnixWindow;
Scroggo9df214e2011-04-15 14:48:08 +000077
78 // Needed for GL
79 XVisualInfo* fVi;
bsalomon@google.com11959252012-04-06 20:13:38 +000080 // we recreate the underlying xwindow if this changes
81 int fMSAASampleCount;
reed@android.com8a1c16f2008-12-17 15:59:43 +000082
reed@android.com8a1c16f2008-12-17 15:59:43 +000083 typedef SkWindow INHERITED;
84};
85
86#endif