2001-09-24 00:34:14 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/msw/toplevel.h
|
|
|
|
// Purpose: wxTopLevelWindowMSW is the MSW implementation of wxTLW
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 20.09.01
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-09-24 00:34:14 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MSW_TOPLEVEL_H_
|
|
|
|
#define _WX_MSW_TOPLEVEL_H_
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxTopLevelWindowMSW
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2001-09-27 02:02:19 +00:00
|
|
|
class WXDLLEXPORT wxTopLevelWindowMSW : public wxTopLevelWindowBase
|
2001-09-24 00:34:14 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// constructors and such
|
2004-01-15 13:49:22 +00:00
|
|
|
wxTopLevelWindowMSW() { Init(); }
|
2001-09-24 00:34:14 +00:00
|
|
|
|
|
|
|
wxTopLevelWindowMSW(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& title,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxDEFAULT_FRAME_STYLE,
|
2004-01-15 13:49:22 +00:00
|
|
|
const wxString& name = wxFrameNameStr)
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
|
|
|
|
(void)Create(parent, id, title, pos, size, style, name);
|
|
|
|
}
|
2001-09-24 00:34:14 +00:00
|
|
|
|
|
|
|
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 = wxFrameNameStr);
|
|
|
|
|
|
|
|
virtual ~wxTopLevelWindowMSW();
|
|
|
|
|
|
|
|
// implement base class pure virtuals
|
2005-11-03 16:47:29 +00:00
|
|
|
virtual void SetTitle( const wxString& title);
|
|
|
|
virtual wxString GetTitle() const;
|
2004-09-07 06:01:01 +00:00
|
|
|
virtual void Maximize(bool maximize = true);
|
2001-09-24 00:34:14 +00:00
|
|
|
virtual bool IsMaximized() const;
|
2004-09-07 06:01:01 +00:00
|
|
|
virtual void Iconize(bool iconize = true);
|
2001-09-24 00:34:14 +00:00
|
|
|
virtual bool IsIconized() const;
|
|
|
|
virtual void SetIcon(const wxIcon& icon);
|
2002-03-26 21:54:23 +00:00
|
|
|
virtual void SetIcons(const wxIconBundle& icons );
|
2001-09-24 00:34:14 +00:00
|
|
|
virtual void Restore();
|
2007-02-11 00:21:06 +00:00
|
|
|
|
2006-09-04 13:35:13 +00:00
|
|
|
virtual void SetLayoutDirection(wxLayoutDirection dir);
|
2001-09-24 00:34:14 +00:00
|
|
|
|
2004-04-04 17:27:31 +00:00
|
|
|
#ifndef __WXWINCE__
|
2003-03-28 23:05:05 +00:00
|
|
|
virtual bool SetShape(const wxRegion& region);
|
2004-04-04 17:27:31 +00:00
|
|
|
#endif // __WXWINCE__
|
2004-09-07 21:02:55 +00:00
|
|
|
virtual void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO);
|
2003-03-28 23:05:05 +00:00
|
|
|
|
2004-09-07 06:01:01 +00:00
|
|
|
virtual bool Show(bool show = true);
|
2001-09-24 00:34:14 +00:00
|
|
|
|
2001-10-14 22:16:16 +00:00
|
|
|
virtual bool ShowFullScreen(bool show, long style = wxFULLSCREEN_ALL);
|
|
|
|
virtual bool IsFullScreen() const { return m_fsIsShowing; }
|
2001-09-26 22:18:43 +00:00
|
|
|
|
2004-09-07 06:01:01 +00:00
|
|
|
// wxMSW only: EnableCloseButton(false) may be used to remove the "Close"
|
2001-11-15 02:21:43 +00:00
|
|
|
// button from the title bar
|
2006-10-27 20:05:47 +00:00
|
|
|
virtual bool EnableCloseButton(bool enable = true);
|
2001-11-15 02:21:43 +00:00
|
|
|
|
2006-07-16 03:28:23 +00:00
|
|
|
// Set window transparency if the platform supports it
|
2006-07-17 21:30:08 +00:00
|
|
|
virtual bool SetTransparent(wxByte alpha);
|
|
|
|
virtual bool CanSetTransparent();
|
2006-07-16 03:28:23 +00:00
|
|
|
|
2007-02-11 00:21:06 +00:00
|
|
|
|
2001-09-24 00:34:14 +00:00
|
|
|
// implementation from now on
|
|
|
|
// --------------------------
|
|
|
|
|
2002-06-13 00:04:22 +00:00
|
|
|
// event handlers
|
|
|
|
void OnActivate(wxActivateEvent& event);
|
|
|
|
|
|
|
|
// called by wxWindow whenever it gets focus
|
|
|
|
void SetLastFocus(wxWindow *win) { m_winLastFocused = win; }
|
|
|
|
wxWindow *GetLastFocus() const { return m_winLastFocused; }
|
|
|
|
|
2004-09-29 08:03:26 +00:00
|
|
|
#if defined(__SMARTPHONE__) && defined(__WXWINCE__)
|
|
|
|
virtual void SetLeftMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL);
|
|
|
|
virtual void SetRightMenu(int id = wxID_ANY, const wxString& label = wxEmptyString, wxMenu *subMenu = NULL);
|
2004-06-16 06:37:55 +00:00
|
|
|
bool HandleCommand(WXWORD id, WXWORD cmd, WXHWND control);
|
2006-01-31 21:37:32 +00:00
|
|
|
virtual bool MSWShouldPreProcessMessage(WXMSG* pMsg);
|
2004-09-29 08:03:26 +00:00
|
|
|
#endif // __SMARTPHONE__ && __WXWINCE__
|
2004-06-16 06:37:55 +00:00
|
|
|
|
2006-02-25 03:36:45 +00:00
|
|
|
#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
|
|
|
|
// Soft Input Panel (SIP) change notification
|
2006-02-25 23:11:26 +00:00
|
|
|
virtual bool HandleSettingChange(WXWPARAM wParam, WXLPARAM lParam);
|
2006-02-25 03:36:45 +00:00
|
|
|
#endif
|
|
|
|
|
2006-02-08 21:47:09 +00:00
|
|
|
// translate wxWidgets flags to Windows ones
|
|
|
|
virtual WXDWORD MSWGetStyle(long flags, WXDWORD *exstyle) const;
|
|
|
|
|
|
|
|
// choose the right parent to use with CreateWindow()
|
|
|
|
virtual WXHWND MSWGetParent() const;
|
|
|
|
|
|
|
|
// window proc for the frames
|
|
|
|
WXLRESULT MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
|
|
|
|
|
2001-09-24 00:34:14 +00:00
|
|
|
protected:
|
|
|
|
// common part of all ctors
|
|
|
|
void Init();
|
|
|
|
|
2004-09-07 06:01:01 +00:00
|
|
|
// create a new frame, return false if it couldn't be created
|
2001-10-07 22:17:24 +00:00
|
|
|
bool CreateFrame(const wxString& title,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size);
|
|
|
|
|
|
|
|
// create a new dialog using the given dialog template from resources,
|
2004-09-07 06:01:01 +00:00
|
|
|
// return false if it couldn't be created
|
2002-01-31 20:57:31 +00:00
|
|
|
bool CreateDialog(const void *dlgTemplate,
|
2001-10-07 22:17:24 +00:00
|
|
|
const wxString& title,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size);
|
|
|
|
|
2001-09-24 00:34:14 +00:00
|
|
|
// common part of Iconize(), Maximize() and Restore()
|
|
|
|
void DoShowWindow(int nShowCmd);
|
|
|
|
|
2007-02-11 00:21:06 +00:00
|
|
|
// override those to return the normal window coordinates even when the
|
|
|
|
// window is minimized
|
2007-02-13 17:08:36 +00:00
|
|
|
#ifndef __WXWINCE__
|
2007-02-11 00:21:06 +00:00
|
|
|
virtual void DoGetPosition(int *x, int *y) const;
|
|
|
|
virtual void DoGetSize(int *width, int *height) const;
|
2007-02-13 17:08:36 +00:00
|
|
|
#endif // __WXWINCE__
|
2007-02-11 00:21:06 +00:00
|
|
|
|
|
|
|
|
2002-05-25 13:02:58 +00:00
|
|
|
// is the window currently iconized?
|
2001-09-24 00:34:14 +00:00
|
|
|
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;
|
2001-10-14 22:16:16 +00:00
|
|
|
|
|
|
|
// Data to save/restore when calling ShowFullScreen
|
|
|
|
long m_fsStyle; // Passed to ShowFullScreen
|
|
|
|
wxRect m_fsOldSize;
|
|
|
|
long m_fsOldWindowStyle;
|
|
|
|
bool m_fsIsMaximized;
|
|
|
|
bool m_fsIsShowing;
|
2002-05-25 17:11:19 +00:00
|
|
|
|
2002-06-13 00:04:22 +00:00
|
|
|
// the last focused child: we restore focus to it on activation
|
|
|
|
wxWindow *m_winLastFocused;
|
|
|
|
|
2004-09-29 08:03:26 +00:00
|
|
|
#if defined(__SMARTPHONE__) && defined(__WXWINCE__)
|
2004-06-16 06:37:55 +00:00
|
|
|
class ButtonMenu
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ButtonMenu();
|
|
|
|
~ButtonMenu();
|
|
|
|
|
2004-09-07 06:01:01 +00:00
|
|
|
void SetButton(int id = wxID_ANY,
|
|
|
|
const wxString& label = wxEmptyString,
|
2004-06-16 06:37:55 +00:00
|
|
|
wxMenu *subMenu = NULL);
|
|
|
|
|
|
|
|
bool IsAssigned() const {return m_assigned;}
|
|
|
|
bool IsMenu() const {return m_menu!=NULL;}
|
|
|
|
|
|
|
|
int GetId() const {return m_id;}
|
|
|
|
wxMenu* GetMenu() const {return m_menu;}
|
|
|
|
wxString GetLabel() {return m_label;}
|
|
|
|
|
|
|
|
static wxMenu *DuplicateMenu(wxMenu *menu);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int m_id;
|
|
|
|
wxString m_label;
|
|
|
|
wxMenu *m_menu;
|
|
|
|
bool m_assigned;
|
|
|
|
};
|
|
|
|
|
|
|
|
ButtonMenu m_LeftButton;
|
|
|
|
ButtonMenu m_RightButton;
|
|
|
|
HWND m_MenuBarHWND;
|
|
|
|
|
|
|
|
void ReloadButton(ButtonMenu& button, UINT menuID);
|
|
|
|
void ReloadAllButtons();
|
2004-09-29 08:03:26 +00:00
|
|
|
#endif // __SMARTPHONE__ && __WXWINCE__
|
2004-06-16 06:37:55 +00:00
|
|
|
|
2005-11-13 11:46:24 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
|
|
|
|
void* m_activateInfo;
|
|
|
|
#endif
|
|
|
|
|
2002-06-13 00:04:22 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
2003-01-02 23:38:11 +00:00
|
|
|
DECLARE_NO_COPY_CLASS(wxTopLevelWindowMSW)
|
2001-09-24 00:34:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_MSW_TOPLEVEL_H_
|