/usr/include/oce/WNT_Window.lxx is in liboce-visualization-dev 0.9.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | // GG RIC120302 Add a NEW HParentWindow method which enable
// to retrieve the parent of the actual Hwindow handle.
inline Standard_Address WNT_Window :: WndProc () const {
return myWndProc;
} // end WNT_Window :: WndProc
inline Standard_Boolean WNT_Window :: DoubleBuffer () const {
return myDoubleBuffer;
} // end WNT_Window :: DoubleBuffer
inline Aspect_Handle WNT_Window :: HWindow () const {
return myHWindow;
} // end WNT_Window :: HWindow
inline Aspect_Handle WNT_Window :: HParentWindow () const {
return myHParentWindow;
} // end WNT_Window :: HWindow
inline Aspect_Handle WNT_Window :: HPixmap () const {
return myHPixmap;
} // end WNT_Window :: HPixmap
inline Handle_WNT_ImageManager WNT_Window :: ImageManager () const {
return myImages;
} // end WNT_Window :: ImageManager
|