0030619: Draw Harness, ViewerTest - add continuous rendering option to vrepaint command
[occt.git] / src / Xw / Xw_Window.hxx
CommitLineData
ed97f43c 1// Created on: 2013-04-06
2// Created by: Kirill Gavrilov
d5f74e42 3// Copyright (c) 2013-2014 OPEN CASCADE SAS
ed97f43c 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
ed97f43c 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
ed97f43c 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
ed97f43c 15
16#ifndef _Xw_Window_H__
17#define _Xw_Window_H__
18
d8d01f6e 19#if !defined(_WIN32) && (!defined(__APPLE__) || defined(MACOSX_USE_GLX)) && !defined(__ANDROID__) && !defined(__QNX__)
ed97f43c 20
21#include <Aspect_Window.hxx>
22
23#include <Aspect_DisplayConnection.hxx>
24#include <Aspect_FillMethod.hxx>
25#include <Aspect_GradientFillMethod.hxx>
26#include <Aspect_Handle.hxx>
27#include <Aspect_TypeOfResize.hxx>
28#include <Standard.hxx>
ec357c5c 29#include <Standard_Type.hxx>
ed97f43c 30#include <Quantity_NameOfColor.hxx>
ed97f43c 31
32class Aspect_WindowDefinitionError;
33class Aspect_WindowError;
34class Aspect_Background;
35class Quantity_Color;
36class Aspect_GradientBackground;
37
38//! This class defines XLib window intended for creation of OpenGL context.
39class Xw_Window : public Aspect_Window
40{
41
42public:
43
44 //! Creates a XLib window defined by his position and size in pixels.
45 //! Throws exception if window can not be created or Display do not support GLX extension.
46 Standard_EXPORT Xw_Window (const Handle(Aspect_DisplayConnection)& theXDisplay,
47 const Standard_CString theTitle,
48 const Standard_Integer thePxLeft,
49 const Standard_Integer thePxTop,
50 const Standard_Integer thePxWidth,
b6bf4ec1 51 const Standard_Integer thePxHeight,
52 const Aspect_FBConfig theFBConfig = NULL);
ed97f43c 53
54 //! Creates a wrapper over existing Window handle
55 Standard_EXPORT Xw_Window (const Handle(Aspect_DisplayConnection)& theXDisplay,
b6bf4ec1 56 const Window theXWin,
57 const Aspect_FBConfig theFBConfig = NULL);
ed97f43c 58
e6f550da 59 //! Destroys the Window and all resourses attached to it
60 Standard_EXPORT ~Xw_Window();
ed97f43c 61
62 //! Opens the window <me>
b6bf4ec1 63 Standard_EXPORT virtual void Map() const Standard_OVERRIDE;
ed97f43c 64
65 //! Closes the window <me>
b6bf4ec1 66 Standard_EXPORT virtual void Unmap() const Standard_OVERRIDE;
ed97f43c 67
68 //! Applies the resizing to the window <me>
b6bf4ec1 69 Standard_EXPORT virtual Aspect_TypeOfResize DoResize() const Standard_OVERRIDE;
ed97f43c 70
71 //! Apply the mapping change to the window <me>
b6bf4ec1 72 Standard_EXPORT virtual Standard_Boolean DoMapping() const Standard_OVERRIDE;
ed97f43c 73
74 //! Returns True if the window <me> is opened
b6bf4ec1 75 Standard_EXPORT virtual Standard_Boolean IsMapped() const Standard_OVERRIDE;
ed97f43c 76
77 //! Returns The Window RATIO equal to the physical WIDTH/HEIGHT dimensions
ee2be2a8 78 Standard_EXPORT virtual Standard_Real Ratio() const Standard_OVERRIDE;
ed97f43c 79
80 //! Returns The Window POSITION in PIXEL
81 Standard_EXPORT virtual void Position (Standard_Integer& X1,
82 Standard_Integer& Y1,
83 Standard_Integer& X2,
b6bf4ec1 84 Standard_Integer& Y2) const Standard_OVERRIDE;
ed97f43c 85
86 //! Returns The Window SIZE in PIXEL
87 Standard_EXPORT virtual void Size (Standard_Integer& theWidth,
b6bf4ec1 88 Standard_Integer& theHeight) const Standard_OVERRIDE;
ed97f43c 89
90 //! @return native Window handle
91 Standard_EXPORT Window XWindow() const;
92
93 //! @return connection to X Display
94 Standard_EXPORT const Handle(Aspect_DisplayConnection)& DisplayConnection() const;
95
25b97fac 96 //! @return native Window handle
b6bf4ec1 97 virtual Aspect_Drawable NativeHandle() const Standard_OVERRIDE
25b97fac 98 {
99 return (Aspect_Drawable )XWindow();
100 }
101
102 //! @return parent of native Window handle
b6bf4ec1 103 virtual Aspect_Drawable NativeParentHandle() const Standard_OVERRIDE
25b97fac 104 {
105 return 0;
106 }
107
b6bf4ec1 108 //! @return native Window FB config (GLXFBConfig on Xlib)
109 virtual Aspect_FBConfig NativeFBConfig() const Standard_OVERRIDE
110 {
111 return myFBConfig;
112 }
113
8693dfd0 114 //! Invalidate entire window content through generation of Expose event.
115 //! This method does not aggregate multiple calls into single event - dedicated event will be sent on each call.
116 //! When NULL display connection is specified, the connection specified on window creation will be used.
117 //! Sending exposure messages from non-window thread would require dedicated display connection opened specifically
118 //! for this working thread to avoid race conditions, since Xlib display connection is not thread-safe by default.
119 Standard_EXPORT virtual void InvalidateContent (const Handle(Aspect_DisplayConnection)& theDisp) Standard_OVERRIDE;
120
ed97f43c 121protected:
122
123 Handle(Aspect_DisplayConnection) myDisplay; //!< X Display connection
124 Window myXWindow; //!< XLib window handle
b6bf4ec1 125 Aspect_FBConfig myFBConfig; //!< GLXFBConfig
ed97f43c 126 Standard_Integer myXLeft; //!< left position in pixels
127 Standard_Integer myYTop; //!< top position in pixels
128 Standard_Integer myXRight; //!< right position in pixels
129 Standard_Integer myYBottom; //!< bottom position in pixels
130 Standard_Boolean myIsOwnWin; //!< flag to indicate own window handle (to be deallocated on destruction)
131
132public:
133
92efcf78 134 DEFINE_STANDARD_RTTIEXT(Xw_Window,Aspect_Window)
ed97f43c 135
136};
137
138DEFINE_STANDARD_HANDLE(Xw_Window, Aspect_Window)
139
140#endif // Win32 or Mac OS X
141#endif // _Xw_Window_H__