initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
111
libs/wxWidgets-3.3.1/include/wx/osx/toplevel.h
Normal file
111
libs/wxWidgets-3.3.1/include/wx/osx/toplevel.h
Normal file
@@ -0,0 +1,111 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/osx/toplevel.h
|
||||
// Purpose: wxTopLevelWindowMac is the Mac implementation of wxTLW
|
||||
// Author: Stefan Csomor
|
||||
// Created: 20.09.01
|
||||
// Copyright: (c) 2001 Stefan Csomor
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_MSW_TOPLEVEL_H_
|
||||
#define _WX_MSW_TOPLEVEL_H_
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// wxTopLevelWindowMac
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class WXDLLIMPEXP_CORE wxTopLevelWindowMac : public wxTopLevelWindowBase
|
||||
{
|
||||
public:
|
||||
// constructors and such
|
||||
wxTopLevelWindowMac() { Init(); }
|
||||
|
||||
wxTopLevelWindowMac(wxWindow *parent,
|
||||
wxWindowID id,
|
||||
const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = wxDEFAULT_FRAME_STYLE,
|
||||
const wxString& name = wxASCII_STR(wxFrameNameStr))
|
||||
{
|
||||
Init();
|
||||
|
||||
(void)Create(parent, id, title, pos, size, style, name);
|
||||
}
|
||||
|
||||
virtual ~wxTopLevelWindowMac();
|
||||
|
||||
bool Create(wxWindow *parent,
|
||||
wxWindowID id,
|
||||
const wxString& title,
|
||||
const wxPoint& pos = wxDefaultPosition,
|
||||
const wxSize& size = wxDefaultSize,
|
||||
long style = wxDEFAULT_FRAME_STYLE,
|
||||
const wxString& name = wxASCII_STR(wxFrameNameStr));
|
||||
|
||||
bool Create(wxWindow *parent, WXWindow nativeWindow);
|
||||
|
||||
virtual bool Destroy() override;
|
||||
|
||||
virtual wxPoint GetClientAreaOrigin() const override;
|
||||
|
||||
// Attracts the users attention to this window if the application is
|
||||
// inactive (should be called when a background event occurs)
|
||||
virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO) override;
|
||||
|
||||
// implement base class pure virtuals
|
||||
virtual void Maximize(bool maximize = true) override;
|
||||
virtual bool IsMaximized() const override;
|
||||
virtual void Iconize(bool iconize = true) override;
|
||||
virtual bool IsIconized() const override;
|
||||
virtual void Restore() override;
|
||||
|
||||
virtual bool IsActive() override;
|
||||
|
||||
virtual void ShowWithoutActivating() override;
|
||||
bool EnableFullScreenView(bool enable = true, long style = wxFULLSCREEN_ALL) override;
|
||||
virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL) override;
|
||||
virtual bool IsFullScreen() const override;
|
||||
|
||||
virtual wxContentProtection GetContentProtection() const override;
|
||||
virtual bool SetContentProtection(wxContentProtection contentProtection) override;
|
||||
|
||||
// implementation from now on
|
||||
// --------------------------
|
||||
|
||||
virtual void SetTitle( const wxString& title) override;
|
||||
virtual wxString GetTitle() const override;
|
||||
|
||||
// EnableCloseButton(false) used to disable the "Close"
|
||||
// button on the title bar
|
||||
virtual bool EnableCloseButton(bool enable = true) override;
|
||||
virtual bool EnableMaximizeButton(bool enable = true) override;
|
||||
virtual bool EnableMinimizeButton(bool enable = true) override;
|
||||
|
||||
virtual void SetLabel(const wxString& label) override { SetTitle( label ); }
|
||||
virtual wxString GetLabel() const override { return GetTitle(); }
|
||||
|
||||
virtual void OSXSetModified(bool modified) override;
|
||||
virtual bool OSXIsModified() const override;
|
||||
|
||||
virtual void SetRepresentedFilename(const wxString& filename) override;
|
||||
|
||||
// do *not* call this to iconize the frame, this is a private function!
|
||||
void OSXSetIconizeState(bool iconic);
|
||||
|
||||
protected:
|
||||
// common part of all ctors
|
||||
void Init();
|
||||
|
||||
// is the frame currently iconized?
|
||||
bool m_iconized;
|
||||
|
||||
// should the frame be maximized when it will be shown? set by Maximize()
|
||||
// when it is called while the frame is hidden
|
||||
bool m_maximizeOnShow;
|
||||
|
||||
private :
|
||||
wxDECLARE_EVENT_TABLE();
|
||||
};
|
||||
|
||||
#endif // _WX_MSW_TOPLEVEL_H_
|
||||
Reference in New Issue
Block a user