ca2184d52d8ae188be286383b1369fb95e02a41a
[occt.git] / src / WNT / WNT_Window.lxx
1 // Copyright (c) 1996-1999 Matra Datavision
2 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15 inline Standard_Boolean WNT_Window::DoMapping() const
16 {
17   // DO nothing on WNT
18   return Standard_True;
19 }
20
21 inline Aspect_Handle WNT_Window::HWindow() const
22 {
23   return myHWindow;
24 }
25
26 inline Aspect_Handle WNT_Window::HParentWindow() const
27 {
28   return myHParentWindow;
29 }
30
31 inline Aspect_Drawable WNT_Window::NativeHandle() const
32 {
33   return (Aspect_Drawable )myHWindow;
34 }
35
36 inline Aspect_Drawable WNT_Window::NativeParentHandle() const
37 {
38   return (Aspect_Drawable )myHParentWindow;
39 }