DISTRHO Plugin Framework
TopLevelWidget.hpp
1 /*
2  * DISTRHO Plugin Framework (DPF)
3  * Copyright (C) 2012-2021 Filipe Coelho <falktx@falktx.com>
4  *
5  * Permission to use, copy, modify, and/or distribute this software for any purpose with
6  * or without fee is hereby granted, provided that the above copyright notice and this
7  * permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
10  * TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
11  * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
12  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
13  * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
14  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15  */
16 
17 #ifndef DGL_TOP_LEVEL_WIDGET_HPP_INCLUDED
18 #define DGL_TOP_LEVEL_WIDGET_HPP_INCLUDED
19 
20 #include "Widget.hpp"
21 
22 #ifdef DISTRHO_DEFINES_H_INCLUDED
23 START_NAMESPACE_DISTRHO
24 class UI;
25 END_NAMESPACE_DISTRHO
26 #endif
27 
28 START_NAMESPACE_DGL
29 
30 class Window;
31 
32 // -----------------------------------------------------------------------
33 
34 /**
35  Top-Level Widget class.
36 
37  This is the only Widget class that is allowed to be used directly on a Window.
38 
39  This widget takes the full size of the Window it is mapped to.
40  Sub-widgets can be added on top of this top-level widget, by creating them with this class as parent.
41  Doing so allows for custom position and sizes.
42 
43  This class is used as the type for DPF Plugin UIs.
44  So anything that a plugin UI might need that does not belong in a simple Widget will go here.
45  */
46 class TopLevelWidget : public Widget
47 {
48 public:
49  /**
50  Constructor.
51  */
52  explicit TopLevelWidget(Window& windowToMapTo);
53 
54  /**
55  Destructor.
56  */
57  virtual ~TopLevelWidget();
58 
59  /**
60  Get the application associated with this top-level widget's window.
61  */
62  Application& getApp() const noexcept;
63 
64  /**
65  Get the window associated with this top-level widget.
66  */
67  Window& getWindow() const noexcept;
68 
69  /**
70  Set width of this widget's window.
71  @note This will not change the widget's size right away, but be pending on the OS resizing the window
72  */
73  void setWidth(uint width);
74 
75  /**
76  Set height of this widget's window.
77  @note This will not change the widget's size right away, but be pending on the OS resizing the window
78  */
79  void setHeight(uint height);
80 
81  /**
82  Set size of this widget's window, using @a width and @a height values.
83  @note This will not change the widget's size right away, but be pending on the OS resizing the window
84  */
85  void setSize(uint width, uint height);
86 
87  /**
88  Set size of this widget's window.
89  @note This will not change the widget's size right away, but be pending on the OS resizing the window
90  */
91  void setSize(const Size<uint>& size);
92 
93  /**
94  TODO document this.
95  */
96  void repaint() noexcept override;
97 
98  /**
99  TODO document this.
100  */
101  void repaint(const Rectangle<uint>& rect) noexcept;
102 
103  // TODO group stuff after here, convenience functions present in Window class
104  bool addIdleCallback(IdleCallback* callback, uint timerFrequencyInMs = 0);
105  bool removeIdleCallback(IdleCallback* callback);
106  double getScaleFactor() const noexcept;
107  void setGeometryConstraints(uint minimumWidth,
108  uint minimumHeight,
109  bool keepAspectRatio = false,
110  bool automaticallyScale = false);
111 
112  DISTRHO_DEPRECATED_BY("getApp()")
113  Application& getParentApp() const noexcept { return getApp(); }
114 
115  DISTRHO_DEPRECATED_BY("getWindow()")
116  Window& getParentWindow() const noexcept { return getWindow(); }
117 
118 protected:
119  bool onKeyboard(const KeyboardEvent&) override;
120  bool onSpecial(const SpecialEvent&) override;
121  bool onCharacterInput(const CharacterInputEvent&) override;
122  bool onMouse(const MouseEvent&) override;
123  bool onMotion(const MotionEvent&) override;
124  bool onScroll(const ScrollEvent&) override;
125 
126 private:
127  struct PrivateData;
128  PrivateData* const pData;
129  friend class Window;
130 #ifdef DISTRHO_DEFINES_H_INCLUDED
131  friend class DISTRHO_NAMESPACE::UI;
132 #endif
133 
134  DISTRHO_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(TopLevelWidget)
135 };
136 
137 // -----------------------------------------------------------------------
138 
139 END_NAMESPACE_DGL
140 
141 #endif // DGL_TOP_LEVEL_WIDGET_HPP_INCLUDED
TopLevelWidget::getApp
Application & getApp() const noexcept
Widget::ScrollEvent
Definition: Widget.hpp:217
Widget::KeyboardEvent
Definition: Widget.hpp:94
TopLevelWidget::onMouse
bool onMouse(const MouseEvent &) override
Window
Definition: Window.hpp:50
TopLevelWidget::onScroll
bool onScroll(const ScrollEvent &) override
Widget::CharacterInputEvent
Definition: Widget.hpp:143
Size< uint >
Rectangle
Definition: Geometry.hpp:30
Application
Definition: Application.hpp:36
TopLevelWidget::getWindow
Window & getWindow() const noexcept
UI
Definition: DistrhoUI.hpp:71
Widget::MotionEvent
Definition: Widget.hpp:191
TopLevelWidget::onSpecial
bool onSpecial(const SpecialEvent &) override
TopLevelWidget::~TopLevelWidget
virtual ~TopLevelWidget()
TopLevelWidget::setSize
void setSize(uint width, uint height)
TopLevelWidget::onKeyboard
bool onKeyboard(const KeyboardEvent &) override
TopLevelWidget::setHeight
void setHeight(uint height)
TopLevelWidget::onMotion
bool onMotion(const MotionEvent &) override
TopLevelWidget::setWidth
void setWidth(uint width)
TopLevelWidget::onCharacterInput
bool onCharacterInput(const CharacterInputEvent &) override
TopLevelWidget::repaint
void repaint() noexcept override
IdleCallback
Definition: Base.hpp:159
Widget::MouseEvent
Definition: Widget.hpp:169
TopLevelWidget
Definition: TopLevelWidget.hpp:46
Widget::SpecialEvent
Definition: Widget.hpp:117
Widget
Definition: Widget.hpp:53