Remove Windows CE support
Windows CE doesn't seem to be supported by Microsoft any longer. Last CE release was in early 2013 and the PocketPC and Smartphone targets supported by wxWidgets are long gone. The build files where already removed in an earlier cleanup this commit removes all files, every #ifdef and all documentation regarding the Windows CE support. Closes https://github.com/wxWidgets/wxWidgets/pull/81
This commit is contained in:
committed by
Vadim Zeitlin
parent
6fbc2bd0b7
commit
8282c1be0f
@@ -225,14 +225,6 @@ public:
|
||||
*/
|
||||
virtual wxString GetTitle() const;
|
||||
|
||||
/**
|
||||
Unique to the wxWinCE port. Responds to showing/hiding SIP (soft input
|
||||
panel) area and resize window accordingly. Override this if you want to
|
||||
avoid resizing or do additional operations.
|
||||
*/
|
||||
virtual bool HandleSettingChange(WXWPARAM wParam,
|
||||
WXLPARAM lParam);
|
||||
|
||||
/**
|
||||
Iconizes or restores the window.
|
||||
|
||||
@@ -402,24 +394,6 @@ public:
|
||||
*/
|
||||
virtual void SetIcons(const wxIconBundle& icons);
|
||||
|
||||
/**
|
||||
Sets action or menu activated by pressing left hardware button on the
|
||||
smart phones. Unavailable on full keyboard machines.
|
||||
|
||||
@param id
|
||||
Identifier for this button.
|
||||
@param label
|
||||
Text to be displayed on the screen area dedicated to this hardware
|
||||
button.
|
||||
@param subMenu
|
||||
The menu to be opened after pressing this hardware button.
|
||||
|
||||
@see SetRightMenu().
|
||||
*/
|
||||
void SetLeftMenu(int id = wxID_ANY,
|
||||
const wxString& label = wxEmptyString,
|
||||
wxMenu* subMenu = NULL);
|
||||
|
||||
/**
|
||||
A simpler interface for setting the size hints than SetSizeHints().
|
||||
*/
|
||||
@@ -430,24 +404,6 @@ public:
|
||||
*/
|
||||
virtual void SetMinSize(const wxSize& size);
|
||||
|
||||
/**
|
||||
Sets action or menu activated by pressing right hardware button on the
|
||||
smart phones. Unavailable on full keyboard machines.
|
||||
|
||||
@param id
|
||||
Identifier for this button.
|
||||
@param label
|
||||
Text to be displayed on the screen area dedicated to this hardware
|
||||
button.
|
||||
@param subMenu
|
||||
The menu to be opened after pressing this hardware button.
|
||||
|
||||
@see SetLeftMenu().
|
||||
*/
|
||||
void SetRightMenu(int id = wxID_ANY,
|
||||
const wxString& label = wxEmptyString,
|
||||
wxMenu* subMenu = NULL);
|
||||
|
||||
/**
|
||||
Allows specification of minimum and maximum window sizes, and window
|
||||
size increments. If a pair of values is not set (or set to -1), no
|
||||
|
Reference in New Issue
Block a user