mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
ComponentPeer: Add isShowing() member, which more closely matches expected behaviour of Component::isShowing
This commit is contained in:
parent
68d0ea9dfb
commit
555b667d22
8 changed files with 26 additions and 1 deletions
|
|
@ -244,6 +244,9 @@ public:
|
|||
/** True if the window is currently minimised. */
|
||||
virtual bool isMinimised() const = 0;
|
||||
|
||||
/** True if the window is being displayed on-screen. */
|
||||
virtual bool isShowing() const = 0;
|
||||
|
||||
/** Enable/disable fullscreen mode for the window. */
|
||||
virtual void setFullScreen (bool shouldBeFullScreen) = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue