File: AndroidQt_Window.h

package info (click to toggle)
oce 0.18.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 301,548 kB
  • sloc: cpp: 1,190,609; ansic: 67,225; sh: 11,630; tcl: 7,954; cs: 5,221; python: 2,867; java: 1,522; makefile: 342; xml: 292; perl: 37
file content (95 lines) | stat: -rw-r--r-- 3,024 bytes parent folder | download | duplicates (5)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Copyright (c) 2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.

#ifndef ANDROIDQT_WINDOW_H
#define ANDROIDQT_WINDOW_H

#include <Aspect_Window.hxx>

//! This class defines dummy window.
//! The main functionality is viewport dimensions.
class AndroidQt_Window : public Aspect_Window
{

public:

  //! Creates a wrapper over existing Window handle
  AndroidQt_Window(const int theWidth,   const int theHeight,
                   const int theX1 = -1, const int theX2 = -1,
                   const int theY1 = -1, const int theY2 = -1);

  //! Returns native Window handle
  virtual Aspect_Drawable NativeHandle() const { return 0; }

  //! Returns parent of native Window handle.
  virtual Aspect_Drawable NativeParentHandle() const { return 0; }

  virtual void Destroy() {}

  //! Opens the window <me>
  virtual void Map() const {}

  //! Closes the window <me>
  virtual void Unmap() const {}

  //! Applies the resizing to the window <me>
  virtual Aspect_TypeOfResize DoResize() const { return Aspect_TOR_UNKNOWN; }

  //! Apply the mapping change to the window <me>
  virtual Standard_Boolean DoMapping() const { return Standard_True; }

  //! Returns True if the window <me> is opened
  virtual Standard_Boolean IsMapped() const { return Standard_True; }

  //! Returns The Window RATIO equal to the physical WIDTH/HEIGHT dimensions
  virtual Quantity_Ratio Ratio() const { return 1.0; }

  //! Returns The Window POSITION in PIXEL
  virtual void Position (Standard_Integer& theX1,
                         Standard_Integer& theY1,
                         Standard_Integer& theX2,
                         Standard_Integer& theY2) const;

  //! Set The Window POSITION in PIXEL
  virtual void SetPosition (const Standard_Integer theX1,
                            const Standard_Integer theY1,
                            const Standard_Integer theX2,
                            const Standard_Integer theY2);

  //! Returns The Window SIZE in PIXEL
  virtual void Size (Standard_Integer& theWidth,
                     Standard_Integer& theHeight) const;

  //! Set The Window SIZE in PIXEL
  virtual void SetSize (const Standard_Integer theWidth,
                        const Standard_Integer theHeight);

private:

  int myWidth;
  int myHeight;

  int myX1;
  int myX2;
  int myY1;
  int myY2;

public:

  DEFINE_STANDARD_RTTI(AndroidQt_Window)

};

DEFINE_STANDARD_HANDLE(AndroidQt_Window, Aspect_Window)

#endif // ANDROIDQT_WINDOW_H