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  // TODO group stuff after here, convenience functions present in Window class
94  bool addIdleCallback(IdleCallback* callback, uint timerFrequencyInMs = 0);
95  bool removeIdleCallback(IdleCallback* callback);
96  double getScaleFactor() const noexcept;
97  void repaint() noexcept;
98  void repaint(const Rectangle<uint>& rect) noexcept;
99  void setGeometryConstraints(uint minimumWidth,
100  uint minimumHeight,
101  bool keepAspectRatio = false,
102  bool automaticallyScale = false);
103 
104  DISTRHO_DEPRECATED_BY("getApp()")
105  Application& getParentApp() const noexcept { return getApp(); }
106 
107  DISTRHO_DEPRECATED_BY("getWindow()")
108  Window& getParentWindow() const noexcept { return getWindow(); }
109 
110 private:
111  struct PrivateData;
112  PrivateData* const pData;
113  friend class Window;
114 #ifdef DISTRHO_DEFINES_H_INCLUDED
115  friend class DISTRHO_NAMESPACE::UI;
116 #endif
117 
118  DISTRHO_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(TopLevelWidget)
119 };
120 
121 // -----------------------------------------------------------------------
122 
123 END_NAMESPACE_DGL
124 
125 #endif // DGL_TOP_LEVEL_WIDGET_HPP_INCLUDED
TopLevelWidget::repaint
void repaint() noexcept
TopLevelWidget::getApp
Application & getApp() const noexcept
Window
Definition: Window.hpp:50
Size< uint >
Rectangle
Definition: Geometry.hpp:30
Application
Definition: Application.hpp:34
TopLevelWidget::getWindow
Window & getWindow() const noexcept
UI
Definition: DistrhoUI.hpp:67
TopLevelWidget::~TopLevelWidget
virtual ~TopLevelWidget()
TopLevelWidget::setSize
void setSize(uint width, uint height)
TopLevelWidget::setHeight
void setHeight(uint height)
TopLevelWidget::setWidth
void setWidth(uint width)
IdleCallback
Definition: Base.hpp:159
TopLevelWidget
Definition: TopLevelWidget.hpp:46
Widget
Definition: Widget.hpp:53