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
24 class UI;
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 onCharacterInput(const CharacterInputEvent&) override;
121  bool onMouse(const MouseEvent&) override;
122  bool onMotion(const MotionEvent&) override;
123  bool onScroll(const ScrollEvent&) override;
124 
125 private:
126  struct PrivateData;
127  PrivateData* const pData;
128  friend class Window;
129 #ifdef DISTRHO_DEFINES_H_INCLUDED
130  friend class DISTRHO_NAMESPACE::UI;
131 #endif
132 
133  DISTRHO_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(TopLevelWidget)
134 };
135 
136 // -----------------------------------------------------------------------
137 
138 END_NAMESPACE_DGL
139 
140 #endif // DGL_TOP_LEVEL_WIDGET_HPP_INCLUDED
TopLevelWidget::getApp
Application & getApp() const noexcept
Widget::ScrollEvent
Definition: Widget.hpp:213
START_NAMESPACE_DISTRHO
#define START_NAMESPACE_DISTRHO
Definition: DistrhoInfo.hpp:828
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:139
Size< uint >
Rectangle
Definition: Geometry.hpp:30
Application
Definition: Application.hpp:36
END_NAMESPACE_DISTRHO
#define END_NAMESPACE_DISTRHO
Definition: DistrhoInfo.hpp:834
TopLevelWidget::getWindow
Window & getWindow() const noexcept
UI
Definition: DistrhoUI.hpp:71
Widget::MotionEvent
Definition: Widget.hpp:187
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:165
TopLevelWidget
Definition: TopLevelWidget.hpp:46
Widget
Definition: Widget.hpp:53