Hardware defines spec.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29499 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -306,9 +306,9 @@ wxUniv/X11:
|
|||||||
|
|
||||||
wxWinCE:
|
wxWinCE:
|
||||||
|
|
||||||
- added native SmartPhone wxTextCtrl implementation using spinners
|
- added native WinCE driven smartphone wxTextCtrl implementation using spinners
|
||||||
- added native SmartPhone wxChoice implementation using spinners
|
- added native WinCE driven smartphone wxChoice implementation using spinners
|
||||||
- added automatized but customizable handling of native SmartPhone menus
|
- added automatized but customizable handling of native WinCE driven smartphone menus
|
||||||
- fixed wxRadioBox and wxStaticBox
|
- fixed wxRadioBox and wxStaticBox
|
||||||
|
|
||||||
wxHTML:
|
wxHTML:
|
||||||
|
@@ -41,12 +41,17 @@ everything, i.e.:
|
|||||||
#include "wx/msw/private.h"
|
#include "wx/msw/private.h"
|
||||||
(VZ)
|
(VZ)
|
||||||
|
|
||||||
7. Use shortcuts to verify device you are building for:
|
7. Use following replacements to verify device you are building for:
|
||||||
#ifdef WIN32_PLATFORM_WFSP == #ifdef __SMARTPHONE__
|
#ifdef WIN32_PLATFORM_WFSP == #if defined(__WXWINCE__) && defined(__SMARTPHONE__)
|
||||||
#ifdef WIN32_PLATFORM_PSPC == #ifdef __POCKETPC__
|
#ifdef WIN32_PLATFORM_PSPC == #if defined(__WXWINCE__) && defined(__PDA__)
|
||||||
#ifdef WCE_PLATFORM_STANDARDSDK == #ifdef __WINCE_STANDARDSDK__
|
#ifdef WCE_PLATFORM_STANDARDSDK == #if defined(__WINCE_STANDARDSDK__)
|
||||||
#if (complex condition) == #ifdef __HANDHELDPC__
|
#if WinCE but non of above == #if defined(__WXWINCE__) && defined(__HANDHELD__)
|
||||||
|
|
||||||
|
|
||||||
Marco Cavallini
|
|
||||||
www.koansoftware.com
|
Collective work
|
||||||
|
Julian Smart
|
||||||
|
Vadim Zeitlin
|
||||||
|
Robert Roebling
|
||||||
|
Marco Cavallini
|
||||||
|
ABX and many others
|
Reference in New Issue
Block a user