diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8909de65d2..9b6b4ed5b0 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -64,7 +64,7 @@ else()
endif()
set(wxVERSION ${wxMAJOR_VERSION}.${wxMINOR_VERSION}.${wxRELEASE_NUMBER})
-set(wxCOPYRIGHT "1992-2019 wxWidgets")
+set(wxCOPYRIGHT "1992-2020 wxWidgets")
include(build/cmake/main.cmake)
diff --git a/Makefile.in b/Makefile.in
index 0b650a0936..4befb9aa88 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -64,7 +64,10 @@ EXTRALIBS_GUI = @EXTRALIBS_GUI@
EXTRALIBS_OPENGL = @EXTRALIBS_OPENGL@
EXTRALIBS_SDL = @EXTRALIBS_SDL@
EXTRALIBS_WEBVIEW = @EXTRALIBS_WEBVIEW@
-CXXWARNINGS = @CXXWARNINGS@
+WX_CPPFLAGS = @WX_CPPFLAGS@
+WX_CFLAGS = @WX_CFLAGS@
+WX_CXXFLAGS = @WX_CXXFLAGS@
+WX_LDFLAGS = @WX_LDFLAGS@
HOST_SUFFIX = @HOST_SUFFIX@
DYLIB_RPATH_INSTALL = @DYLIB_RPATH_INSTALL@
DYLIB_RPATH_POSTLINK = @DYLIB_RPATH_POSTLINK@
@@ -79,14 +82,15 @@ WX_RELEASE_NODOT = 31
WX_VERSION = $(WX_RELEASE).4
WX_VERSION_NODOT = $(WX_RELEASE_NODOT)4
LIBDIRNAME = $(wx_top_builddir)/lib
-WXREGEX_CFLAGS = -DNDEBUG -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) $(____SHARED) \
- $(CPPFLAGS) $(CFLAGS)
+WXREGEX_CFLAGS = $(WX_CPPFLAGS) -DNDEBUG -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(WX_CFLAGS) $(____SHARED) $(CPPFLAGS) $(CFLAGS)
WXREGEX_OBJECTS = \
wxregex_regcomp.o \
wxregex_regexec.o \
wxregex_regerror.o \
wxregex_regfree.o
-WXZLIB_CFLAGS = -DNDEBUG $(____SHARED) $(CPPFLAGS) $(CFLAGS)
+WXZLIB_CFLAGS = $(WX_CPPFLAGS) -DNDEBUG $(WX_CFLAGS) $(____SHARED) $(CPPFLAGS) \
+ $(CFLAGS)
WXZLIB_OBJECTS = \
wxzlib_adler32.o \
wxzlib_compress.o \
@@ -103,7 +107,8 @@ WXZLIB_OBJECTS = \
wxzlib_trees.o \
wxzlib_uncompr.o \
wxzlib_zutil.o
-WXPNG_CFLAGS = -DNDEBUG $(__INC_ZLIB_p) $(____SHARED) $(CPPFLAGS) $(CFLAGS)
+WXPNG_CFLAGS = $(WX_CPPFLAGS) -DNDEBUG $(__INC_ZLIB_p) $(WX_CFLAGS) \
+ $(____SHARED) $(CPPFLAGS) $(CFLAGS)
WXPNG_OBJECTS = \
wxpng_png.o \
wxpng_pngerror.o \
@@ -120,7 +125,8 @@ WXPNG_OBJECTS = \
wxpng_pngwrite.o \
wxpng_pngwtran.o \
wxpng_pngwutil.o
-WXJPEG_CFLAGS = -DNDEBUG $(____SHARED) $(CPPFLAGS) $(CFLAGS)
+WXJPEG_CFLAGS = $(WX_CPPFLAGS) -DNDEBUG $(WX_CFLAGS) $(____SHARED) $(CPPFLAGS) \
+ $(CFLAGS)
WXJPEG_OBJECTS = \
wxjpeg_jaricom.o \
wxjpeg_jcapimin.o \
@@ -168,8 +174,9 @@ WXJPEG_OBJECTS = \
wxjpeg_jquant1.o \
wxjpeg_jquant2.o \
wxjpeg_jutils.o
-WXTIFF_CFLAGS = -DNDEBUG $(__INC_ZLIB_p) $(__INC_JPEG_p) $(__INC_TIFF_BUILD_p) \
- $(__INC_TIFF_p) $(____SHARED) $(CPPFLAGS) $(CFLAGS)
+WXTIFF_CFLAGS = $(WX_CPPFLAGS) -DNDEBUG $(__INC_ZLIB_p) $(__INC_JPEG_p) \
+ $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) $(WX_CFLAGS) $(____SHARED) $(CPPFLAGS) \
+ $(CFLAGS)
WXTIFF_OBJECTS = \
$(__TIFF_PLATFORM_SRC_OBJECTS) \
wxtiff_tif_aux.o \
@@ -212,18 +219,20 @@ WXTIFF_OBJECTS = \
wxtiff_tif_write.o \
wxtiff_tif_zip.o \
wxtiff_tif_zstd.o
-WXEXPAT_CFLAGS = -DNDEBUG -I./src/expat/expat -DHAVE_EXPAT_CONFIG_H \
- $(____SHARED) $(wxCFLAGS_C99) $(CPPFLAGS) $(CFLAGS)
+WXEXPAT_CFLAGS = $(WX_CPPFLAGS) -DNDEBUG -I./src/expat/expat \
+ -DHAVE_EXPAT_CONFIG_H $(WX_CFLAGS) $(____SHARED) $(wxCFLAGS_C99) $(CPPFLAGS) \
+ $(CFLAGS)
WXEXPAT_OBJECTS = \
wxexpat_xmlparse.o \
wxexpat_xmlrole.o \
wxexpat_xmltok.o
-WXSCINTILLA_CXXFLAGS = -DNDEBUG -I$(top_srcdir)/src/stc/scintilla/include \
+WXSCINTILLA_CXXFLAGS = $(WX_CPPFLAGS) -DNDEBUG \
+ -I$(top_srcdir)/src/stc/scintilla/include \
-I$(top_srcdir)/src/stc/scintilla/lexlib \
-I$(top_srcdir)/src/stc/scintilla/src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
-DLINK_LEXERS $(__wxscintilla_usingdll_p) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(____SHARED) $(CPPFLAGS) \
- $(CXXFLAGS)
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(WX_CXXFLAGS) $(____SHARED) \
+ $(CPPFLAGS) $(CXXFLAGS)
WXSCINTILLA_OBJECTS = \
wxscintilla_LexA68k.o \
wxscintilla_LexAbaqus.o \
@@ -922,30 +931,31 @@ ALL_BASE_SOURCES = \
src/msw/urlmsw.cpp \
src/xml/xml.cpp \
src/common/xtixml.cpp
-MONODLL_CFLAGS = $(__monodll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+MONODLL_CFLAGS = $(__monodll_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -I$(top_srcdir)/src/stc/scintilla/include \
- -I$(top_srcdir)/src/stc/scintilla/lexlib \
- -I$(top_srcdir)/src/stc/scintilla/src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
- -DLINK_LEXERS -DwxUSE_BASE=1 -DWXMAKINGDLL $(__webviewdll_ext_dir_define_p) \
- $(PIC_FLAG) $(CPPFLAGS) $(CFLAGS)
-MONODLL_CXXFLAGS = $(__monodll_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING \
-I$(top_srcdir)/src/stc/scintilla/include \
-I$(top_srcdir)/src/stc/scintilla/lexlib \
-I$(top_srcdir)/src/stc/scintilla/src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
-DLINK_LEXERS -DwxUSE_BASE=1 -DWXMAKINGDLL $(__webviewdll_ext_dir_define_p) \
- $(PIC_FLAG) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
-MONODLL_OBJCXXFLAGS = $(__monodll_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+ $(PIC_FLAG) $(WX_CFLAGS) $(CPPFLAGS) $(CFLAGS)
+MONODLL_CXXFLAGS = $(__monodll_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+ $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING \
+ -I$(top_srcdir)/src/stc/scintilla/include \
+ -I$(top_srcdir)/src/stc/scintilla/lexlib \
+ -I$(top_srcdir)/src/stc/scintilla/src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
+ -DLINK_LEXERS -DwxUSE_BASE=1 -DWXMAKINGDLL $(__webviewdll_ext_dir_define_p) \
+ $(PIC_FLAG) $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+MONODLL_OBJCXXFLAGS = $(__monodll_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) \
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING \
-I$(top_srcdir)/src/stc/scintilla/include \
-I$(top_srcdir)/src/stc/scintilla/lexlib \
-I$(top_srcdir)/src/stc/scintilla/src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
@@ -1064,30 +1074,31 @@ MONODLL_OBJECTS = \
$(__PLUGIN_SRC_OBJECTS) \
$(__monodll___win32rc)
MONODLL_ODEP = $(_____pch_wxprec_monodll_wx_wxprec_h_gch___depname)
-MONOLIB_CFLAGS = $(__monolib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+MONOLIB_CFLAGS = $(__monolib_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -I$(top_srcdir)/src/stc/scintilla/include \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING \
+ -I$(top_srcdir)/src/stc/scintilla/include \
-I$(top_srcdir)/src/stc/scintilla/lexlib \
-I$(top_srcdir)/src/stc/scintilla/src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
- -DLINK_LEXERS -DwxUSE_BASE=1 $(__webviewdll_ext_dir_define_p) $(CPPFLAGS) \
- $(CFLAGS)
-MONOLIB_CXXFLAGS = $(__monolib_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) \
+ -DLINK_LEXERS -DwxUSE_BASE=1 $(__webviewdll_ext_dir_define_p) $(WX_CFLAGS) \
+ $(CPPFLAGS) $(CFLAGS)
+MONOLIB_CXXFLAGS = $(__monolib_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+ $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING \
-I$(top_srcdir)/src/stc/scintilla/include \
-I$(top_srcdir)/src/stc/scintilla/lexlib \
-I$(top_srcdir)/src/stc/scintilla/src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
-DLINK_LEXERS -DwxUSE_BASE=1 $(__webviewdll_ext_dir_define_p) \
- $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
-MONOLIB_OBJCXXFLAGS = $(__monolib_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+ $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+MONOLIB_OBJCXXFLAGS = $(__monolib_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) \
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING \
-I$(top_srcdir)/src/stc/scintilla/include \
-I$(top_srcdir)/src/stc/scintilla/lexlib \
-I$(top_srcdir)/src/stc/scintilla/src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
@@ -1205,23 +1216,20 @@ MONOLIB_OBJECTS = \
monolib_xtixml.o \
$(__PLUGIN_SRC_OBJECTS_1)
MONOLIB_ODEP = $(_____pch_wxprec_monolib_wx_wxprec_h_gch___depname)
-BASEDLL_CFLAGS = $(__basedll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+BASEDLL_CFLAGS = $(__basedll_PCH_INC) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
- $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE -DwxUSE_BASE=1 $(PIC_FLAG) \
- $(CPPFLAGS) $(CFLAGS)
-BASEDLL_CXXFLAGS = $(__basedll_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE \
- -DwxUSE_BASE=1 $(PIC_FLAG) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
-BASEDLL_OBJCXXFLAGS = $(__basedll_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE \
+ -DwxUSE_BASE=1 $(PIC_FLAG) $(WX_CFLAGS) $(CPPFLAGS) $(CFLAGS)
+BASEDLL_CXXFLAGS = $(__basedll_PCH_INC) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE \
+ -DwxUSE_BASE=1 $(PIC_FLAG) $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+BASEDLL_OBJCXXFLAGS = $(__basedll_PCH_INC) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE \
-DwxUSE_BASE=1 $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS)
BASEDLL_OBJECTS = \
$(__basedll___win32rc) \
@@ -1321,22 +1329,20 @@ BASEDLL_OBJECTS = \
$(__BASE_AND_GUI_PLATFORM_SRC_OBJECTS_2) \
$(__BASE_AND_GUI_TOOLKIT_SRC_OBJECTS_2)
BASEDLL_ODEP = $(_____pch_wxprec_basedll_wx_wxprec_h_gch___depname)
-BASELIB_CFLAGS = $(__baselib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+BASELIB_CFLAGS = $(__baselib_PCH_INC) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
- $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DwxUSE_GUI=0 -DwxUSE_BASE=1 $(CPPFLAGS) $(CFLAGS)
-BASELIB_CXXFLAGS = $(__baselib_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 -DwxUSE_BASE=1 \
- $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
-BASELIB_OBJCXXFLAGS = $(__baselib_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_GUI=0 -DwxUSE_BASE=1 $(CPPFLAGS) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 $(WX_CFLAGS) \
+ $(CPPFLAGS) $(CFLAGS)
+BASELIB_CXXFLAGS = $(__baselib_PCH_INC) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 \
+ $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+BASELIB_OBJCXXFLAGS = $(__baselib_PCH_INC) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 $(CPPFLAGS) \
$(OBJCXXFLAGS)
BASELIB_OBJECTS = \
baselib_any.o \
@@ -1435,12 +1441,11 @@ BASELIB_OBJECTS = \
$(__BASE_AND_GUI_PLATFORM_SRC_OBJECTS_3) \
$(__BASE_AND_GUI_TOOLKIT_SRC_OBJECTS_3)
BASELIB_ODEP = $(_____pch_wxprec_baselib_wx_wxprec_h_gch___depname)
-NETDLL_CXXFLAGS = $(__netdll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+NETDLL_CXXFLAGS = $(__netdll_PCH_INC) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
- $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DwxUSE_GUI=0 -DWXUSINGDLL -DWXMAKINGDLL_NET $(PIC_FLAG) \
- $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DwxUSE_GUI=0 -DWXUSINGDLL \
+ -DWXMAKINGDLL_NET $(PIC_FLAG) $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
NETDLL_OBJECTS = \
$(__netdll___win32rc) \
netdll_fs_inet.o \
@@ -1455,11 +1460,11 @@ NETDLL_OBJECTS = \
netdll_url.o \
$(__NET_PLATFORM_SRC_OBJECTS_2)
NETDLL_ODEP = $(_____pch_wxprec_netdll_wx_wxprec_h_gch___depname)
-NETLIB_CXXFLAGS = $(__netlib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+NETLIB_CXXFLAGS = $(__netlib_PCH_INC) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
- $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DwxUSE_GUI=0 $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DwxUSE_GUI=0 $(WX_CXXFLAGS) $(CPPFLAGS) \
+ $(CXXFLAGS)
NETLIB_OBJECTS = \
netlib_fs_inet.o \
netlib_ftp.o \
@@ -1473,24 +1478,24 @@ NETLIB_OBJECTS = \
netlib_url.o \
$(__NET_PLATFORM_SRC_OBJECTS_3)
NETLIB_ODEP = $(_____pch_wxprec_netlib_wx_wxprec_h_gch___depname)
-COREDLL_CFLAGS = $(__coredll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+COREDLL_CFLAGS = $(__coredll_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_CORE -DwxUSE_BASE=0 $(PIC_FLAG) \
- $(CPPFLAGS) $(CFLAGS)
-COREDLL_CXXFLAGS = $(__coredll_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_CORE \
+ -DwxUSE_BASE=0 $(PIC_FLAG) $(WX_CFLAGS) $(CPPFLAGS) $(CFLAGS)
+COREDLL_CXXFLAGS = $(__coredll_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+ $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_CORE \
+ -DwxUSE_BASE=0 $(PIC_FLAG) $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+COREDLL_OBJCXXFLAGS = $(__coredll_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_CORE \
- -DwxUSE_BASE=0 $(PIC_FLAG) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
-COREDLL_OBJCXXFLAGS = $(__coredll_PCH_INC) -D__WX$(TOOLKIT)__ \
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
$(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_CORE \
- -DwxUSE_BASE=0 $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS)
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL \
+ -DWXMAKINGDLL_CORE -DwxUSE_BASE=0 $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS)
COREDLL_OBJECTS = \
$(__coredll___win32rc) \
coredll_event.o \
@@ -1502,22 +1507,24 @@ COREDLL_OBJECTS = \
$(__CORE_SRC_OBJECTS_2) \
$(__PLUGIN_SRC_OBJECTS_2)
COREDLL_ODEP = $(_____pch_wxprec_coredll_wx_wxprec_h_gch___depname)
-CORELIB_CFLAGS = $(__corelib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+CORELIB_CFLAGS = $(__corelib_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DwxUSE_BASE=0 $(CPPFLAGS) $(CFLAGS)
-CORELIB_CXXFLAGS = $(__corelib_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_BASE=0 $(CXXWARNINGS) $(CPPFLAGS) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DwxUSE_BASE=0 $(WX_CFLAGS) $(CPPFLAGS) \
+ $(CFLAGS)
+CORELIB_CXXFLAGS = $(__corelib_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+ $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DwxUSE_BASE=0 $(WX_CXXFLAGS) $(CPPFLAGS) \
$(CXXFLAGS)
-CORELIB_OBJCXXFLAGS = $(__corelib_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+CORELIB_OBJCXXFLAGS = $(__corelib_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DwxUSE_BASE=0 $(CPPFLAGS) $(OBJCXXFLAGS)
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING -DwxUSE_BASE=0 \
+ $(CPPFLAGS) $(OBJCXXFLAGS)
CORELIB_OBJECTS = \
corelib_event.o \
corelib_fs_mem.o \
@@ -1528,61 +1535,63 @@ CORELIB_OBJECTS = \
$(__CORE_SRC_OBJECTS_3) \
$(__PLUGIN_SRC_OBJECTS_3)
CORELIB_ODEP = $(_____pch_wxprec_corelib_wx_wxprec_h_gch___depname)
-ADVDLL_CXXFLAGS = $(__advdll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+ADVDLL_CXXFLAGS = $(__advdll_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_ADV $(PIC_FLAG) $(CXXWARNINGS) \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_ADV $(PIC_FLAG) \
+ $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
ADVDLL_OBJECTS = \
$(__advdll___win32rc) \
advdll_dummy.o
ADVDLL_ODEP = $(_____pch_wxprec_advdll_wx_wxprec_h_gch___depname)
-ADVLIB_CXXFLAGS = $(__advlib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+ADVLIB_CXXFLAGS = $(__advlib_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
ADVLIB_OBJECTS = \
advlib_dummy.o
ADVLIB_ODEP = $(_____pch_wxprec_advlib_wx_wxprec_h_gch___depname)
-MEDIADLL_CXXFLAGS = $(__mediadll_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+MEDIADLL_CXXFLAGS = $(__mediadll_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_MEDIA \
- $(PIC_FLAG) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
-MEDIADLL_OBJCXXFLAGS = $(__mediadll_PCH_INC) -D__WX$(TOOLKIT)__ \
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
$(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL \
+ -DWXMAKINGDLL_MEDIA $(PIC_FLAG) $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+MEDIADLL_OBJCXXFLAGS = $(__mediadll_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_MEDIA \
- $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS)
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL \
+ -DWXMAKINGDLL_MEDIA $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS)
MEDIADLL_OBJECTS = \
$(__mediadll___win32rc) \
mediadll_mediactrlcmn.o \
$(__MEDIA_PLATFORM_SRC_OBJECTS_2)
MEDIADLL_ODEP = $(_____pch_wxprec_mediadll_wx_wxprec_h_gch___depname)
-MEDIALIB_CXXFLAGS = $(__medialib_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+MEDIALIB_CXXFLAGS = $(__medialib_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
-MEDIALIB_OBJCXXFLAGS = $(__medialib_PCH_INC) -D__WX$(TOOLKIT)__ \
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
$(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(WX_CXXFLAGS) \
+ $(CPPFLAGS) $(CXXFLAGS)
+MEDIALIB_OBJCXXFLAGS = $(__medialib_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CPPFLAGS) $(OBJCXXFLAGS)
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(CPPFLAGS) \
+ $(OBJCXXFLAGS)
MEDIALIB_OBJECTS = \
medialib_mediactrlcmn.o \
$(__MEDIA_PLATFORM_SRC_OBJECTS_3)
MEDIALIB_ODEP = $(_____pch_wxprec_medialib_wx_wxprec_h_gch___depname)
-HTMLDLL_CXXFLAGS = $(__htmldll_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_HTML \
- $(PIC_FLAG) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+HTMLDLL_CXXFLAGS = $(__htmldll_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+ $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_HTML \
+ $(PIC_FLAG) $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
HTMLDLL_OBJECTS = \
$(__htmldll___win32rc) \
$(__HTML_SRC_PLATFORM_OBJECTS_2) \
@@ -1612,11 +1621,11 @@ HTMLDLL_OBJECTS = \
htmldll_winpars.o \
htmldll_htmllbox.o
HTMLDLL_ODEP = $(_____pch_wxprec_htmldll_wx_wxprec_h_gch___depname)
-HTMLLIB_CXXFLAGS = $(__htmllib_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+HTMLLIB_CXXFLAGS = $(__htmllib_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+ $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
HTMLLIB_OBJECTS = \
$(__HTML_SRC_PLATFORM_OBJECTS_3) \
htmllib_helpctrl.o \
@@ -1645,20 +1654,21 @@ HTMLLIB_OBJECTS = \
htmllib_winpars.o \
htmllib_htmllbox.o
HTMLLIB_ODEP = $(_____pch_wxprec_htmllib_wx_wxprec_h_gch___depname)
-WEBVIEWDLL_CXXFLAGS = $(__webviewdll_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+WEBVIEWDLL_CXXFLAGS = $(__webviewdll_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_WEBVIEW \
- $(__webviewdll_ext_dir_define_p) $(__webview_additional_include_p) \
- $(PIC_FLAG) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
-WEBVIEWDLL_OBJCXXFLAGS = $(__webviewdll_PCH_INC) -D__WX$(TOOLKIT)__ \
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
$(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL \
+ -DWXMAKINGDLL_WEBVIEW $(__webviewdll_ext_dir_define_p) \
+ $(__webview_additional_include_p) $(PIC_FLAG) $(WX_CXXFLAGS) $(CPPFLAGS) \
+ $(CXXFLAGS)
+WEBVIEWDLL_OBJCXXFLAGS = $(__webviewdll_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_WEBVIEW \
- $(__webviewdll_ext_dir_define_p) $(__webview_additional_include_p) \
- $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS)
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL \
+ -DWXMAKINGDLL_WEBVIEW $(__webviewdll_ext_dir_define_p) \
+ $(__webview_additional_include_p) $(PIC_FLAG) $(CPPFLAGS) $(OBJCXXFLAGS)
WEBVIEWDLL_OBJECTS = \
$(__WEBVIEW_SRC_PLATFORM_OBJECTS_2) \
webviewdll_webview.o \
@@ -1666,70 +1676,71 @@ WEBVIEWDLL_OBJECTS = \
webviewdll_webviewfshandler.o \
$(__webviewdll___win32rc)
WEBVIEWDLL_ODEP = $(_____pch_wxprec_webviewdll_wx_wxprec_h_gch___depname)
-WEBVIEWLIB_CXXFLAGS = $(__webviewlib_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+WEBVIEWLIB_CXXFLAGS = $(__webviewlib_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) $(__webviewdll_ext_dir_define_p) \
- $(__webview_additional_include_p) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
-WEBVIEWLIB_OBJCXXFLAGS = $(__webviewlib_PCH_INC) -D__WX$(TOOLKIT)__ \
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
$(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING \
+ $(__webviewdll_ext_dir_define_p) $(__webview_additional_include_p) \
+ $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+WEBVIEWLIB_OBJCXXFLAGS = $(__webviewlib_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) $(__webviewdll_ext_dir_define_p) \
- $(__webview_additional_include_p) $(CPPFLAGS) $(OBJCXXFLAGS)
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING \
+ $(__webviewdll_ext_dir_define_p) $(__webview_additional_include_p) \
+ $(CPPFLAGS) $(OBJCXXFLAGS)
WEBVIEWLIB_OBJECTS = \
$(__WEBVIEW_SRC_PLATFORM_OBJECTS_3) \
webviewlib_webview.o \
webviewlib_webviewarchivehandler.o \
webviewlib_webviewfshandler.o
WEBVIEWLIB_ODEP = $(_____pch_wxprec_webviewlib_wx_wxprec_h_gch___depname)
-QADLL_CXXFLAGS = $(__qadll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+QADLL_CXXFLAGS = $(__qadll_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_QA $(PIC_FLAG) $(CXXWARNINGS) \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_QA $(PIC_FLAG) \
+ $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
QADLL_OBJECTS = \
$(__qadll___win32rc) \
qadll_debugrpt.o \
qadll_dbgrptg.o
QADLL_ODEP = $(_____pch_wxprec_qadll_wx_wxprec_h_gch___depname)
-QALIB_CXXFLAGS = $(__qalib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+QALIB_CXXFLAGS = $(__qalib_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
QALIB_OBJECTS = \
qalib_debugrpt.o \
qalib_dbgrptg.o
QALIB_ODEP = $(_____pch_wxprec_qalib_wx_wxprec_h_gch___depname)
-XMLDLL_CXXFLAGS = $(__xmldll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+XMLDLL_CXXFLAGS = $(__xmldll_PCH_INC) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
- $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DwxUSE_GUI=0 -DWXUSINGDLL -DWXMAKINGDLL_XML $(PIC_FLAG) \
- $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DwxUSE_GUI=0 -DWXUSINGDLL \
+ -DWXMAKINGDLL_XML $(PIC_FLAG) $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
XMLDLL_OBJECTS = \
$(__xmldll___win32rc) \
xmldll_xml.o \
xmldll_xtixml.o
XMLDLL_ODEP = $(_____pch_wxprec_xmldll_wx_wxprec_h_gch___depname)
-XMLLIB_CXXFLAGS = $(__xmllib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+XMLLIB_CXXFLAGS = $(__xmllib_PCH_INC) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
- $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DwxUSE_GUI=0 $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DwxUSE_GUI=0 $(WX_CXXFLAGS) $(CPPFLAGS) \
+ $(CXXFLAGS)
XMLLIB_OBJECTS = \
xmllib_xml.o \
xmllib_xtixml.o
XMLLIB_ODEP = $(_____pch_wxprec_xmllib_wx_wxprec_h_gch___depname)
-XRCDLL_CXXFLAGS = $(__xrcdll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+XRCDLL_CXXFLAGS = $(__xrcdll_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_XRC $(PIC_FLAG) $(CXXWARNINGS) \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_XRC $(PIC_FLAG) \
+ $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
XRCDLL_OBJECTS = \
$(__xrcdll___win32rc) \
xrcdll_xh_activityindicator.o \
@@ -1802,11 +1813,11 @@ XRCDLL_OBJECTS = \
xrcdll_xmladv.o \
xrcdll_xmlrsall.o
XRCDLL_ODEP = $(_____pch_wxprec_xrcdll_wx_wxprec_h_gch___depname)
-XRCLIB_CXXFLAGS = $(__xrclib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+XRCLIB_CXXFLAGS = $(__xrclib_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
XRCLIB_OBJECTS = \
xrclib_xh_activityindicator.o \
xrclib_xh_animatctrl.o \
@@ -1878,12 +1889,12 @@ XRCLIB_OBJECTS = \
xrclib_xmladv.o \
xrclib_xmlrsall.o
XRCLIB_ODEP = $(_____pch_wxprec_xrclib_wx_wxprec_h_gch___depname)
-AUIDLL_CXXFLAGS = $(__auidll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+AUIDLL_CXXFLAGS = $(__auidll_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_AUI $(PIC_FLAG) $(CXXWARNINGS) \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_AUI $(PIC_FLAG) \
+ $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
AUIDLL_OBJECTS = \
$(__auidll___win32rc) \
auidll_framemanager.o \
@@ -1898,11 +1909,11 @@ AUIDLL_OBJECTS = \
$(__AUI_GTK_SRC_OBJECTS_2) \
$(__AUI_PLATFORM_SRC_OBJECTS_2)
AUIDLL_ODEP = $(_____pch_wxprec_auidll_wx_wxprec_h_gch___depname)
-AUILIB_CXXFLAGS = $(__auilib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+AUILIB_CXXFLAGS = $(__auilib_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
AUILIB_OBJECTS = \
auilib_framemanager.o \
auilib_dockart.o \
@@ -1916,12 +1927,12 @@ AUILIB_OBJECTS = \
$(__AUI_GTK_SRC_OBJECTS_3) \
$(__AUI_PLATFORM_SRC_OBJECTS_3)
AUILIB_ODEP = $(_____pch_wxprec_auilib_wx_wxprec_h_gch___depname)
-RIBBONDLL_CXXFLAGS = $(__ribbondll_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+RIBBONDLL_CXXFLAGS = $(__ribbondll_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_RIBBON \
- $(PIC_FLAG) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL \
+ -DWXMAKINGDLL_RIBBON $(PIC_FLAG) $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
RIBBONDLL_OBJECTS = \
$(__ribbondll___win32rc) \
ribbondll_art_internal.o \
@@ -1936,11 +1947,12 @@ RIBBONDLL_OBJECTS = \
ribbondll_toolbar.o \
ribbondll_xh_ribbon.o
RIBBONDLL_ODEP = $(_____pch_wxprec_ribbondll_wx_wxprec_h_gch___depname)
-RIBBONLIB_CXXFLAGS = $(__ribbonlib_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+RIBBONLIB_CXXFLAGS = $(__ribbonlib_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(WX_CXXFLAGS) \
+ $(CPPFLAGS) $(CXXFLAGS)
RIBBONLIB_OBJECTS = \
ribbonlib_art_internal.o \
ribbonlib_art_msw.o \
@@ -1954,12 +1966,12 @@ RIBBONLIB_OBJECTS = \
ribbonlib_toolbar.o \
ribbonlib_xh_ribbon.o
RIBBONLIB_ODEP = $(_____pch_wxprec_ribbonlib_wx_wxprec_h_gch___depname)
-PROPGRIDDLL_CXXFLAGS = $(__propgriddll_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+PROPGRIDDLL_CXXFLAGS = $(__propgriddll_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_PROPGRID \
- $(PIC_FLAG) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL \
+ -DWXMAKINGDLL_PROPGRID $(PIC_FLAG) $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
PROPGRIDDLL_OBJECTS = \
$(__propgriddll___win32rc) \
propgriddll_advprops.o \
@@ -1971,11 +1983,12 @@ PROPGRIDDLL_OBJECTS = \
propgriddll_propgridpagestate.o \
propgriddll_props.o
PROPGRIDDLL_ODEP = $(_____pch_wxprec_propgriddll_wx_wxprec_h_gch___depname)
-PROPGRIDLIB_CXXFLAGS = $(__propgridlib_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+PROPGRIDLIB_CXXFLAGS = $(__propgridlib_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(WX_CXXFLAGS) \
+ $(CPPFLAGS) $(CXXFLAGS)
PROPGRIDLIB_OBJECTS = \
propgridlib_advprops.o \
propgridlib_editors.o \
@@ -1986,12 +1999,12 @@ PROPGRIDLIB_OBJECTS = \
propgridlib_propgridpagestate.o \
propgridlib_props.o
PROPGRIDLIB_ODEP = $(_____pch_wxprec_propgridlib_wx_wxprec_h_gch___depname)
-RICHTEXTDLL_CXXFLAGS = $(__richtextdll_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+RICHTEXTDLL_CXXFLAGS = $(__richtextdll_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_RICHTEXT \
- $(PIC_FLAG) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL \
+ -DWXMAKINGDLL_RICHTEXT $(PIC_FLAG) $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
RICHTEXTDLL_OBJECTS = \
$(__richtextdll___win32rc) \
richtextdll_richtextbuffer.o \
@@ -2006,11 +2019,12 @@ RICHTEXTDLL_OBJECTS = \
richtextdll_richtextxml.o \
richtextdll_xh_richtext.o
RICHTEXTDLL_ODEP = $(_____pch_wxprec_richtextdll_wx_wxprec_h_gch___depname)
-RICHTEXTLIB_CXXFLAGS = $(__richtextlib_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
+RICHTEXTLIB_CXXFLAGS = $(__richtextlib_PCH_INC) $(__INC_TIFF_BUILD_p) \
$(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(__INC_REGEX_p) $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
+ $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(WX_CXXFLAGS) \
+ $(CPPFLAGS) $(CXXFLAGS)
RICHTEXTLIB_OBJECTS = \
richtextlib_richtextbuffer.o \
richtextlib_richtextctrl.o \
@@ -2024,20 +2038,21 @@ RICHTEXTLIB_OBJECTS = \
richtextlib_richtextxml.o \
richtextlib_xh_richtext.o
RICHTEXTLIB_ODEP = $(_____pch_wxprec_richtextlib_wx_wxprec_h_gch___depname)
-STCDLL_CXXFLAGS = $(__stcdll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+STCDLL_CXXFLAGS = $(__stcdll_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -I$(top_srcdir)/src/stc/scintilla/include \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING \
+ -I$(top_srcdir)/src/stc/scintilla/include \
-I$(top_srcdir)/src/stc/scintilla/lexlib \
-I$(top_srcdir)/src/stc/scintilla/src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
- -DLINK_LEXERS -DWXUSINGDLL -DWXMAKINGDLL_STC $(PIC_FLAG) $(CXXWARNINGS) \
+ -DLINK_LEXERS -DWXUSINGDLL -DWXMAKINGDLL_STC $(PIC_FLAG) $(WX_CXXFLAGS) \
$(CPPFLAGS) $(CXXFLAGS)
-STCDLL_OBJCXXFLAGS = $(__stcdll_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) \
+STCDLL_OBJCXXFLAGS = $(__stcdll_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+ $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING \
-I$(top_srcdir)/src/stc/scintilla/include \
-I$(top_srcdir)/src/stc/scintilla/lexlib \
-I$(top_srcdir)/src/stc/scintilla/src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
@@ -2050,19 +2065,20 @@ STCDLL_OBJECTS = \
stcdll_ScintillaWX.o \
$(__STC_PLATFORM_SRC_OBJECTS_2)
STCDLL_ODEP = $(_____pch_wxprec_stcdll_wx_wxprec_h_gch___depname)
-STCLIB_CXXFLAGS = $(__stclib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+STCLIB_CXXFLAGS = $(__stclib_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -I$(top_srcdir)/src/stc/scintilla/include \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING \
+ -I$(top_srcdir)/src/stc/scintilla/include \
-I$(top_srcdir)/src/stc/scintilla/lexlib \
-I$(top_srcdir)/src/stc/scintilla/src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
- -DLINK_LEXERS $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
-STCLIB_OBJCXXFLAGS = $(__stclib_PCH_INC) -D__WX$(TOOLKIT)__ \
- $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) \
- $(__INC_TIFF_p) $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) \
- $(__INC_REGEX_p) $(__INC_EXPAT_p) \
+ -DLINK_LEXERS $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+STCLIB_OBJCXXFLAGS = $(__stclib_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+ $(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING \
-I$(top_srcdir)/src/stc/scintilla/include \
-I$(top_srcdir)/src/stc/scintilla/lexlib \
-I$(top_srcdir)/src/stc/scintilla/src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
@@ -2073,43 +2089,43 @@ STCLIB_OBJECTS = \
stclib_ScintillaWX.o \
$(__STC_PLATFORM_SRC_OBJECTS_3)
STCLIB_ODEP = $(_____pch_wxprec_stclib_wx_wxprec_h_gch___depname)
-GLDLL_CXXFLAGS = $(__gldll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+GLDLL_CXXFLAGS = $(__gldll_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_GL $(PIC_FLAG) $(CXXWARNINGS) \
- $(CPPFLAGS) $(CXXFLAGS)
-GLDLL_OBJCXXFLAGS = $(__gldll_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_GL $(PIC_FLAG) \
+ $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+GLDLL_OBJCXXFLAGS = $(__gldll_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) -DWXUSINGDLL -DWXMAKINGDLL_GL $(PIC_FLAG) $(CPPFLAGS) \
- $(OBJCXXFLAGS)
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_GL $(PIC_FLAG) \
+ $(CPPFLAGS) $(OBJCXXFLAGS)
GLDLL_OBJECTS = \
$(__gldll___win32rc) \
gldll_glcmn.o \
$(__OPENGL_SRC_PLATFORM_OBJECTS)
GLDLL_ODEP = $(_____pch_wxprec_gldll_wx_wxprec_h_gch___depname)
-GLLIB_CXXFLAGS = $(__gllib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+GLLIB_CXXFLAGS = $(__gllib_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) $(CXXWARNINGS) $(CPPFLAGS) $(CXXFLAGS)
-GLLIB_OBJCXXFLAGS = $(__gllib_PCH_INC) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) -DWXBUILDING $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+GLLIB_OBJCXXFLAGS = $(__gllib_PCH_INC) $(__INC_TIFF_BUILD_p) $(__INC_TIFF_p) \
$(__INC_JPEG_p) $(__INC_PNG_p) $(__INC_ZLIB_p) $(__INC_REGEX_p) \
- $(__INC_EXPAT_p) $(CPPFLAGS) $(OBJCXXFLAGS)
+ $(__INC_EXPAT_p) $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -DWXBUILDING $(CPPFLAGS) $(OBJCXXFLAGS)
GLLIB_OBJECTS = \
gllib_glcmn.o \
$(__OPENGL_SRC_PLATFORM_OBJECTS_1)
GLLIB_ODEP = $(_____pch_wxprec_gllib_wx_wxprec_h_gch___depname)
-SOUND_SDL_CXXFLAGS = -DWXUSINGDLL -DwxUSE_GUI=0 $(PIC_FLAG) $(CPPFLAGS) \
- $(CXXFLAGS)
+SOUND_SDL_CXXFLAGS = $(WX_CPPFLAGS) -DWXUSINGDLL -DwxUSE_GUI=0 $(PIC_FLAG) \
+ $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
SOUND_SDL_OBJECTS = \
sound_sdl_sound_sdl.o
-WEBKIT2_EXT_CXXFLAGS = -DWXUSINGDLL -DwxUSE_GUI=0 $(PIC_FLAG) $(CPPFLAGS) \
- $(CXXFLAGS)
+WEBKIT2_EXT_CXXFLAGS = $(WX_CPPFLAGS) -DWXUSINGDLL -DwxUSE_GUI=0 $(PIC_FLAG) \
+ $(WX_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
WEBKIT2_EXT_OBJECTS = \
webkit2_ext_webview_webkit2_extension.o
LOCALE_LINGUAS = ca cs da de el es fi fr hu id it ja nl pl ru sl sv tr uk zh zh_CN zh_TW
@@ -2250,10 +2266,6 @@ COND_PLATFORM_WIN32_1_GTK_PLATFORM_HDR = \
wx/msw/joystick.h \
wx/msw/taskbar.h
@COND_PLATFORM_WIN32_1@GTK_PLATFORM_HDR = $(COND_PLATFORM_WIN32_1_GTK_PLATFORM_HDR)
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@UNIV_PLATFORM_HDR \
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@ = wx/generic/animate.h
-@COND_TOOLKIT_MSW@UNIV_PLATFORM_HDR = wx/generic/animate.h
-@COND_TOOLKIT_X11@UNIV_PLATFORM_HDR = wx/generic/animate.h
@COND_TOOLKIT_MSW@MSW_HTML_HDR = wx/msw/helpbest.h
@COND_PLATFORM_MACOSX_1@WEBVIEW_HDR_PLATFORM = \
@COND_PLATFORM_MACOSX_1@ wx/osx/webviewhistoryitem_webkit.h \
@@ -2638,7 +2650,6 @@ COND_PLATFORM_WIN32_1_BASE_PLATFORM_HDR = \
wx/msw/fswatcher.h
@COND_PLATFORM_WIN32_1@BASE_PLATFORM_HDR = $(COND_PLATFORM_WIN32_1_BASE_PLATFORM_HDR)
COND_TOOLKIT_DFB_LOWLEVEL_HDR = \
- wx/generic/animate.h \
wx/generic/caret.h \
wx/generic/colour.h \
wx/generic/icon.h \
@@ -2900,7 +2911,6 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION__GUI_HDR = \
wx/gtk1/textctrl.h \
wx/gtk1/tglbtn.h \
wx/gtk1/treectrl.h \
- wx/generic/animate.h \
wx/generic/activityindicator.h
@COND_TOOLKIT_GTK_TOOLKIT_VERSION_@GUI_HDR = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION__GUI_HDR)
COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_GUI_HDR = \
@@ -3161,9 +3171,7 @@ COND_TOOLKIT_MOTIF_GUI_HDR = \
wx/motif/tglbtn.h \
wx/motif/toolbar.h \
wx/motif/toplevel.h \
- wx/motif/window.h \
- wx/generic/animate.h \
- wx/generic/animateanimate.h
+ wx/motif/window.h
@COND_TOOLKIT_MOTIF@GUI_HDR = $(COND_TOOLKIT_MOTIF_GUI_HDR)
COND_TOOLKIT_MSW_GUI_HDR = \
wx/generic/clrpickerg.h \
@@ -3264,7 +3272,6 @@ COND_TOOLKIT_MSW_GUI_HDR = \
wx/msw/rt/utils.h \
wx/msw/hyperlink.h \
wx/msw/bmpcbox.h \
- wx/generic/animate.h \
wx/msw/commandlinkbutton.h \
wx/msw/datetimectrl.h \
wx/msw/timectrl.h \
@@ -3401,7 +3408,6 @@ COND_TOOLKIT_OSX_COCOA_GUI_HDR = \
wx/generic/region.h \
wx/osx/cocoa/stdpaths.h \
wx/osx/sound.h \
- wx/generic/animate.h \
wx/osx/dvrenderer.h \
wx/osx/cocoa/dataview.h \
wx/osx/dvrenderers.h \
@@ -3508,7 +3514,6 @@ COND_TOOLKIT_OSX_IPHONE_GUI_HDR = \
wx/osx/iphone/evtloop.h \
wx/osx/iphone/private.h \
wx/generic/region.h \
- wx/generic/animate.h \
wx/osx/sound.h
@COND_TOOLKIT_OSX_IPHONE@GUI_HDR = $(COND_TOOLKIT_OSX_IPHONE_GUI_HDR)
COND_TOOLKIT_QT_GUI_HDR = \
@@ -3591,7 +3596,6 @@ COND_TOOLKIT_QT_GUI_HDR = \
wx/generic/fontpickerg.h \
wx/generic/caret.h \
wx/qt/calctrl.h \
- wx/generic/animate.h \
wx/qt/dvrenderer.h \
wx/qt/taskbar.h \
wx/generic/activityindicator.h \
@@ -3610,9 +3614,7 @@ COND_TOOLKIT_QT_GUI_HDR = \
@COND_TOOLKIT_X11@MEDIA_PLATFORM_HDR =
@COND_USE_GUI_1_WXUNIV_0@GUI_CORE_HEADERS = $(GUI_HDR)
COND_USE_GUI_1_WXUNIV_1_GUI_CORE_HEADERS = \
- $(UNIV_PLATFORM_HDR) \
wx/generic/accel.h \
- wx/generic/animate.h \
wx/generic/clrpickerg.h \
wx/generic/collpaneg.h \
wx/generic/ctrlsub.h \
@@ -3707,6 +3709,7 @@ COND_USE_GUI_1_ALL_GUI_HEADERS = \
wx/gbsizer.h \
wx/gdicmn.h \
wx/generic/accel.h \
+ wx/generic/animate.h \
wx/generic/buttonbar.h \
wx/generic/choicdgg.h \
wx/generic/combo.h \
@@ -4536,6 +4539,7 @@ COND_USE_GUI_1_WXUNIV_0___CORE_SRC_OBJECTS = \
monodll_windowid.o \
monodll_wrapsizer.o \
monodll_xpmdecod.o \
+ monodll_animateg.o \
monodll_busyinfo.o \
monodll_generic_buttonbar.o \
monodll_choicdgg.o \
@@ -4613,7 +4617,6 @@ COND_USE_GUI_1_WXUNIV_0___CORE_SRC_OBJECTS = \
COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS = \
$(__LOWLEVEL_SRC_OBJECTS_1) \
$(__PLATFORM_SRC_OBJECTS) \
- $(__UNIV_PLATFORM_SRC_OBJECTS) \
monodll_generic_accel.o \
monodll_clrpickerg.o \
monodll_collpaneg.o \
@@ -4797,6 +4800,7 @@ COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS = \
monodll_windowid.o \
monodll_wrapsizer.o \
monodll_xpmdecod.o \
+ monodll_animateg.o \
monodll_busyinfo.o \
monodll_generic_buttonbar.o \
monodll_choicdgg.o \
@@ -4873,7 +4877,6 @@ COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS = \
@COND_USE_GUI_1_WXUNIV_1@__CORE_SRC_OBJECTS = $(COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS)
COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS = \
monodll_fontmgrcmn.o \
- monodll_animateg.o \
monodll_generic_caret.o \
monodll_generic_colour.o \
monodll_generic_icon.o \
@@ -5149,7 +5152,8 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS = \
monodll_automtn.o \
monodll_notifmsgrt.o \
monodll_uuid.o \
- monodll_msw_evtloop.o
+ monodll_msw_evtloop.o \
+ monodll_access.o
@COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS)
@COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS = \
@COND_TOOLKIT_OSX_COCOA@ $(__OSX_LOWLEVEL_SRC_OBJECTS)
@@ -5245,8 +5249,7 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION____GUI_SRC_OBJECTS = \
monodll_gtk1_tglbtn.o \
monodll_gtk1_taskbar.o \
monodll_generic_activityindicator.o \
- monodll_gtk1_eggtrayicon.o \
- monodll_animateg.o
+ monodll_gtk1_eggtrayicon.o
@COND_TOOLKIT_GTK_TOOLKIT_VERSION_@__GUI_SRC_OBJECTS = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION____GUI_SRC_OBJECTS)
COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___GUI_SRC_OBJECTS = \
monodll_generic_accel.o \
@@ -5511,7 +5514,6 @@ COND_TOOLKIT_MOTIF___GUI_SRC_OBJECTS = \
monodll_generic_statline.o \
monodll_generic_statusbr.o \
monodll_tabg.o \
- monodll_animateg.o \
monodll_generic_activityindicator.o
@COND_TOOLKIT_MOTIF@__GUI_SRC_OBJECTS = $(COND_TOOLKIT_MOTIF___GUI_SRC_OBJECTS)
COND_TOOLKIT_MSW___GUI_SRC_OBJECTS = \
@@ -5551,7 +5553,6 @@ COND_TOOLKIT_MSW___GUI_SRC_OBJECTS = \
monodll_nativdlg.o \
monodll_msw_nativewin.o \
monodll_msw_notebook.o \
- monodll_access.o \
monodll_ownerdrw.o \
monodll_progdlg.o \
monodll_msw_radiobox.o \
@@ -5574,7 +5575,6 @@ COND_TOOLKIT_MSW___GUI_SRC_OBJECTS = \
monodll_msw_treectrl.o \
monodll_systhemectrl.o \
monodll_customdraw.o \
- monodll_animateg.o \
monodll_commandlinkbutton.o \
monodll_msw_bmpcbox.o \
monodll_msw_hyperlink.o \
@@ -5628,7 +5628,6 @@ COND_TOOLKIT_OSX_COCOA___GUI_SRC_OBJECTS = \
monodll_cocoa_settings.o \
monodll_cocoa_overlay.o \
monodll_cocoa_aboutdlg.o \
- monodll_animateg.o \
monodll_dataview_osx.o \
monodll_cocoa_notifmsg.o \
monodll_cocoa_taskbar.o \
@@ -5667,7 +5666,6 @@ COND_TOOLKIT_OSX_IPHONE___GUI_SRC_OBJECTS = \
monodll_iphone_settings.o \
monodll_sound_osx.o \
monodll_core_sound.o \
- monodll_animateg.o \
monodll_iphone_statbmp.o
@COND_TOOLKIT_OSX_IPHONE@__GUI_SRC_OBJECTS = $(COND_TOOLKIT_OSX_IPHONE___GUI_SRC_OBJECTS)
COND_TOOLKIT_QT___GUI_SRC_OBJECTS = \
@@ -5682,7 +5680,6 @@ COND_TOOLKIT_QT___GUI_SRC_OBJECTS = \
monodll_generic_imaglist.o \
monodll_prntdlgg.o \
monodll_generic_textmeasure.o \
- monodll_animateg.o \
monodll_generic_activityindicator.o \
monodll_qt_accel.o \
monodll_qt_app.o \
@@ -5782,7 +5779,6 @@ COND_PLATFORM_WIN32_1___QT_PLATFORM_SRC_OBJECTS = \
@COND_PLATFORM_WIN32_1@__QT_PLATFORM_SRC_OBJECTS = $(COND_PLATFORM_WIN32_1___QT_PLATFORM_SRC_OBJECTS)
COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_1 = \
monodll_fontmgrcmn.o \
- monodll_animateg.o \
monodll_generic_caret.o \
monodll_generic_colour.o \
monodll_generic_icon.o \
@@ -6058,7 +6054,8 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_1 = \
monodll_automtn.o \
monodll_notifmsgrt.o \
monodll_uuid.o \
- monodll_msw_evtloop.o
+ monodll_msw_evtloop.o \
+ monodll_access.o
@COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_1 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_1)
@COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_1 = \
@COND_TOOLKIT_OSX_COCOA@ $(__OSX_LOWLEVEL_SRC_OBJECTS)
@@ -6107,10 +6104,6 @@ COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_1 = \
monodll_x11_window.o \
monodll_displayx11.o
@COND_TOOLKIT_X11@__LOWLEVEL_SRC_OBJECTS_1 = $(COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_1)
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@__UNIV_PLATFORM_SRC_OBJECTS \
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@ = monodll_animateg.o
-@COND_TOOLKIT_MSW@__UNIV_PLATFORM_SRC_OBJECTS = monodll_animateg.o
-@COND_TOOLKIT_X11@__UNIV_PLATFORM_SRC_OBJECTS = monodll_animateg.o
@COND_TOOLKIT_COCOA@__MEDIA_PLATFORM_SRC_OBJECTS = \
@COND_TOOLKIT_COCOA@ monodll_src_cocoa_mediactrl.o
@COND_TOOLKIT_GTK@__MEDIA_PLATFORM_SRC_OBJECTS = \
@@ -6526,6 +6519,7 @@ COND_USE_GUI_1_WXUNIV_0___CORE_SRC_OBJECTS_1 = \
monolib_windowid.o \
monolib_wrapsizer.o \
monolib_xpmdecod.o \
+ monolib_animateg.o \
monolib_busyinfo.o \
monolib_generic_buttonbar.o \
monolib_choicdgg.o \
@@ -6603,7 +6597,6 @@ COND_USE_GUI_1_WXUNIV_0___CORE_SRC_OBJECTS_1 = \
COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS_1 = \
$(__LOWLEVEL_SRC_OBJECTS_3) \
$(__PLATFORM_SRC_OBJECTS_0) \
- $(__UNIV_PLATFORM_SRC_OBJECTS_1) \
monolib_generic_accel.o \
monolib_clrpickerg.o \
monolib_collpaneg.o \
@@ -6787,6 +6780,7 @@ COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS_1 = \
monolib_windowid.o \
monolib_wrapsizer.o \
monolib_xpmdecod.o \
+ monolib_animateg.o \
monolib_busyinfo.o \
monolib_generic_buttonbar.o \
monolib_choicdgg.o \
@@ -6863,7 +6857,6 @@ COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS_1 = \
@COND_USE_GUI_1_WXUNIV_1@__CORE_SRC_OBJECTS_1 = $(COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS_1)
COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_2 = \
monolib_fontmgrcmn.o \
- monolib_animateg.o \
monolib_generic_caret.o \
monolib_generic_colour.o \
monolib_generic_icon.o \
@@ -7139,7 +7132,8 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_2 = \
monolib_automtn.o \
monolib_notifmsgrt.o \
monolib_uuid.o \
- monolib_msw_evtloop.o
+ monolib_msw_evtloop.o \
+ monolib_access.o
@COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_2 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_2)
@COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_2 = \
@COND_TOOLKIT_OSX_COCOA@ $(__OSX_LOWLEVEL_SRC_OBJECTS_17)
@@ -7235,8 +7229,7 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION____GUI_SRC_OBJECTS_1 = \
monolib_gtk1_tglbtn.o \
monolib_gtk1_taskbar.o \
monolib_generic_activityindicator.o \
- monolib_gtk1_eggtrayicon.o \
- monolib_animateg.o
+ monolib_gtk1_eggtrayicon.o
@COND_TOOLKIT_GTK_TOOLKIT_VERSION_@__GUI_SRC_OBJECTS_1 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION____GUI_SRC_OBJECTS_1)
COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___GUI_SRC_OBJECTS_1 = \
monolib_generic_accel.o \
@@ -7501,7 +7494,6 @@ COND_TOOLKIT_MOTIF___GUI_SRC_OBJECTS_1 = \
monolib_generic_statline.o \
monolib_generic_statusbr.o \
monolib_tabg.o \
- monolib_animateg.o \
monolib_generic_activityindicator.o
@COND_TOOLKIT_MOTIF@__GUI_SRC_OBJECTS_1 = $(COND_TOOLKIT_MOTIF___GUI_SRC_OBJECTS_1)
COND_TOOLKIT_MSW___GUI_SRC_OBJECTS_1 = \
@@ -7541,7 +7533,6 @@ COND_TOOLKIT_MSW___GUI_SRC_OBJECTS_1 = \
monolib_nativdlg.o \
monolib_msw_nativewin.o \
monolib_msw_notebook.o \
- monolib_access.o \
monolib_ownerdrw.o \
monolib_progdlg.o \
monolib_msw_radiobox.o \
@@ -7564,7 +7555,6 @@ COND_TOOLKIT_MSW___GUI_SRC_OBJECTS_1 = \
monolib_msw_treectrl.o \
monolib_systhemectrl.o \
monolib_customdraw.o \
- monolib_animateg.o \
monolib_commandlinkbutton.o \
monolib_msw_bmpcbox.o \
monolib_msw_hyperlink.o \
@@ -7618,7 +7608,6 @@ COND_TOOLKIT_OSX_COCOA___GUI_SRC_OBJECTS_1 = \
monolib_cocoa_settings.o \
monolib_cocoa_overlay.o \
monolib_cocoa_aboutdlg.o \
- monolib_animateg.o \
monolib_dataview_osx.o \
monolib_cocoa_notifmsg.o \
monolib_cocoa_taskbar.o \
@@ -7657,7 +7646,6 @@ COND_TOOLKIT_OSX_IPHONE___GUI_SRC_OBJECTS_1 = \
monolib_iphone_settings.o \
monolib_sound_osx.o \
monolib_core_sound.o \
- monolib_animateg.o \
monolib_iphone_statbmp.o
@COND_TOOLKIT_OSX_IPHONE@__GUI_SRC_OBJECTS_1 = $(COND_TOOLKIT_OSX_IPHONE___GUI_SRC_OBJECTS_1)
COND_TOOLKIT_QT___GUI_SRC_OBJECTS_1 = \
@@ -7672,7 +7660,6 @@ COND_TOOLKIT_QT___GUI_SRC_OBJECTS_1 = \
monolib_generic_imaglist.o \
monolib_prntdlgg.o \
monolib_generic_textmeasure.o \
- monolib_animateg.o \
monolib_generic_activityindicator.o \
monolib_qt_accel.o \
monolib_qt_app.o \
@@ -7772,7 +7759,6 @@ COND_PLATFORM_WIN32_1___QT_PLATFORM_SRC_OBJECTS_1 = \
@COND_PLATFORM_WIN32_1@__QT_PLATFORM_SRC_OBJECTS_1 = $(COND_PLATFORM_WIN32_1___QT_PLATFORM_SRC_OBJECTS_1)
COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_3 = \
monolib_fontmgrcmn.o \
- monolib_animateg.o \
monolib_generic_caret.o \
monolib_generic_colour.o \
monolib_generic_icon.o \
@@ -8048,7 +8034,8 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_3 = \
monolib_automtn.o \
monolib_notifmsgrt.o \
monolib_uuid.o \
- monolib_msw_evtloop.o
+ monolib_msw_evtloop.o \
+ monolib_access.o
@COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_3 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_3)
@COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_3 = \
@COND_TOOLKIT_OSX_COCOA@ $(__OSX_LOWLEVEL_SRC_OBJECTS_17)
@@ -8097,10 +8084,6 @@ COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_3 = \
monolib_x11_window.o \
monolib_displayx11.o
@COND_TOOLKIT_X11@__LOWLEVEL_SRC_OBJECTS_3 = $(COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_3)
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@__UNIV_PLATFORM_SRC_OBJECTS_1 \
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@ = monolib_animateg.o
-@COND_TOOLKIT_MSW@__UNIV_PLATFORM_SRC_OBJECTS_1 = monolib_animateg.o
-@COND_TOOLKIT_X11@__UNIV_PLATFORM_SRC_OBJECTS_1 = monolib_animateg.o
@COND_TOOLKIT_COCOA@__MEDIA_PLATFORM_SRC_OBJECTS_1 = \
@COND_TOOLKIT_COCOA@ monolib_src_cocoa_mediactrl.o
@COND_TOOLKIT_GTK@__MEDIA_PLATFORM_SRC_OBJECTS_1 = \
@@ -8661,6 +8644,7 @@ COND_USE_GUI_1_WXUNIV_0___CORE_SRC_OBJECTS_2 = \
coredll_windowid.o \
coredll_wrapsizer.o \
coredll_xpmdecod.o \
+ coredll_animateg.o \
coredll_busyinfo.o \
coredll_buttonbar.o \
coredll_choicdgg.o \
@@ -8738,7 +8722,6 @@ COND_USE_GUI_1_WXUNIV_0___CORE_SRC_OBJECTS_2 = \
COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS_2 = \
$(__LOWLEVEL_SRC_OBJECTS_5) \
$(__PLATFORM_SRC_OBJECTS_8) \
- $(__UNIV_PLATFORM_SRC_OBJECTS_2) \
coredll_generic_accel.o \
coredll_clrpickerg.o \
coredll_collpaneg.o \
@@ -8922,6 +8905,7 @@ COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS_2 = \
coredll_windowid.o \
coredll_wrapsizer.o \
coredll_xpmdecod.o \
+ coredll_animateg.o \
coredll_busyinfo.o \
coredll_buttonbar.o \
coredll_choicdgg.o \
@@ -8998,7 +8982,6 @@ COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS_2 = \
@COND_USE_GUI_1_WXUNIV_1@__CORE_SRC_OBJECTS_2 = $(COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS_2)
COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_4 = \
coredll_fontmgrcmn.o \
- coredll_animateg.o \
coredll_generic_caret.o \
coredll_generic_colour.o \
coredll_generic_icon.o \
@@ -9274,7 +9257,8 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_4 = \
coredll_automtn.o \
coredll_notifmsgrt.o \
coredll_uuid.o \
- coredll_msw_evtloop.o
+ coredll_msw_evtloop.o \
+ coredll_access.o
@COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_4 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_4)
@COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_4 = \
@COND_TOOLKIT_OSX_COCOA@ $(__OSX_LOWLEVEL_SRC_OBJECTS_1_1)
@@ -9370,8 +9354,7 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION____GUI_SRC_OBJECTS_2 = \
coredll_gtk1_tglbtn.o \
coredll_gtk1_taskbar.o \
coredll_generic_activityindicator.o \
- coredll_gtk1_eggtrayicon.o \
- coredll_animateg.o
+ coredll_gtk1_eggtrayicon.o
@COND_TOOLKIT_GTK_TOOLKIT_VERSION_@__GUI_SRC_OBJECTS_2 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION____GUI_SRC_OBJECTS_2)
COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___GUI_SRC_OBJECTS_2 = \
coredll_generic_accel.o \
@@ -9636,7 +9619,6 @@ COND_TOOLKIT_MOTIF___GUI_SRC_OBJECTS_2 = \
coredll_generic_statline.o \
coredll_generic_statusbr.o \
coredll_tabg.o \
- coredll_animateg.o \
coredll_generic_activityindicator.o
@COND_TOOLKIT_MOTIF@__GUI_SRC_OBJECTS_2 = $(COND_TOOLKIT_MOTIF___GUI_SRC_OBJECTS_2)
COND_TOOLKIT_MSW___GUI_SRC_OBJECTS_2 = \
@@ -9676,7 +9658,6 @@ COND_TOOLKIT_MSW___GUI_SRC_OBJECTS_2 = \
coredll_nativdlg.o \
coredll_msw_nativewin.o \
coredll_msw_notebook.o \
- coredll_access.o \
coredll_ownerdrw.o \
coredll_progdlg.o \
coredll_msw_radiobox.o \
@@ -9699,7 +9680,6 @@ COND_TOOLKIT_MSW___GUI_SRC_OBJECTS_2 = \
coredll_msw_treectrl.o \
coredll_systhemectrl.o \
coredll_customdraw.o \
- coredll_animateg.o \
coredll_commandlinkbutton.o \
coredll_msw_bmpcbox.o \
coredll_msw_hyperlink.o \
@@ -9753,7 +9733,6 @@ COND_TOOLKIT_OSX_COCOA___GUI_SRC_OBJECTS_2 = \
coredll_cocoa_settings.o \
coredll_cocoa_overlay.o \
coredll_cocoa_aboutdlg.o \
- coredll_animateg.o \
coredll_dataview_osx.o \
coredll_cocoa_notifmsg.o \
coredll_cocoa_taskbar.o \
@@ -9792,7 +9771,6 @@ COND_TOOLKIT_OSX_IPHONE___GUI_SRC_OBJECTS_2 = \
coredll_iphone_settings.o \
coredll_sound_osx.o \
coredll_core_sound.o \
- coredll_animateg.o \
coredll_iphone_statbmp.o
@COND_TOOLKIT_OSX_IPHONE@__GUI_SRC_OBJECTS_2 = $(COND_TOOLKIT_OSX_IPHONE___GUI_SRC_OBJECTS_2)
COND_TOOLKIT_QT___GUI_SRC_OBJECTS_2 = \
@@ -9807,7 +9785,6 @@ COND_TOOLKIT_QT___GUI_SRC_OBJECTS_2 = \
coredll_generic_imaglist.o \
coredll_prntdlgg.o \
coredll_generic_textmeasure.o \
- coredll_animateg.o \
coredll_generic_activityindicator.o \
coredll_qt_accel.o \
coredll_qt_app.o \
@@ -9907,7 +9884,6 @@ COND_PLATFORM_WIN32_1___QT_PLATFORM_SRC_OBJECTS_2 = \
@COND_PLATFORM_WIN32_1@__QT_PLATFORM_SRC_OBJECTS_2 = $(COND_PLATFORM_WIN32_1___QT_PLATFORM_SRC_OBJECTS_2)
COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_5 = \
coredll_fontmgrcmn.o \
- coredll_animateg.o \
coredll_generic_caret.o \
coredll_generic_colour.o \
coredll_generic_icon.o \
@@ -10183,7 +10159,8 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_5 = \
coredll_automtn.o \
coredll_notifmsgrt.o \
coredll_uuid.o \
- coredll_msw_evtloop.o
+ coredll_msw_evtloop.o \
+ coredll_access.o
@COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_5 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_5)
@COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_5 = \
@COND_TOOLKIT_OSX_COCOA@ $(__OSX_LOWLEVEL_SRC_OBJECTS_1_1)
@@ -10232,10 +10209,6 @@ COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_5 = \
coredll_x11_window.o \
coredll_displayx11.o
@COND_TOOLKIT_X11@__LOWLEVEL_SRC_OBJECTS_5 = $(COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_5)
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@__UNIV_PLATFORM_SRC_OBJECTS_2 \
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@ = coredll_animateg.o
-@COND_TOOLKIT_MSW@__UNIV_PLATFORM_SRC_OBJECTS_2 = coredll_animateg.o
-@COND_TOOLKIT_X11@__UNIV_PLATFORM_SRC_OBJECTS_2 = coredll_animateg.o
@COND_PLATFORM_UNIX_1_USE_PLUGINS_0@__PLUGIN_SRC_OBJECTS_2 \
@COND_PLATFORM_UNIX_1_USE_PLUGINS_0@ = coredll_sound_sdl.o
COND_MONOLITHIC_0_SHARED_0_USE_GUI_1___corelib___depname = \
@@ -10386,6 +10359,7 @@ COND_USE_GUI_1_WXUNIV_0___CORE_SRC_OBJECTS_3 = \
corelib_windowid.o \
corelib_wrapsizer.o \
corelib_xpmdecod.o \
+ corelib_animateg.o \
corelib_busyinfo.o \
corelib_buttonbar.o \
corelib_choicdgg.o \
@@ -10463,7 +10437,6 @@ COND_USE_GUI_1_WXUNIV_0___CORE_SRC_OBJECTS_3 = \
COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS_3 = \
$(__LOWLEVEL_SRC_OBJECTS_7) \
$(__PLATFORM_SRC_OBJECTS_9) \
- $(__UNIV_PLATFORM_SRC_OBJECTS_3) \
corelib_generic_accel.o \
corelib_clrpickerg.o \
corelib_collpaneg.o \
@@ -10647,6 +10620,7 @@ COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS_3 = \
corelib_windowid.o \
corelib_wrapsizer.o \
corelib_xpmdecod.o \
+ corelib_animateg.o \
corelib_busyinfo.o \
corelib_buttonbar.o \
corelib_choicdgg.o \
@@ -10723,7 +10697,6 @@ COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS_3 = \
@COND_USE_GUI_1_WXUNIV_1@__CORE_SRC_OBJECTS_3 = $(COND_USE_GUI_1_WXUNIV_1___CORE_SRC_OBJECTS_3)
COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_6 = \
corelib_fontmgrcmn.o \
- corelib_animateg.o \
corelib_generic_caret.o \
corelib_generic_colour.o \
corelib_generic_icon.o \
@@ -10999,7 +10972,8 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_6 = \
corelib_automtn.o \
corelib_notifmsgrt.o \
corelib_uuid.o \
- corelib_msw_evtloop.o
+ corelib_msw_evtloop.o \
+ corelib_access.o
@COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_6 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_6)
@COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_6 = \
@COND_TOOLKIT_OSX_COCOA@ $(__OSX_LOWLEVEL_SRC_OBJECTS_1_4)
@@ -11095,8 +11069,7 @@ COND_TOOLKIT_GTK_TOOLKIT_VERSION____GUI_SRC_OBJECTS_3 = \
corelib_gtk1_tglbtn.o \
corelib_gtk1_taskbar.o \
corelib_generic_activityindicator.o \
- corelib_gtk1_eggtrayicon.o \
- corelib_animateg.o
+ corelib_gtk1_eggtrayicon.o
@COND_TOOLKIT_GTK_TOOLKIT_VERSION_@__GUI_SRC_OBJECTS_3 = $(COND_TOOLKIT_GTK_TOOLKIT_VERSION____GUI_SRC_OBJECTS_3)
COND_TOOLKIT_GTK_TOOLKIT_VERSION_2___GUI_SRC_OBJECTS_3 = \
corelib_generic_accel.o \
@@ -11361,7 +11334,6 @@ COND_TOOLKIT_MOTIF___GUI_SRC_OBJECTS_3 = \
corelib_generic_statline.o \
corelib_generic_statusbr.o \
corelib_tabg.o \
- corelib_animateg.o \
corelib_generic_activityindicator.o
@COND_TOOLKIT_MOTIF@__GUI_SRC_OBJECTS_3 = $(COND_TOOLKIT_MOTIF___GUI_SRC_OBJECTS_3)
COND_TOOLKIT_MSW___GUI_SRC_OBJECTS_3 = \
@@ -11401,7 +11373,6 @@ COND_TOOLKIT_MSW___GUI_SRC_OBJECTS_3 = \
corelib_nativdlg.o \
corelib_msw_nativewin.o \
corelib_msw_notebook.o \
- corelib_access.o \
corelib_ownerdrw.o \
corelib_progdlg.o \
corelib_msw_radiobox.o \
@@ -11424,7 +11395,6 @@ COND_TOOLKIT_MSW___GUI_SRC_OBJECTS_3 = \
corelib_msw_treectrl.o \
corelib_systhemectrl.o \
corelib_customdraw.o \
- corelib_animateg.o \
corelib_commandlinkbutton.o \
corelib_msw_bmpcbox.o \
corelib_msw_hyperlink.o \
@@ -11478,7 +11448,6 @@ COND_TOOLKIT_OSX_COCOA___GUI_SRC_OBJECTS_3 = \
corelib_cocoa_settings.o \
corelib_cocoa_overlay.o \
corelib_cocoa_aboutdlg.o \
- corelib_animateg.o \
corelib_dataview_osx.o \
corelib_cocoa_notifmsg.o \
corelib_cocoa_taskbar.o \
@@ -11517,7 +11486,6 @@ COND_TOOLKIT_OSX_IPHONE___GUI_SRC_OBJECTS_3 = \
corelib_iphone_settings.o \
corelib_sound_osx.o \
corelib_core_sound.o \
- corelib_animateg.o \
corelib_iphone_statbmp.o
@COND_TOOLKIT_OSX_IPHONE@__GUI_SRC_OBJECTS_3 = $(COND_TOOLKIT_OSX_IPHONE___GUI_SRC_OBJECTS_3)
COND_TOOLKIT_QT___GUI_SRC_OBJECTS_3 = \
@@ -11532,7 +11500,6 @@ COND_TOOLKIT_QT___GUI_SRC_OBJECTS_3 = \
corelib_generic_imaglist.o \
corelib_prntdlgg.o \
corelib_generic_textmeasure.o \
- corelib_animateg.o \
corelib_generic_activityindicator.o \
corelib_qt_accel.o \
corelib_qt_app.o \
@@ -11632,7 +11599,6 @@ COND_PLATFORM_WIN32_1___QT_PLATFORM_SRC_OBJECTS_3 = \
@COND_PLATFORM_WIN32_1@__QT_PLATFORM_SRC_OBJECTS_3 = $(COND_PLATFORM_WIN32_1___QT_PLATFORM_SRC_OBJECTS_3)
COND_TOOLKIT_DFB___LOWLEVEL_SRC_OBJECTS_7 = \
corelib_fontmgrcmn.o \
- corelib_animateg.o \
corelib_generic_caret.o \
corelib_generic_colour.o \
corelib_generic_icon.o \
@@ -11908,7 +11874,8 @@ COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_7 = \
corelib_automtn.o \
corelib_notifmsgrt.o \
corelib_uuid.o \
- corelib_msw_evtloop.o
+ corelib_msw_evtloop.o \
+ corelib_access.o
@COND_TOOLKIT_MSW@__LOWLEVEL_SRC_OBJECTS_7 = $(COND_TOOLKIT_MSW___LOWLEVEL_SRC_OBJECTS_7)
@COND_TOOLKIT_OSX_COCOA@__LOWLEVEL_SRC_OBJECTS_7 = \
@COND_TOOLKIT_OSX_COCOA@ $(__OSX_LOWLEVEL_SRC_OBJECTS_1_4)
@@ -11957,10 +11924,6 @@ COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_7 = \
corelib_x11_window.o \
corelib_displayx11.o
@COND_TOOLKIT_X11@__LOWLEVEL_SRC_OBJECTS_7 = $(COND_TOOLKIT_X11___LOWLEVEL_SRC_OBJECTS_7)
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@__UNIV_PLATFORM_SRC_OBJECTS_3 \
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2@ = corelib_animateg.o
-@COND_TOOLKIT_MSW@__UNIV_PLATFORM_SRC_OBJECTS_3 = corelib_animateg.o
-@COND_TOOLKIT_X11@__UNIV_PLATFORM_SRC_OBJECTS_3 = corelib_animateg.o
@COND_PLATFORM_UNIX_1_USE_PLUGINS_0@__PLUGIN_SRC_OBJECTS_3 \
@COND_PLATFORM_UNIX_1_USE_PLUGINS_0@ = corelib_sound_sdl.o
@COND_SHARED_1@____wxcore_namedll_DEP = $(__coredll___depname)
@@ -13748,6 +13711,21 @@ COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_HTML_1___htmldll_library_link_LIBR_0 \
= \
-lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html-$(WX_RELEASE)$(HOST_SUFFIX)
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_HTML_1@__htmldll_library_link_LIBR_0 = $(COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_HTML_1___htmldll_library_link_LIBR_0)
+@COND_wxUSE_LIBTIFF_builtin@__INC_TIFF_BUILD_p_54 \
+@COND_wxUSE_LIBTIFF_builtin@ = --include-dir \
+@COND_wxUSE_LIBTIFF_builtin@ $(wx_top_builddir)/src/tiff/libtiff
+@COND_wxUSE_LIBTIFF_builtin@__INC_TIFF_p_54 = \
+@COND_wxUSE_LIBTIFF_builtin@ --include-dir $(top_srcdir)/src/tiff/libtiff
+@COND_wxUSE_LIBJPEG_builtin@__INC_JPEG_p_54 = \
+@COND_wxUSE_LIBJPEG_builtin@ --include-dir $(top_srcdir)/src/jpeg
+@COND_wxUSE_LIBPNG_builtin@__INC_PNG_p_53 = \
+@COND_wxUSE_LIBPNG_builtin@ --include-dir $(top_srcdir)/src/png
+@COND_wxUSE_ZLIB_builtin@__INC_ZLIB_p_67 = \
+@COND_wxUSE_ZLIB_builtin@ --include-dir $(top_srcdir)/src/zlib
+@COND_wxUSE_REGEX_builtin@__INC_REGEX_p_65 = \
+@COND_wxUSE_REGEX_builtin@ --include-dir $(top_srcdir)/src/regex
+@COND_wxUSE_EXPAT_builtin@__INC_EXPAT_p_65 = \
+@COND_wxUSE_EXPAT_builtin@ --include-dir $(top_srcdir)/src/expat/expat/lib
@COND_PLATFORM_WIN32_1@__WIN32_DPI_MANIFEST_p = \
@COND_PLATFORM_WIN32_1@ --define \
@COND_PLATFORM_WIN32_1@ wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST)
@@ -13769,21 +13747,6 @@ COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_HTML_1___htmldll_library_link_LIBR_0 \
@COND_USE_SOVERSION_1_USE_SOVERSOLARIS_1@dll___targetsuf3 = .$(SO_SUFFIX).4
@COND_TOOLKIT_MSW@__RCDEFDIR_p = --include-dir \
@COND_TOOLKIT_MSW@ $(LIBDIRNAME)/wx/include/$(TOOLCHAIN_FULLNAME)
-@COND_wxUSE_LIBTIFF_builtin@__INC_TIFF_BUILD_p_66 \
-@COND_wxUSE_LIBTIFF_builtin@ = --include-dir \
-@COND_wxUSE_LIBTIFF_builtin@ $(wx_top_builddir)/src/tiff/libtiff
-@COND_wxUSE_LIBTIFF_builtin@__INC_TIFF_p_66 = \
-@COND_wxUSE_LIBTIFF_builtin@ --include-dir $(top_srcdir)/src/tiff/libtiff
-@COND_wxUSE_LIBJPEG_builtin@__INC_JPEG_p_66 = \
-@COND_wxUSE_LIBJPEG_builtin@ --include-dir $(top_srcdir)/src/jpeg
-@COND_wxUSE_LIBPNG_builtin@__INC_PNG_p_65 = \
-@COND_wxUSE_LIBPNG_builtin@ --include-dir $(top_srcdir)/src/png
-@COND_wxUSE_ZLIB_builtin@__INC_ZLIB_p_67 = \
-@COND_wxUSE_ZLIB_builtin@ --include-dir $(top_srcdir)/src/zlib
-@COND_wxUSE_REGEX_builtin@__INC_REGEX_p_65 = \
-@COND_wxUSE_REGEX_builtin@ --include-dir $(top_srcdir)/src/regex
-@COND_wxUSE_EXPAT_builtin@__INC_EXPAT_p_65 = \
-@COND_wxUSE_EXPAT_builtin@ --include-dir $(top_srcdir)/src/expat/expat/lib
@COND_USE_GUI_1_wxUSE_LIBTIFF_builtin@__LIB_TIFF_p \
@COND_USE_GUI_1_wxUSE_LIBTIFF_builtin@ = \
@COND_USE_GUI_1_wxUSE_LIBTIFF_builtin@ -lwxtiff$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
@@ -13800,11 +13763,6 @@ COND_wxUSE_REGEX_builtin___LIB_REGEX_p = \
@COND_wxUSE_REGEX_builtin@__LIB_REGEX_p = $(COND_wxUSE_REGEX_builtin___LIB_REGEX_p)
@COND_wxUSE_EXPAT_builtin@__LIB_EXPAT_p = \
@COND_wxUSE_EXPAT_builtin@ -lwxexpat$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)
-@COND_WXUNIV_1@__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
-@COND_DEBUG_FLAG_0@__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
-@COND_USE_EXCEPTIONS_0@__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
-@COND_USE_RTTI_0@__RTTI_DEFINE_p = -DwxNO_RTTI
-@COND_USE_THREADS_0@__THREAD_DEFINE_p = -DwxNO_THREADS
@COND_wxUSE_LIBTIFF_builtin@__INC_TIFF_BUILD_p \
@COND_wxUSE_LIBTIFF_builtin@ = -I$(wx_top_builddir)/src/tiff/libtiff
@COND_wxUSE_LIBTIFF_builtin@__INC_TIFF_p = -I$(top_srcdir)/src/tiff/libtiff
@@ -13814,6 +13772,11 @@ COND_wxUSE_REGEX_builtin___LIB_REGEX_p = \
@COND_wxUSE_REGEX_builtin@__INC_REGEX_p = -I$(top_srcdir)/src/regex
@COND_wxUSE_EXPAT_builtin@__INC_EXPAT_p = \
@COND_wxUSE_EXPAT_builtin@ -I$(top_srcdir)/src/expat/expat/lib
+@COND_WXUNIV_1@__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
+@COND_DEBUG_FLAG_0@__DEBUG_DEFINE_p = -DwxDEBUG_LEVEL=0
+@COND_USE_EXCEPTIONS_0@__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
+@COND_USE_RTTI_0@__RTTI_DEFINE_p = -DwxNO_RTTI
+@COND_USE_THREADS_0@__THREAD_DEFINE_p = -DwxNO_THREADS
### Targets: ###
@@ -14056,8 +14019,8 @@ distclean: clean
@COND_SHARED_0_USE_STC_1@uninstall_wxscintilla:
@COND_SHARED_0_USE_STC_1@ rm -f $(DESTDIR)$(libdir)/$(LIBPREFIX)wxscintilla$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX)$(LIBEXT)
-@COND_MONOLITHIC_1_SHARED_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(MONODLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__monodll___win32rc) $(__wxscintilla_library_link_DEP)
-@COND_MONOLITHIC_1_SHARED_1@ $(SHARED_LD_CXX) $@ $(MONODLL_OBJECTS) $(__wxscintilla_library_link_LIBR) -L$(LIBDIRNAME) $(__monodll___macinstnamecmd) $(__monodll___importlib) $(__monodll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(EXTRALIBS_XML) $(EXTRALIBS_HTML) $(EXTRALIBS_MEDIA) $(PLUGIN_ADV_EXTRALIBS) $(EXTRALIBS_WEBVIEW) $(__wxscintilla_library_link_LIBR_1) $(LIBS)
+@COND_MONOLITHIC_1_SHARED_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(MONODLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__monodll___win32rc) $(__wxscintilla_library_link_DEP)
+@COND_MONOLITHIC_1_SHARED_1@ $(SHARED_LD_CXX) $@ $(MONODLL_OBJECTS) $(__wxscintilla_library_link_LIBR) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__monodll___macinstnamecmd) $(__monodll___importlib) $(__monodll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(EXTRALIBS_XML) $(EXTRALIBS_HTML) $(EXTRALIBS_MEDIA) $(PLUGIN_ADV_EXTRALIBS) $(EXTRALIBS_WEBVIEW) $(__wxscintilla_library_link_LIBR_1) $(LIBS)
@COND_MONOLITHIC_1_SHARED_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_1_SHARED_1@
@COND_MONOLITHIC_1_SHARED_1@ $(__monodll___so_symlinks_cmd)
@@ -14091,8 +14054,8 @@ distclean: clean
@COND_USE_PCH_1@./.pch/wxprec_monolib/wx/wxprec.h.gch:
@COND_USE_PCH_1@ $(BK_MAKE_PCH) ./.pch/wxprec_monolib/wx/wxprec.h.gch wx/wxprec.h $(CXX) $(MONOLIB_CXXFLAGS)
-@COND_MONOLITHIC_0_SHARED_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(BASEDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__basedll___win32rc)
-@COND_MONOLITHIC_0_SHARED_1@ $(SHARED_LD_CXX) $@ $(BASEDLL_OBJECTS) -L$(LIBDIRNAME) $(__basedll___macinstnamecmd) $(__basedll___importlib) $(__basedll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(BASEDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__basedll___win32rc)
+@COND_MONOLITHIC_0_SHARED_1@ $(SHARED_LD_CXX) $@ $(BASEDLL_OBJECTS) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__basedll___macinstnamecmd) $(__basedll___importlib) $(__basedll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1@
@COND_MONOLITHIC_0_SHARED_1@ $(__basedll___so_symlinks_cmd)
@@ -14128,8 +14091,8 @@ distclean: clean
@COND_MONOLITHIC_0@wxbase: $(____wxbase_namedll_DEP) $(____wxbase_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(NETDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__netdll___win32rc) $(__basedll___depname)
-@COND_MONOLITHIC_0_SHARED_1@ $(SHARED_LD_CXX) $@ $(NETDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__netdll___macinstnamecmd) $(__netdll___importlib) $(__netdll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(NETDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__netdll___win32rc) $(__basedll___depname)
+@COND_MONOLITHIC_0_SHARED_1@ $(SHARED_LD_CXX) $@ $(NETDLL_OBJECTS) -L$(LIBDIRNAME) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__netdll___macinstnamecmd) $(__netdll___importlib) $(__netdll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1@
@COND_MONOLITHIC_0_SHARED_1@ $(__netdll___so_symlinks_cmd)
@@ -14165,8 +14128,8 @@ distclean: clean
@COND_MONOLITHIC_0@wxnet: $(____wxnet_namedll_DEP) $(____wxnet_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(COREDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__coredll___win32rc) $(__basedll___depname)
-@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@ $(SHARED_LD_CXX) $@ $(COREDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__coredll___macinstnamecmd) $(__coredll___importlib) $(__coredll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(COREDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__coredll___win32rc) $(__basedll___depname)
+@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@ $(SHARED_LD_CXX) $@ $(COREDLL_OBJECTS) -L$(LIBDIRNAME) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__coredll___macinstnamecmd) $(__coredll___importlib) $(__coredll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@ $(__coredll___so_symlinks_cmd)
@@ -14202,8 +14165,8 @@ distclean: clean
@COND_MONOLITHIC_0_USE_GUI_1@wxcore: $(____wxcore_namedll_DEP) $(____wxcore_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(ADVDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__advdll___win32rc) $(__coredll___depname) $(__basedll___depname)
-@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@ $(SHARED_LD_CXX) $@ $(ADVDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__advdll___macinstnamecmd) $(__advdll___importlib) $(__advdll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(PLUGIN_ADV_EXTRALIBS) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(ADVDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__advdll___win32rc) $(__coredll___depname) $(__basedll___depname)
+@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@ $(SHARED_LD_CXX) $@ $(ADVDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__advdll___macinstnamecmd) $(__advdll___importlib) $(__advdll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(PLUGIN_ADV_EXTRALIBS) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1@ $(__advdll___so_symlinks_cmd)
@@ -14239,8 +14202,8 @@ distclean: clean
@COND_MONOLITHIC_0_USE_GUI_1@wxadv: $(____wxadv_namedll_DEP) $(____wxadv_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_MEDIA_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(MEDIADLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__mediadll___win32rc) $(__coredll___depname) $(__basedll___depname)
-@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_MEDIA_1@ $(SHARED_LD_CXX) $@ $(MEDIADLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__mediadll___macinstnamecmd) $(__mediadll___importlib) $(__mediadll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(EXTRALIBS_MEDIA) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_MEDIA_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(MEDIADLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__mediadll___win32rc) $(__coredll___depname) $(__basedll___depname)
+@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_MEDIA_1@ $(SHARED_LD_CXX) $@ $(MEDIADLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__mediadll___macinstnamecmd) $(__mediadll___importlib) $(__mediadll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(EXTRALIBS_MEDIA) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_MEDIA_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_MEDIA_1@
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_MEDIA_1@ $(__mediadll___so_symlinks_cmd)
@@ -14276,8 +14239,8 @@ distclean: clean
@COND_MONOLITHIC_0_USE_GUI_1_USE_MEDIA_1@wxmedia: $(____wxmedia_namedll_DEP) $(____wxmedia_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_HTML_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(HTMLDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__htmldll___win32rc) $(__coredll___depname) $(__basedll___depname)
-@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_HTML_1@ $(SHARED_LD_CXX) $@ $(HTMLDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__htmldll___macinstnamecmd) $(__htmldll___importlib) $(__htmldll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(EXTRALIBS_HTML) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_HTML_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(HTMLDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__htmldll___win32rc) $(__coredll___depname) $(__basedll___depname)
+@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_HTML_1@ $(SHARED_LD_CXX) $@ $(HTMLDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__htmldll___macinstnamecmd) $(__htmldll___importlib) $(__htmldll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(EXTRALIBS_HTML) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_HTML_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_HTML_1@
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_HTML_1@ $(__htmldll___so_symlinks_cmd)
@@ -14313,8 +14276,8 @@ distclean: clean
@COND_MONOLITHIC_0_USE_HTML_1@wxhtml: $(____wxhtml_namedll_DEP) $(____wxhtml_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_WEBVIEW_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(WEBVIEWDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__coredll___depname) $(__basedll___depname) $(__webviewdll___win32rc)
-@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_WEBVIEW_1@ $(SHARED_LD_CXX) $@ $(WEBVIEWDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__webviewdll___macinstnamecmd) $(__webviewdll___importlib) $(__webviewdll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(EXTRALIBS_WEBVIEW) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_WEBVIEW_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(WEBVIEWDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__coredll___depname) $(__basedll___depname) $(__webviewdll___win32rc)
+@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_WEBVIEW_1@ $(SHARED_LD_CXX) $@ $(WEBVIEWDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__webviewdll___macinstnamecmd) $(__webviewdll___importlib) $(__webviewdll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(EXTRALIBS_WEBVIEW) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_WEBVIEW_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_WEBVIEW_1@
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_WEBVIEW_1@ $(__webviewdll___so_symlinks_cmd)
@@ -14350,8 +14313,8 @@ distclean: clean
@COND_MONOLITHIC_0_USE_WEBVIEW_1@wxwebview: $(____wxwebview_namedll_DEP) $(____wxwebview_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_QA_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(QADLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__qadll___win32rc) $(__coredll___depname) $(__basedll___depname) $(__xmldll___depname)
-@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_QA_1@ $(SHARED_LD_CXX) $@ $(QADLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__qadll___macinstnamecmd) $(__qadll___importlib) $(__qadll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_QA_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(QADLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__qadll___win32rc) $(__coredll___depname) $(__basedll___depname) $(__xmldll___depname)
+@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_QA_1@ $(SHARED_LD_CXX) $@ $(QADLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__qadll___macinstnamecmd) $(__qadll___importlib) $(__qadll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_QA_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_QA_1@
@COND_MONOLITHIC_0_SHARED_1_USE_GUI_1_USE_QA_1@ $(__qadll___so_symlinks_cmd)
@@ -14387,8 +14350,8 @@ distclean: clean
@COND_MONOLITHIC_0_USE_QA_1@wxqa: $(____wxqa_namedll_DEP) $(____wxqa_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(XMLDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__xmldll___win32rc) $(__basedll___depname)
-@COND_MONOLITHIC_0_SHARED_1@ $(SHARED_LD_CXX) $@ $(XMLDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__xmldll___macinstnamecmd) $(__xmldll___importlib) $(__xmldll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(EXTRALIBS_XML) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(XMLDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__xmldll___win32rc) $(__basedll___depname)
+@COND_MONOLITHIC_0_SHARED_1@ $(SHARED_LD_CXX) $@ $(XMLDLL_OBJECTS) -L$(LIBDIRNAME) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__xmldll___macinstnamecmd) $(__xmldll___importlib) $(__xmldll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(EXTRALIBS_XML) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1@
@COND_MONOLITHIC_0_SHARED_1@ $(__xmldll___so_symlinks_cmd)
@@ -14424,8 +14387,8 @@ distclean: clean
@COND_MONOLITHIC_0@wxxml: $(____wxxml_namedll_DEP) $(____wxxml_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1_USE_XRC_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(XRCDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__xrcdll___win32rc) $(__htmldll_library_link_DEP) $(__coredll___depname) $(__xmldll___depname) $(__basedll___depname)
-@COND_MONOLITHIC_0_SHARED_1_USE_XRC_1@ $(SHARED_LD_CXX) $@ $(XRCDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__htmldll_library_link_LIBR) -L$(LIBDIRNAME) $(__xrcdll___macinstnamecmd) $(__xrcdll___importlib) $(__xrcdll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(__htmldll_library_link_LIBR_0) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1_USE_XRC_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(XRCDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__xrcdll___win32rc) $(__htmldll_library_link_DEP) $(__coredll___depname) $(__xmldll___depname) $(__basedll___depname)
+@COND_MONOLITHIC_0_SHARED_1_USE_XRC_1@ $(SHARED_LD_CXX) $@ $(XRCDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__htmldll_library_link_LIBR) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__xrcdll___macinstnamecmd) $(__xrcdll___importlib) $(__xrcdll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(__htmldll_library_link_LIBR_0) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1_USE_XRC_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1_USE_XRC_1@
@COND_MONOLITHIC_0_SHARED_1_USE_XRC_1@ $(__xrcdll___so_symlinks_cmd)
@@ -14461,8 +14424,8 @@ distclean: clean
@COND_MONOLITHIC_0_USE_XRC_1@wxxrc: $(____wxxrc_namedll_DEP) $(____wxxrc_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1_USE_AUI_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(AUIDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__auidll___win32rc) $(__coredll___depname) $(__basedll___depname)
-@COND_MONOLITHIC_0_SHARED_1_USE_AUI_1@ $(SHARED_LD_CXX) $@ $(AUIDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__auidll___macinstnamecmd) $(__auidll___importlib) $(__auidll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1_USE_AUI_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(AUIDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__auidll___win32rc) $(__coredll___depname) $(__basedll___depname)
+@COND_MONOLITHIC_0_SHARED_1_USE_AUI_1@ $(SHARED_LD_CXX) $@ $(AUIDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__auidll___macinstnamecmd) $(__auidll___importlib) $(__auidll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1_USE_AUI_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1_USE_AUI_1@
@COND_MONOLITHIC_0_SHARED_1_USE_AUI_1@ $(__auidll___so_symlinks_cmd)
@@ -14498,8 +14461,8 @@ distclean: clean
@COND_MONOLITHIC_0_USE_AUI_1@wxaui: $(____wxaui_namedll_DEP) $(____wxaui_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1_USE_RIBBON_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(RIBBONDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__ribbondll___win32rc) $(__coredll___depname) $(__basedll___depname)
-@COND_MONOLITHIC_0_SHARED_1_USE_RIBBON_1@ $(SHARED_LD_CXX) $@ $(RIBBONDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__ribbondll___macinstnamecmd) $(__ribbondll___importlib) $(__ribbondll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1_USE_RIBBON_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(RIBBONDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__ribbondll___win32rc) $(__coredll___depname) $(__basedll___depname)
+@COND_MONOLITHIC_0_SHARED_1_USE_RIBBON_1@ $(SHARED_LD_CXX) $@ $(RIBBONDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__ribbondll___macinstnamecmd) $(__ribbondll___importlib) $(__ribbondll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1_USE_RIBBON_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1_USE_RIBBON_1@
@COND_MONOLITHIC_0_SHARED_1_USE_RIBBON_1@ $(__ribbondll___so_symlinks_cmd)
@@ -14535,8 +14498,8 @@ distclean: clean
@COND_MONOLITHIC_0_USE_RIBBON_1@wxribbon: $(____wxribbon_namedll_DEP) $(____wxribbon_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1_USE_PROPGRID_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(PROPGRIDDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__propgriddll___win32rc) $(__coredll___depname) $(__basedll___depname)
-@COND_MONOLITHIC_0_SHARED_1_USE_PROPGRID_1@ $(SHARED_LD_CXX) $@ $(PROPGRIDDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__propgriddll___macinstnamecmd) $(__propgriddll___importlib) $(__propgriddll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1_USE_PROPGRID_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(PROPGRIDDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__propgriddll___win32rc) $(__coredll___depname) $(__basedll___depname)
+@COND_MONOLITHIC_0_SHARED_1_USE_PROPGRID_1@ $(SHARED_LD_CXX) $@ $(PROPGRIDDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__propgriddll___macinstnamecmd) $(__propgriddll___importlib) $(__propgriddll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1_USE_PROPGRID_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1_USE_PROPGRID_1@
@COND_MONOLITHIC_0_SHARED_1_USE_PROPGRID_1@ $(__propgriddll___so_symlinks_cmd)
@@ -14572,8 +14535,8 @@ distclean: clean
@COND_MONOLITHIC_0_USE_PROPGRID_1@wxpropgrid: $(____wxpropgrid_namedll_DEP) $(____wxpropgrid_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1_USE_RICHTEXT_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(RICHTEXTDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__richtextdll___win32rc) $(__htmldll_library_link_DEP) $(__xmldll___depname) $(__coredll___depname) $(__basedll___depname)
-@COND_MONOLITHIC_0_SHARED_1_USE_RICHTEXT_1@ $(SHARED_LD_CXX) $@ $(RICHTEXTDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__htmldll_library_link_LIBR) -L$(LIBDIRNAME) $(__richtextdll___macinstnamecmd) $(__richtextdll___importlib) $(__richtextdll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(__htmldll_library_link_LIBR_0) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1_USE_RICHTEXT_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(RICHTEXTDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__richtextdll___win32rc) $(__htmldll_library_link_DEP) $(__xmldll___depname) $(__coredll___depname) $(__basedll___depname)
+@COND_MONOLITHIC_0_SHARED_1_USE_RICHTEXT_1@ $(SHARED_LD_CXX) $@ $(RICHTEXTDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__htmldll_library_link_LIBR) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__richtextdll___macinstnamecmd) $(__richtextdll___importlib) $(__richtextdll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(__htmldll_library_link_LIBR_0) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1_USE_RICHTEXT_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1_USE_RICHTEXT_1@
@COND_MONOLITHIC_0_SHARED_1_USE_RICHTEXT_1@ $(__richtextdll___so_symlinks_cmd)
@@ -14609,8 +14572,8 @@ distclean: clean
@COND_MONOLITHIC_0_USE_RICHTEXT_1@wxrichtext: $(____wxrichtext_namedll_DEP) $(____wxrichtext_namelib_DEP)
-@COND_MONOLITHIC_0_SHARED_1_USE_STC_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(STCDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxscintilla___depname) $(__stcdll___win32rc) $(__coredll___depname) $(__basedll___depname)
-@COND_MONOLITHIC_0_SHARED_1_USE_STC_1@ $(SHARED_LD_CXX) $@ $(STCDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(__stcdll___macinstnamecmd) $(__stcdll___importlib) $(__stcdll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwxscintilla$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
+@COND_MONOLITHIC_0_SHARED_1_USE_STC_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(STCDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxscintilla___depname) $(__stcdll___win32rc) $(__coredll___depname) $(__basedll___depname)
+@COND_MONOLITHIC_0_SHARED_1_USE_STC_1@ $(SHARED_LD_CXX) $@ $(STCDLL_OBJECTS) -L$(LIBDIRNAME) -L$(LIBDIRNAME) -L$(LIBDIRNAME) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__stcdll___macinstnamecmd) $(__stcdll___importlib) $(__stcdll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) -lwxscintilla$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core-$(WX_RELEASE)$(HOST_SUFFIX) -lwx_base$(WXBASEPORT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)-$(WX_RELEASE)$(HOST_SUFFIX) $(LIBS)
@COND_MONOLITHIC_0_SHARED_1_USE_STC_1@ $(DYLIB_RPATH_POSTLINK)
@COND_MONOLITHIC_0_SHARED_1_USE_STC_1@
@COND_MONOLITHIC_0_SHARED_1_USE_STC_1@ $(__stcdll___so_symlinks_cmd)
@@ -14646,8 +14609,8 @@ distclean: clean
@COND_MONOLITHIC_0_USE_STC_1@wxstc: $(____wxstc_namedll_DEP) $(____wxstc_namelib_DEP)
-@COND_SHARED_1_USE_GUI_1_USE_OPENGL_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(GLDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__gldll___win32rc) $(__basedll___depname) $(__coredll___depname) $(__monodll___depname)
-@COND_SHARED_1_USE_GUI_1_USE_OPENGL_1@ $(SHARED_LD_CXX) $@ $(GLDLL_OBJECTS) -L$(LIBDIRNAME) $(__gldll___macinstnamecmd) $(__gldll___importlib) $(__gldll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(__WXLIBGLDEP_CORE_p) $(__WXLIBGLDEP_BASE_p) $(__WXLIB_MONO_p) $(EXTRALIBS_OPENGL) $(LIBS)
+@COND_SHARED_1_USE_GUI_1_USE_OPENGL_1@$(LIBDIRNAME)/$(DLLPREFIX)$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG)$(dll___targetsuf3): $(GLDLL_OBJECTS) $(__wxexpat___depname) $(__wxzlib___depname) $(__wxregex___depname) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla___depname) $(__gldll___win32rc) $(__basedll___depname) $(__coredll___depname) $(__monodll___depname)
+@COND_SHARED_1_USE_GUI_1_USE_OPENGL_1@ $(SHARED_LD_CXX) $@ $(GLDLL_OBJECTS) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(__gldll___macinstnamecmd) $(__gldll___importlib) $(__gldll___soname_flags) $(WXMACVERSION_CMD) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(__WXLIBGLDEP_CORE_p) $(__WXLIBGLDEP_BASE_p) $(__WXLIB_MONO_p) $(EXTRALIBS_OPENGL) $(LIBS)
@COND_SHARED_1_USE_GUI_1_USE_OPENGL_1@ $(DYLIB_RPATH_POSTLINK)
@COND_SHARED_1_USE_GUI_1_USE_OPENGL_1@
@COND_SHARED_1_USE_GUI_1_USE_OPENGL_1@ $(__gldll___so_symlinks_cmd)
@@ -14684,7 +14647,7 @@ distclean: clean
@COND_USE_GUI_1_USE_OPENGL_1@wxgl: $(____wxgl_namedll_DEP) $(____wxgl_namelib_DEP)
@COND_WITH_PLUGIN_SDL_1@$(DLLPREFIX_MODULE)sound_sdl$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(PLUGVERDELIM)$(PLUGIN_VERSION0)$(WXCOMPILER).$(SO_SUFFIX_MODULE): $(SOUND_SDL_OBJECTS)
-@COND_WITH_PLUGIN_SDL_1@ $(SHARED_LD_MODULE_CXX) $@ $(SOUND_SDL_OBJECTS) $(LDFLAGS) $(EXTRALIBS_SDL) $(LIBS)
+@COND_WITH_PLUGIN_SDL_1@ $(SHARED_LD_MODULE_CXX) $@ $(SOUND_SDL_OBJECTS) $(WX_LDFLAGS) $(LDFLAGS) $(EXTRALIBS_SDL) $(LIBS)
@COND_WITH_PLUGIN_SDL_1@install_sound_sdl: $(__sound_sdl___depname)
@COND_WITH_PLUGIN_SDL_1@ $(INSTALL_DIR) $(DESTDIR)$(PLUGINS_INST_DIR)
@@ -14694,7 +14657,7 @@ distclean: clean
@COND_WITH_PLUGIN_SDL_1@ rm -f $(DESTDIR)$(PLUGINS_INST_DIR)/$(DLLPREFIX_MODULE)sound_sdl$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(PLUGVERDELIM)$(PLUGIN_VERSION0)$(WXCOMPILER).$(SO_SUFFIX_MODULE)
@COND_USE_WEBVIEW_WEBKIT2_1@$(DLLPREFIX_MODULE)webkit2_ext$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(PLUGVERDELIM)$(PLUGIN_VERSION0)$(WXCOMPILER).$(SO_SUFFIX_MODULE): $(WEBKIT2_EXT_OBJECTS)
-@COND_USE_WEBVIEW_WEBKIT2_1@ $(SHARED_LD_MODULE_CXX) $@ $(WEBKIT2_EXT_OBJECTS) $(LDFLAGS) $(EXTRALIBS_WEBVIEW) $(LIBS)
+@COND_USE_WEBVIEW_WEBKIT2_1@ $(SHARED_LD_MODULE_CXX) $@ $(WEBKIT2_EXT_OBJECTS) $(WX_LDFLAGS) $(LDFLAGS) $(EXTRALIBS_WEBVIEW) $(LIBS)
@COND_USE_WEBVIEW_WEBKIT2_1@install_webkit2_ext: $(__webkit2_ext___depname)
@COND_USE_WEBVIEW_WEBKIT2_1@ $(INSTALL_DIR) $(DESTDIR)$(PLUGINS_INST_DIR)/web-extensions
@@ -16339,9 +16302,6 @@ monodll_msw_nativewin.o: $(srcdir)/src/msw/nativewin.cpp $(MONODLL_ODEP)
monodll_msw_notebook.o: $(srcdir)/src/msw/notebook.cpp $(MONODLL_ODEP)
$(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/msw/notebook.cpp
-monodll_access.o: $(srcdir)/src/msw/ole/access.cpp $(MONODLL_ODEP)
- $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/msw/ole/access.cpp
-
monodll_ownerdrw.o: $(srcdir)/src/msw/ownerdrw.cpp $(MONODLL_ODEP)
$(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/msw/ownerdrw.cpp
@@ -18787,6 +18747,9 @@ monodll_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONODLL_ODEP)
@COND_TOOLKIT_MSW_USE_GUI_1@monodll_msw_evtloop.o: $(srcdir)/src/msw/evtloop.cpp $(MONODLL_ODEP)
@COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/msw/evtloop.cpp
+@COND_TOOLKIT_MSW_USE_GUI_1@monodll_access.o: $(srcdir)/src/msw/ole/access.cpp $(MONODLL_ODEP)
+@COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/msw/ole/access.cpp
+
@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1@monodll_artmac.o: $(srcdir)/src/osx/artmac.cpp $(MONODLL_ODEP)
@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/osx/artmac.cpp
@@ -18973,33 +18936,6 @@ monodll_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONODLL_ODEP)
@COND_TOOLKIT_DFB_USE_GUI_1@monodll_fontmgrcmn.o: $(srcdir)/src/common/fontmgrcmn.cpp $(MONODLL_ODEP)
@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/common/fontmgrcmn.cpp
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION__USE_GUI_1_WXUNIV_0@monodll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONODLL_ODEP)
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION__USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_MOTIF_USE_GUI_1_WXUNIV_0@monodll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONODLL_ODEP)
-@COND_TOOLKIT_MOTIF_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@monodll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONODLL_ODEP)
-@COND_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@monodll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONODLL_ODEP)
-@COND_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@monodll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONODLL_ODEP)
-@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_DFB_USE_GUI_1@monodll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONODLL_ODEP)
-@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1@monodll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONODLL_ODEP)
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_MSW_USE_GUI_1@monodll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONODLL_ODEP)
-@COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1@monodll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONODLL_ODEP)
-@COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
@COND_TOOLKIT_DFB_USE_GUI_1@monodll_generic_colour.o: $(srcdir)/src/generic/colour.cpp $(MONODLL_ODEP)
@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/colour.cpp
@@ -20584,6 +20520,9 @@ monodll_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONODLL_ODEP)
@COND_USE_GUI_1@monodll_xpmdecod.o: $(srcdir)/src/common/xpmdecod.cpp $(MONODLL_ODEP)
@COND_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/common/xpmdecod.cpp
+@COND_USE_GUI_1@monodll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONODLL_ODEP)
+@COND_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
+
@COND_USE_GUI_1@monodll_busyinfo.o: $(srcdir)/src/generic/busyinfo.cpp $(MONODLL_ODEP)
@COND_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/generic/busyinfo.cpp
@@ -20837,7 +20776,7 @@ monodll_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONODLL_ODEP)
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ $(CXXC) -c -o $@ $(MONODLL_CXXFLAGS) $(srcdir)/src/html/chm.cpp
monodll_version_rc.o: $(srcdir)/src/msw/version.rc $(MONODLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --include-dir $(top_srcdir)/src/stc/scintilla/include --include-dir $(top_srcdir)/src/stc/scintilla/lexlib --include-dir $(top_srcdir)/src/stc/scintilla/src --define __WX__ --define SCI_LEXER --define NO_CXX11_REGEX --define LINK_LEXERS --define wxUSE_BASE=1 --define WXMAKINGDLL $(__webviewdll_ext_dir_define_p_0)
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --include-dir $(top_srcdir)/src/stc/scintilla/include --include-dir $(top_srcdir)/src/stc/scintilla/lexlib --include-dir $(top_srcdir)/src/stc/scintilla/src --define __WX__ --define SCI_LEXER --define NO_CXX11_REGEX --define LINK_LEXERS --define wxUSE_BASE=1 --define WXMAKINGDLL $(__webviewdll_ext_dir_define_p_0)
monolib_any.o: $(srcdir)/src/common/any.cpp $(MONOLIB_ODEP)
$(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/common/any.cpp
@@ -21619,9 +21558,6 @@ monolib_msw_nativewin.o: $(srcdir)/src/msw/nativewin.cpp $(MONOLIB_ODEP)
monolib_msw_notebook.o: $(srcdir)/src/msw/notebook.cpp $(MONOLIB_ODEP)
$(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/msw/notebook.cpp
-monolib_access.o: $(srcdir)/src/msw/ole/access.cpp $(MONOLIB_ODEP)
- $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/msw/ole/access.cpp
-
monolib_ownerdrw.o: $(srcdir)/src/msw/ownerdrw.cpp $(MONOLIB_ODEP)
$(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/msw/ownerdrw.cpp
@@ -24067,6 +24003,9 @@ monolib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONOLIB_ODEP)
@COND_TOOLKIT_MSW_USE_GUI_1@monolib_msw_evtloop.o: $(srcdir)/src/msw/evtloop.cpp $(MONOLIB_ODEP)
@COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/msw/evtloop.cpp
+@COND_TOOLKIT_MSW_USE_GUI_1@monolib_access.o: $(srcdir)/src/msw/ole/access.cpp $(MONOLIB_ODEP)
+@COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/msw/ole/access.cpp
+
@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1@monolib_artmac.o: $(srcdir)/src/osx/artmac.cpp $(MONOLIB_ODEP)
@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/osx/artmac.cpp
@@ -24253,33 +24192,6 @@ monolib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONOLIB_ODEP)
@COND_TOOLKIT_DFB_USE_GUI_1@monolib_fontmgrcmn.o: $(srcdir)/src/common/fontmgrcmn.cpp $(MONOLIB_ODEP)
@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/common/fontmgrcmn.cpp
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION__USE_GUI_1_WXUNIV_0@monolib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONOLIB_ODEP)
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION__USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_MOTIF_USE_GUI_1_WXUNIV_0@monolib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONOLIB_ODEP)
-@COND_TOOLKIT_MOTIF_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@monolib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONOLIB_ODEP)
-@COND_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@monolib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONOLIB_ODEP)
-@COND_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@monolib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONOLIB_ODEP)
-@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_DFB_USE_GUI_1@monolib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONOLIB_ODEP)
-@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1@monolib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONOLIB_ODEP)
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_MSW_USE_GUI_1@monolib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONOLIB_ODEP)
-@COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1@monolib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONOLIB_ODEP)
-@COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
@COND_TOOLKIT_DFB_USE_GUI_1@monolib_generic_colour.o: $(srcdir)/src/generic/colour.cpp $(MONOLIB_ODEP)
@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/colour.cpp
@@ -25864,6 +25776,9 @@ monolib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONOLIB_ODEP)
@COND_USE_GUI_1@monolib_xpmdecod.o: $(srcdir)/src/common/xpmdecod.cpp $(MONOLIB_ODEP)
@COND_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/common/xpmdecod.cpp
+@COND_USE_GUI_1@monolib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(MONOLIB_ODEP)
+@COND_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
+
@COND_USE_GUI_1@monolib_busyinfo.o: $(srcdir)/src/generic/busyinfo.cpp $(MONOLIB_ODEP)
@COND_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/generic/busyinfo.cpp
@@ -26117,7 +26032,7 @@ monolib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(MONOLIB_ODEP)
@COND_PLATFORM_MACOSX_1_USE_GUI_1@ $(CXXC) -c -o $@ $(MONOLIB_CXXFLAGS) $(srcdir)/src/html/chm.cpp
basedll_version_rc.o: $(srcdir)/src/msw/version.rc $(BASEDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define wxUSE_GUI=0 --define WXMAKINGDLL_BASE --define wxUSE_BASE=1
+ $(WINDRES) -i$< -o$@ $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define wxUSE_GUI=0 --define WXMAKINGDLL_BASE --define wxUSE_BASE=1
basedll_any.o: $(srcdir)/src/common/any.cpp $(BASEDLL_ODEP)
$(CXXC) -c -o $@ $(BASEDLL_CXXFLAGS) $(srcdir)/src/common/any.cpp
@@ -27068,7 +26983,7 @@ baselib_cocoa_utils.o: $(srcdir)/src/osx/cocoa/utils.mm $(BASELIB_ODEP)
@COND_PLATFORM_MACOSX_1@ $(CXXC) -c -o $@ $(BASELIB_CXXFLAGS) $(srcdir)/src/unix/fswatcher_kqueue.cpp
netdll_version_rc.o: $(srcdir)/src/msw/version.rc $(NETDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_NET
+ $(WINDRES) -i$< -o$@ $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_NET
netdll_fs_inet.o: $(srcdir)/src/common/fs_inet.cpp $(NETDLL_ODEP)
$(CXXC) -c -o $@ $(NETDLL_CXXFLAGS) $(srcdir)/src/common/fs_inet.cpp
@@ -27173,7 +27088,7 @@ netlib_sockosx.o: $(srcdir)/src/osx/core/sockosx.cpp $(NETLIB_ODEP)
@COND_PLATFORM_MACOSX_1@ $(CXXC) -c -o $@ $(NETLIB_CXXFLAGS) $(srcdir)/src/unix/sockunix.cpp
coredll_version_rc.o: $(srcdir)/src/msw/version.rc $(COREDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define WXUSINGDLL --define WXMAKINGDLL_CORE --define wxUSE_BASE=0
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define WXUSINGDLL --define WXMAKINGDLL_CORE --define wxUSE_BASE=0
coredll_event.o: $(srcdir)/src/common/event.cpp $(COREDLL_ODEP)
$(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/common/event.cpp
@@ -27556,9 +27471,6 @@ coredll_msw_nativewin.o: $(srcdir)/src/msw/nativewin.cpp $(COREDLL_ODEP)
coredll_msw_notebook.o: $(srcdir)/src/msw/notebook.cpp $(COREDLL_ODEP)
$(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/msw/notebook.cpp
-coredll_access.o: $(srcdir)/src/msw/ole/access.cpp $(COREDLL_ODEP)
- $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/msw/ole/access.cpp
-
coredll_ownerdrw.o: $(srcdir)/src/msw/ownerdrw.cpp $(COREDLL_ODEP)
$(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/msw/ownerdrw.cpp
@@ -29425,6 +29337,9 @@ coredll_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(COREDLL_ODEP)
@COND_TOOLKIT_MSW_USE_GUI_1@coredll_msw_evtloop.o: $(srcdir)/src/msw/evtloop.cpp $(COREDLL_ODEP)
@COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/msw/evtloop.cpp
+@COND_TOOLKIT_MSW_USE_GUI_1@coredll_access.o: $(srcdir)/src/msw/ole/access.cpp $(COREDLL_ODEP)
+@COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/msw/ole/access.cpp
+
@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1@coredll_artmac.o: $(srcdir)/src/osx/artmac.cpp $(COREDLL_ODEP)
@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/osx/artmac.cpp
@@ -29611,33 +29526,6 @@ coredll_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(COREDLL_ODEP)
@COND_TOOLKIT_DFB_USE_GUI_1@coredll_fontmgrcmn.o: $(srcdir)/src/common/fontmgrcmn.cpp $(COREDLL_ODEP)
@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/common/fontmgrcmn.cpp
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION__USE_GUI_1_WXUNIV_0@coredll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(COREDLL_ODEP)
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION__USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_MOTIF_USE_GUI_1_WXUNIV_0@coredll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(COREDLL_ODEP)
-@COND_TOOLKIT_MOTIF_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@coredll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(COREDLL_ODEP)
-@COND_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@coredll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(COREDLL_ODEP)
-@COND_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@coredll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(COREDLL_ODEP)
-@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_DFB_USE_GUI_1@coredll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(COREDLL_ODEP)
-@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1@coredll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(COREDLL_ODEP)
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_MSW_USE_GUI_1@coredll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(COREDLL_ODEP)
-@COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1@coredll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(COREDLL_ODEP)
-@COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
@COND_TOOLKIT_DFB_USE_GUI_1@coredll_generic_colour.o: $(srcdir)/src/generic/colour.cpp $(COREDLL_ODEP)
@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/colour.cpp
@@ -31222,6 +31110,9 @@ coredll_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(COREDLL_ODEP)
@COND_USE_GUI_1@coredll_xpmdecod.o: $(srcdir)/src/common/xpmdecod.cpp $(COREDLL_ODEP)
@COND_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/common/xpmdecod.cpp
+@COND_USE_GUI_1@coredll_animateg.o: $(srcdir)/src/generic/animateg.cpp $(COREDLL_ODEP)
+@COND_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
+
@COND_USE_GUI_1@coredll_busyinfo.o: $(srcdir)/src/generic/busyinfo.cpp $(COREDLL_ODEP)
@COND_USE_GUI_1@ $(CXXC) -c -o $@ $(COREDLL_CXXFLAGS) $(srcdir)/src/generic/busyinfo.cpp
@@ -31822,9 +31713,6 @@ corelib_msw_nativewin.o: $(srcdir)/src/msw/nativewin.cpp $(CORELIB_ODEP)
corelib_msw_notebook.o: $(srcdir)/src/msw/notebook.cpp $(CORELIB_ODEP)
$(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/msw/notebook.cpp
-corelib_access.o: $(srcdir)/src/msw/ole/access.cpp $(CORELIB_ODEP)
- $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/msw/ole/access.cpp
-
corelib_ownerdrw.o: $(srcdir)/src/msw/ownerdrw.cpp $(CORELIB_ODEP)
$(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/msw/ownerdrw.cpp
@@ -33691,6 +33579,9 @@ corelib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(CORELIB_ODEP)
@COND_TOOLKIT_MSW_USE_GUI_1@corelib_msw_evtloop.o: $(srcdir)/src/msw/evtloop.cpp $(CORELIB_ODEP)
@COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/msw/evtloop.cpp
+@COND_TOOLKIT_MSW_USE_GUI_1@corelib_access.o: $(srcdir)/src/msw/ole/access.cpp $(CORELIB_ODEP)
+@COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/msw/ole/access.cpp
+
@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1@corelib_artmac.o: $(srcdir)/src/osx/artmac.cpp $(CORELIB_ODEP)
@COND_PLATFORM_MACOSX_1_TOOLKIT_OSX_COCOA_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/osx/artmac.cpp
@@ -33877,33 +33768,6 @@ corelib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(CORELIB_ODEP)
@COND_TOOLKIT_DFB_USE_GUI_1@corelib_fontmgrcmn.o: $(srcdir)/src/common/fontmgrcmn.cpp $(CORELIB_ODEP)
@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/common/fontmgrcmn.cpp
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION__USE_GUI_1_WXUNIV_0@corelib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(CORELIB_ODEP)
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION__USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_MOTIF_USE_GUI_1_WXUNIV_0@corelib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(CORELIB_ODEP)
-@COND_TOOLKIT_MOTIF_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@corelib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(CORELIB_ODEP)
-@COND_TOOLKIT_OSX_COCOA_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@corelib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(CORELIB_ODEP)
-@COND_TOOLKIT_OSX_IPHONE_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@corelib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(CORELIB_ODEP)
-@COND_TOOLKIT_QT_USE_GUI_1_WXUNIV_0@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_DFB_USE_GUI_1@corelib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(CORELIB_ODEP)
-@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1@corelib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(CORELIB_ODEP)
-@COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_MSW_USE_GUI_1@corelib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(CORELIB_ODEP)
-@COND_TOOLKIT_MSW_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
-@COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1@corelib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(CORELIB_ODEP)
-@COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
-
@COND_TOOLKIT_DFB_USE_GUI_1@corelib_generic_colour.o: $(srcdir)/src/generic/colour.cpp $(CORELIB_ODEP)
@COND_TOOLKIT_DFB_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/colour.cpp
@@ -35488,6 +35352,9 @@ corelib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(CORELIB_ODEP)
@COND_USE_GUI_1@corelib_xpmdecod.o: $(srcdir)/src/common/xpmdecod.cpp $(CORELIB_ODEP)
@COND_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/common/xpmdecod.cpp
+@COND_USE_GUI_1@corelib_animateg.o: $(srcdir)/src/generic/animateg.cpp $(CORELIB_ODEP)
+@COND_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/animateg.cpp
+
@COND_USE_GUI_1@corelib_busyinfo.o: $(srcdir)/src/generic/busyinfo.cpp $(CORELIB_ODEP)
@COND_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/busyinfo.cpp
@@ -35708,7 +35575,7 @@ corelib_sound_sdl.o: $(srcdir)/src/unix/sound_sdl.cpp $(CORELIB_ODEP)
@COND_USE_GUI_1@ $(CXXC) -c -o $@ $(CORELIB_CXXFLAGS) $(srcdir)/src/generic/rowheightcache.cpp
advdll_version_rc.o: $(srcdir)/src/msw/version.rc $(ADVDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define WXUSINGDLL --define WXMAKINGDLL_ADV
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define WXUSINGDLL --define WXMAKINGDLL_ADV
advdll_dummy.o: $(srcdir)/src/common/dummy.cpp $(ADVDLL_ODEP)
$(CXXC) -c -o $@ $(ADVDLL_CXXFLAGS) $(srcdir)/src/common/dummy.cpp
@@ -35717,7 +35584,7 @@ advlib_dummy.o: $(srcdir)/src/common/dummy.cpp $(ADVLIB_ODEP)
$(CXXC) -c -o $@ $(ADVLIB_CXXFLAGS) $(srcdir)/src/common/dummy.cpp
mediadll_version_rc.o: $(srcdir)/src/msw/version.rc $(MEDIADLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define WXUSINGDLL --define WXMAKINGDLL_MEDIA
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define WXUSINGDLL --define WXMAKINGDLL_MEDIA
mediadll_mediactrlcmn.o: $(srcdir)/src/common/mediactrlcmn.cpp $(MEDIADLL_ODEP)
$(CXXC) -c -o $@ $(MEDIADLL_CXXFLAGS) $(srcdir)/src/common/mediactrlcmn.cpp
@@ -35804,7 +35671,7 @@ medialib_qt_mediactrl.o: $(srcdir)/src/qt/mediactrl.cpp $(MEDIALIB_ODEP)
@COND_TOOLKIT_X11@ $(CXXC) -c -o $@ $(MEDIALIB_CXXFLAGS) $(srcdir)/src/unix/mediactrl_gstplayer.cpp
htmldll_version_rc.o: $(srcdir)/src/msw/version.rc $(HTMLDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define WXUSINGDLL --define WXMAKINGDLL_HTML
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define WXUSINGDLL --define WXMAKINGDLL_HTML
htmldll_helpbest.o: $(srcdir)/src/msw/helpbest.cpp $(HTMLDLL_ODEP)
$(CXXC) -c -o $@ $(HTMLDLL_CXXFLAGS) $(srcdir)/src/msw/helpbest.cpp
@@ -36005,7 +35872,7 @@ webviewdll_webviewfshandler.o: $(srcdir)/src/common/webviewfshandler.cpp $(WEBVI
$(CXXC) -c -o $@ $(WEBVIEWDLL_CXXFLAGS) $(srcdir)/src/common/webviewfshandler.cpp
webviewdll_version_rc.o: $(srcdir)/src/msw/version.rc $(WEBVIEWDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define WXUSINGDLL --define WXMAKINGDLL_WEBVIEW $(__webviewdll_ext_dir_define_p_0) $(__webview_additional_include_p_1)
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define WXUSINGDLL --define WXMAKINGDLL_WEBVIEW $(__webviewdll_ext_dir_define_p_0) $(__webview_additional_include_p_1)
webviewlib_webview_ie.o: $(srcdir)/src/msw/webview_ie.cpp $(WEBVIEWLIB_ODEP)
$(CXXC) -c -o $@ $(WEBVIEWLIB_CXXFLAGS) $(srcdir)/src/msw/webview_ie.cpp
@@ -36032,7 +35899,7 @@ webviewlib_webviewfshandler.o: $(srcdir)/src/common/webviewfshandler.cpp $(WEBVI
$(CXXC) -c -o $@ $(WEBVIEWLIB_CXXFLAGS) $(srcdir)/src/common/webviewfshandler.cpp
qadll_version_rc.o: $(srcdir)/src/msw/version.rc $(QADLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define WXUSINGDLL --define WXMAKINGDLL_QA
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define WXUSINGDLL --define WXMAKINGDLL_QA
qadll_debugrpt.o: $(srcdir)/src/common/debugrpt.cpp $(QADLL_ODEP)
$(CXXC) -c -o $@ $(QADLL_CXXFLAGS) $(srcdir)/src/common/debugrpt.cpp
@@ -36047,7 +35914,7 @@ qalib_dbgrptg.o: $(srcdir)/src/generic/dbgrptg.cpp $(QALIB_ODEP)
$(CXXC) -c -o $@ $(QALIB_CXXFLAGS) $(srcdir)/src/generic/dbgrptg.cpp
xmldll_version_rc.o: $(srcdir)/src/msw/version.rc $(XMLDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_XML
+ $(WINDRES) -i$< -o$@ $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIX)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_XML
xmldll_xml.o: $(srcdir)/src/xml/xml.cpp $(XMLDLL_ODEP)
$(CXXC) -c -o $@ $(XMLDLL_CXXFLAGS) $(srcdir)/src/xml/xml.cpp
@@ -36062,7 +35929,7 @@ xmllib_xtixml.o: $(srcdir)/src/common/xtixml.cpp $(XMLLIB_ODEP)
$(CXXC) -c -o $@ $(XMLLIB_CXXFLAGS) $(srcdir)/src/common/xtixml.cpp
xrcdll_version_rc.o: $(srcdir)/src/msw/version.rc $(XRCDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define WXUSINGDLL --define WXMAKINGDLL_XRC
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define WXUSINGDLL --define WXMAKINGDLL_XRC
xrcdll_xh_activityindicator.o: $(srcdir)/src/xrc/xh_activityindicator.cpp $(XRCDLL_ODEP)
$(CXXC) -c -o $@ $(XRCDLL_CXXFLAGS) $(srcdir)/src/xrc/xh_activityindicator.cpp
@@ -36479,7 +36346,7 @@ xrclib_xmlrsall.o: $(srcdir)/src/xrc/xmlrsall.cpp $(XRCLIB_ODEP)
$(CXXC) -c -o $@ $(XRCLIB_CXXFLAGS) $(srcdir)/src/xrc/xmlrsall.cpp
auidll_version_rc.o: $(srcdir)/src/msw/version.rc $(AUIDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define WXUSINGDLL --define WXMAKINGDLL_AUI
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define WXUSINGDLL --define WXMAKINGDLL_AUI
auidll_framemanager.o: $(srcdir)/src/aui/framemanager.cpp $(AUIDLL_ODEP)
$(CXXC) -c -o $@ $(AUIDLL_CXXFLAGS) $(srcdir)/src/aui/framemanager.cpp
@@ -36554,7 +36421,7 @@ auilib_barartmsw.o: $(srcdir)/src/aui/barartmsw.cpp $(AUILIB_ODEP)
$(CXXC) -c -o $@ $(AUILIB_CXXFLAGS) $(srcdir)/src/aui/barartmsw.cpp
ribbondll_version_rc.o: $(srcdir)/src/msw/version.rc $(RIBBONDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define WXUSINGDLL --define WXMAKINGDLL_RIBBON
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define WXUSINGDLL --define WXMAKINGDLL_RIBBON
ribbondll_art_internal.o: $(srcdir)/src/ribbon/art_internal.cpp $(RIBBONDLL_ODEP)
$(CXXC) -c -o $@ $(RIBBONDLL_CXXFLAGS) $(srcdir)/src/ribbon/art_internal.cpp
@@ -36623,7 +36490,7 @@ ribbonlib_xh_ribbon.o: $(srcdir)/src/xrc/xh_ribbon.cpp $(RIBBONLIB_ODEP)
$(CXXC) -c -o $@ $(RIBBONLIB_CXXFLAGS) $(srcdir)/src/xrc/xh_ribbon.cpp
propgriddll_version_rc.o: $(srcdir)/src/msw/version.rc $(PROPGRIDDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define WXUSINGDLL --define WXMAKINGDLL_PROPGRID
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define WXUSINGDLL --define WXMAKINGDLL_PROPGRID
propgriddll_advprops.o: $(srcdir)/src/propgrid/advprops.cpp $(PROPGRIDDLL_ODEP)
$(CXXC) -c -o $@ $(PROPGRIDDLL_CXXFLAGS) $(srcdir)/src/propgrid/advprops.cpp
@@ -36674,7 +36541,7 @@ propgridlib_props.o: $(srcdir)/src/propgrid/props.cpp $(PROPGRIDLIB_ODEP)
$(CXXC) -c -o $@ $(PROPGRIDLIB_CXXFLAGS) $(srcdir)/src/propgrid/props.cpp
richtextdll_version_rc.o: $(srcdir)/src/msw/version.rc $(RICHTEXTDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define WXUSINGDLL --define WXMAKINGDLL_RICHTEXT
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define WXUSINGDLL --define WXMAKINGDLL_RICHTEXT
richtextdll_richtextbuffer.o: $(srcdir)/src/richtext/richtextbuffer.cpp $(RICHTEXTDLL_ODEP)
$(CXXC) -c -o $@ $(RICHTEXTDLL_CXXFLAGS) $(srcdir)/src/richtext/richtextbuffer.cpp
@@ -36743,7 +36610,7 @@ richtextlib_xh_richtext.o: $(srcdir)/src/xrc/xh_richtext.cpp $(RICHTEXTLIB_ODEP)
$(CXXC) -c -o $@ $(RICHTEXTLIB_CXXFLAGS) $(srcdir)/src/xrc/xh_richtext.cpp
stcdll_version_rc.o: $(srcdir)/src/msw/version.rc $(STCDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --include-dir $(top_srcdir)/src/stc/scintilla/include --include-dir $(top_srcdir)/src/stc/scintilla/lexlib --include-dir $(top_srcdir)/src/stc/scintilla/src --define __WX__ --define SCI_LEXER --define NO_CXX11_REGEX --define LINK_LEXERS --define WXUSINGDLL --define WXMAKINGDLL_STC
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --include-dir $(top_srcdir)/src/stc/scintilla/include --include-dir $(top_srcdir)/src/stc/scintilla/lexlib --include-dir $(top_srcdir)/src/stc/scintilla/src --define __WX__ --define SCI_LEXER --define NO_CXX11_REGEX --define LINK_LEXERS --define WXUSINGDLL --define WXMAKINGDLL_STC
stcdll_stc.o: $(srcdir)/src/stc/stc.cpp $(STCDLL_ODEP)
$(CXXC) -c -o $@ $(STCDLL_CXXFLAGS) $(srcdir)/src/stc/stc.cpp
@@ -36770,7 +36637,7 @@ stclib_PlatWXcocoa.o: $(srcdir)/src/stc/PlatWXcocoa.mm $(STCLIB_ODEP)
$(CXXC) -c -o $@ $(STCLIB_OBJCXXFLAGS) $(srcdir)/src/stc/PlatWXcocoa.mm
gldll_version_rc.o: $(srcdir)/src/msw/version.rc $(GLDLL_ODEP)
- $(WINDRES) -i$< -o$@ $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include $(__INC_TIFF_BUILD_p_66) $(__INC_TIFF_p_66) $(__INC_JPEG_p_66) $(__INC_PNG_p_65) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) --define WXUSINGDLL --define WXMAKINGDLL_GL
+ $(WINDRES) -i$< -o$@ $(__INC_TIFF_BUILD_p_54) $(__INC_TIFF_p_54) $(__INC_JPEG_p_54) $(__INC_PNG_p_53) $(__INC_ZLIB_p_67) $(__INC_REGEX_p_65) $(__INC_EXPAT_p_65) $(__WIN32_DPI_MANIFEST_p) --define __WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) --define WXBUILDING --define WXDLLNAME=$(WXDLLNAMEPREFIXGUI)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG)$(WXDLLVERSIONTAG) $(__RCDEFDIR_p) --include-dir $(top_srcdir)/include --define WXUSINGDLL --define WXMAKINGDLL_GL
gldll_glcmn.o: $(srcdir)/src/common/glcmn.cpp $(GLDLL_ODEP)
$(CXXC) -c -o $@ $(GLDLL_CXXFLAGS) $(srcdir)/src/common/glcmn.cpp
diff --git a/README-GIT.md b/README-GIT.md
index af30263943..cb7c329c5e 100644
--- a/README-GIT.md
+++ b/README-GIT.md
@@ -5,13 +5,14 @@ Please use `--recurse-submodules` option with the initial `git clone`. If you
had already cloned the repository without this option, please run `git
submodule update --init` to also get all 3rd party libraries code.
-Before building from Git sources under Windows, you need to copy the
-file `include/wx/msw/setup0.h` to `include/wx/msw/setup.h`. This is
-necessary in order to allow having local modifications to the latter
-file without showing it as modified, as it is not under version
-control.
+If you get errors about "wxUSE_XXX must be defined" when building, it
+probably means that you need to copy the new options added to the file
+`include/wx/msw/setup0.h` to `include/wx/msw/setup.h`. If you had never
+modified the latter, it's safe to just delete it, as it will be created
+by copying `setup0.h` during the next build.
-After doing this, please proceed with the build as with any official
-release, i.e. follow the instructions in the port-specific files, e.g.
+Otherwise, building from Git checkout is not different from building
+from the sources include into the releases, so please follow the usual
+instructions in the port-specific files, such as
[wxMSW](docs/msw/install.md), [wxGTK](docs/gtk/install.md),
[wxOSX](docs/osx/install.md) and so on.
diff --git a/README.md b/README.md
index 64485c6056..a50f627077 100644
--- a/README.md
+++ b/README.md
@@ -35,7 +35,7 @@ Most popular C++ compilers are supported including but not limited to:
- g++ 3.4 or later, including MinGW/MinGW-64/TDM under Windows.
- Clang under OS X and Linux.
- Intel icc compiler.
-- Oracle (ex-Sun) aCC.
+- Oracle (ex-Sun) CC.
Licence
diff --git a/autoconf_inc.m4 b/autoconf_inc.m4
index b64f199586..6077e99d45 100644
--- a/autoconf_inc.m4
+++ b/autoconf_inc.m4
@@ -656,12 +656,6 @@ dnl ### begin block 20_COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_0[wx.
COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_0=""
fi
AC_SUBST(COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_0)
-dnl ### begin block 20_COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1[wx.bkl] ###
- COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1="#"
- if test "x$TOOLKIT" = "xGTK" -a "x$TOOLKIT_VERSION" = "x2" -a "x$USE_GUI" = "x1" -a "x$WXUNIV" = "x1" ; then
- COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1=""
- fi
- AC_SUBST(COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1)
dnl ### begin block 20_COND_TOOLKIT_GTK_TOOLKIT_VERSION_3[wx.bkl] ###
COND_TOOLKIT_GTK_TOOLKIT_VERSION_3="#"
if test "x$TOOLKIT" = "xGTK" -a "x$TOOLKIT_VERSION" = "x3" ; then
@@ -830,12 +824,6 @@ dnl ### begin block 20_COND_TOOLKIT_X11_USE_GUI_1[wx.bkl] ###
COND_TOOLKIT_X11_USE_GUI_1=""
fi
AC_SUBST(COND_TOOLKIT_X11_USE_GUI_1)
-dnl ### begin block 20_COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1[wx.bkl] ###
- COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1="#"
- if test "x$TOOLKIT" = "xX11" -a "x$USE_GUI" = "x1" -a "x$WXUNIV" = "x1" ; then
- COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1=""
- fi
- AC_SUBST(COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1)
dnl ### begin block 20_COND_UNICODE_1[../../demos/bombs/bombs.bkl,../../demos/forty/forty.bkl,../../demos/fractal/fractal.bkl,../../demos/life/life.bkl,../../demos/poem/poem.bkl,../../samples/access/access.bkl,../../samples/animate/anitest.bkl,../../samples/archive/archive.bkl,../../samples/artprov/artprov.bkl,../../samples/aui/auidemo.bkl,../../samples/calendar/calendar.bkl,../../samples/caret/caret.bkl,../../samples/clipboard/clipboard.bkl,../../samples/collpane/collpane.bkl,../../samples/combo/combo.bkl,../../samples/config/config.bkl,../../samples/console/console.bkl,../../samples/dataview/dataview.bkl,../../samples/debugrpt/debugrpt.bkl,../../samples/dialogs/dialogs.bkl,../../samples/dialup/dialup.bkl,../../samples/display/display.bkl,../../samples/dll/dll.bkl,../../samples/dnd/dnd.bkl,../../samples/docview/docview.bkl,../../samples/dragimag/dragimag.bkl,../../samples/drawing/drawing.bkl,../../samples/erase/erase.bkl,../../samples/event/event.bkl,../../samples/except/except.bkl,../../samples/exec/exec.bkl,../../samples/font/font.bkl,../../samples/fswatcher/fswatcher.bkl,../../samples/grid/grid.bkl,../../samples/help/help.bkl,../../samples/htlbox/htlbox.bkl,../../samples/html/about/about.bkl,../../samples/html/help/help.bkl,../../samples/html/helpview/helpview.bkl,../../samples/html/htmlctrl/htmlctrl.bkl,../../samples/html/printing/printing.bkl,../../samples/html/test/test.bkl,../../samples/html/virtual/virtual.bkl,../../samples/html/widget/widget.bkl,../../samples/html/zip/zip.bkl,../../samples/image/image.bkl,../../samples/internat/internat.bkl,../../samples/ipc/ipc.bkl,../../samples/joytest/joytest.bkl,../../samples/keyboard/keyboard.bkl,../../samples/layout/layout.bkl,../../samples/listctrl/listctrl.bkl,../../samples/mdi/mdi.bkl,../../samples/mediaplayer/mediaplayer.bkl,../../samples/memcheck/memcheck.bkl,../../samples/menu/menu.bkl,../../samples/minimal/minimal.bkl,../../samples/nativdlg/nativdlg.bkl,../../samples/notebook/notebook.bkl,../../samples/oleauto/oleauto.bkl,../../samples/opengl/cube/cube.bkl,../../samples/opengl/isosurf/isosurf.bkl,../../samples/opengl/penguin/penguin.bkl,../../samples/opengl/pyramid/pyramid.bkl,../../samples/ownerdrw/ownerdrw.bkl,../../samples/popup/popup.bkl,../../samples/power/power.bkl,../../samples/preferences/preferences.bkl,../../samples/printing/printing.bkl,../../samples/propgrid/propgrid.bkl,../../samples/regtest/regtest.bkl,../../samples/render/render.bkl,../../samples/ribbon/ribbon.bkl,../../samples/richtext/richtext.bkl,../../samples/sashtest/sashtest.bkl,../../samples/scroll/scroll.bkl,../../samples/secretstore/secretstore.bkl,../../samples/shaped/shaped.bkl,../../samples/sockets/sockets.bkl,../../samples/sound/sound.bkl,../../samples/splash/splash.bkl,../../samples/splitter/splitter.bkl,../../samples/statbar/statbar.bkl,../../samples/stc/stctest.bkl,../../samples/svg/svgtest.bkl,../../samples/taborder/taborder.bkl,../../samples/taskbar/taskbar.bkl,../../samples/taskbarbutton/taskbarbutton.bkl,../../samples/text/text.bkl,../../samples/thread/thread.bkl,../../samples/toolbar/toolbar.bkl,../../samples/treectrl/treectrl.bkl,../../samples/treelist/treelist.bkl,../../samples/typetest/typetest.bkl,../../samples/uiaction/uiaction.bkl,../../samples/validate/validate.bkl,../../samples/vscroll/vscroll.bkl,../../samples/webview/webview.bkl,../../samples/widgets/widgets.bkl,../../samples/wizard/wizard.bkl,../../samples/wrapsizer/wrapsizer.bkl,../../samples/xrc/xrcdemo.bkl,../../samples/xti/xti.bkl,../../tests/benchmarks/bench.bkl,../../tests/test.bkl,../../utils/emulator/src/emulator.bkl,../../utils/execmon/execmon.bkl,../../utils/helpview/src/helpview.bkl,../../utils/hhp2cached/hhp2cached.bkl,../../utils/ifacecheck/src/ifacecheck.bkl,../../utils/screenshotgen/src/screenshotgen.bkl,../../utils/wxrc/wxrc.bkl,wx.bkl] ###
COND_UNICODE_1="#"
if test "x$UNICODE" = "x1" ; then
diff --git a/build/aclocal/gtk-3.0.m4 b/build/aclocal/gtk-3.0.m4
index 4fc99064c2..983913ab3a 100644
--- a/build/aclocal/gtk-3.0.m4
+++ b/build/aclocal/gtk-3.0.m4
@@ -1,6 +1,10 @@
# Configure paths for GTK+
# Owen Taylor 1997-2001
+# Version number used by aclocal, see `info automake Serials`.
+# Increment on every change.
+#serial 1
+
dnl AM_PATH_GTK_3_0([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]])
dnl Test for GTK+, and define GTK_CFLAGS and GTK_LIBS, if gthread is specified in MODULES,
dnl pass to pkg-config
@@ -25,23 +29,15 @@ AC_ARG_ENABLE(gtktest, [ --disable-gtktest do not try to compile and run
no_gtk=""
- AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
+ PKG_PROG_PKG_CONFIG([0.16])
- if test x$PKG_CONFIG != xno ; then
- if $PKG_CONFIG --atleast-pkgconfig-version 0.7 ; then
- :
- else
- echo "*** pkg-config too old; version 0.7 or better required."
- no_gtk=yes
- PKG_CONFIG=no
- fi
- else
+ if test -z "$PKG_CONFIG"; then
no_gtk=yes
fi
AC_MSG_CHECKING(for GTK+ - version >= $min_gtk_version)
- if test x$PKG_CONFIG != xno ; then
+ if test -n "$PKG_CONFIG"; then
## don't try to run the test against uninstalled libtool libs
if $PKG_CONFIG --uninstalled $pkg_config_args; then
echo "Will use uninstalled version of GTK+ found in PKG_CONFIG_PATH"
@@ -152,7 +148,7 @@ main ()
ifelse([$2], , :, [$2])
else
AC_MSG_RESULT(no)
- if test "$PKG_CONFIG" = "no" ; then
+ if test -z "$PKG_CONFIG"; then
echo "*** A new enough version of pkg-config was not found."
echo "*** See http://pkgconfig.sourceforge.net"
else
@@ -201,7 +197,8 @@ AC_DEFUN([GTK_CHECK_BACKEND],
min_gtk_version=ifelse([$2],,3.0.0,$2)
pkg_config_args="$pkg_config_args >= $min_gtk_version"
- AC_PATH_PROG(PKG_CONFIG, [pkg-config], [AC_MSG_ERROR([No pkg-config found])])
+ PKG_PROG_PKG_CONFIG([0.16])
+ AS_IF([test -z "$PKG_CONFIG"], [AC_MSG_ERROR([No pkg-config found])])
if $PKG_CONFIG $pkg_config_args ; then
target_found=yes
diff --git a/build/bakefiles/common.bkl b/build/bakefiles/common.bkl
index 60b725d4fd..f4b76863d6 100644
--- a/build/bakefiles/common.bkl
+++ b/build/bakefiles/common.bkl
@@ -43,6 +43,8 @@
_ia64
_x64
_x64
+ _x64
+ _x64
@@ -326,6 +328,8 @@
/MACHINE:IA64
/MACHINE:X64
/MACHINE:X64
+ /MACHINE:X64
+ /MACHINE:X64
@@ -344,19 +348,60 @@
- /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/wx_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/wx_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/wx_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/wx_dpi_aware.manifest
- /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
- /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
- /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
- /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware.manifest
- /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/wx_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/wx_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/wx_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/wx_dpi_aware_pmv2.manifest
- /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
- /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
- /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
- /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+ /MANIFEST:EMBED /MANIFESTINPUT:$(TOP_SRCDIR)include/wx/msw/amd64_dpi_aware_pmv2.manifest
+
+
+
+
+
+
+ TARGET_CPU_COMPFLAG=0
+
+
@@ -379,10 +424,15 @@
$(NO_VC_CRTDBG)
$(WIN32_WINNT)
+ $(WX_CPPFLAGS)
+ $(WX_CFLAGS)
+ $(WX_CXXFLAGS)
+ $(WX_LDFLAGS)
$(WIN32_DPI_MANIFEST)
$(WIN32_DPI_LINKFLAG)
$(LINK_TARGET_CPU)
+ $(TARGET_CPU_COMPFLAG)
@@ -557,7 +607,6 @@ $(TAB)cl /EP /nologo "$(DOLLAR)(InputPath)" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
$(LIBDIRNAME)
max
- $(CXXWARNINGS)
-wcd=549
-wcd=656
@@ -727,46 +776,46 @@ $(TAB)cl /EP /nologo "$(DOLLAR)(InputPath)" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
$(WXTOPDIR)src/msw/version.rc
-
+
+ wxexpat
+ wxzlib
+ wxregex
+
+
+
wxtiff
wxjpeg
wxpng
wxscintilla
-
- wxexpat
- wxzlib
- wxregex
+
+ $(INC_ZLIB)
+ $(INC_REGEX)
+ $(INC_EXPAT)
-
+
$(INC_TIFF_BUILD)
$(INC_TIFF)
$(INC_JPEG)
$(INC_PNG)
-
- $(INC_ZLIB)
- $(INC_REGEX)
- $(INC_EXPAT)
-
-
+ template="wx_3rdparty_includes_gui,wx_lib_b,msvc_setup_h"/>
+ template="wx_3rdparty_includes_base,wx_lib_b,msvc_setup_h">
wxUSE_GUI=0
wxUSE_GUI=0
@@ -798,7 +847,7 @@ $(TAB)cl /EP /nologo "$(DOLLAR)(InputPath)" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
-
+
$(id)$(WX_U_D_SUFFIX)$(PLUGIN_VERSION)$(WXCOMPILER)
diff --git a/build/bakefiles/config.bkl b/build/bakefiles/config.bkl
index fae136f0a5..d14d5dd2d7 100644
--- a/build/bakefiles/config.bkl
+++ b/build/bakefiles/config.bkl
@@ -132,6 +132,18 @@ Accepted values: IA64, X64, ARM64
(AMD64 accepted as synonym for X64 but should not be used any more).
+
+
@@ -400,7 +412,10 @@ compiled .lib files and setup.h under the lib/ toplevel directory.
-
+
+
+
+
@@ -533,7 +548,7 @@ For example, add "-F pe-i386" here if using 64 bit windres for 32 bit build.
1
1
1
- 2
+ 0
1
0
$(DEBUG_INFO_DEFAULT)
diff --git a/build/bakefiles/files.bkl b/build/bakefiles/files.bkl
index c0f237f83f..1890f88028 100644
--- a/build/bakefiles/files.bkl
+++ b/build/bakefiles/files.bkl
@@ -353,7 +353,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
wx/generic/fontpickerg.h
wx/generic/caret.h
wx/qt/calctrl.h
- wx/generic/animate.h
wx/qt/dvrenderer.h
wx/qt/taskbar.h
wx/generic/activityindicator.h
@@ -375,7 +374,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/generic/imaglist.cpp
src/generic/prntdlgg.cpp
src/generic/textmeasure.cpp
- src/generic/animateg.cpp
src/generic/activityindicator.cpp
src/qt/accel.cpp
src/qt/app.cpp
@@ -934,6 +932,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/common/windowid.cpp
src/common/wrapsizer.cpp
src/common/xpmdecod.cpp
+ src/generic/animateg.cpp
src/generic/busyinfo.cpp
src/generic/buttonbar.cpp
src/generic/choicdgg.cpp
@@ -1045,6 +1044,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
wx/gbsizer.h
wx/gdicmn.h
wx/generic/accel.h
+ wx/generic/animate.h
wx/generic/buttonbar.h
wx/generic/choicdgg.h
wx/generic/combo.h
@@ -1712,7 +1712,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/gtk1/taskbar.cpp
src/generic/activityindicator.cpp
src/gtk1/eggtrayicon.c
- src/generic/animateg.cpp
wx/generic/clrpickerg.h
@@ -1760,7 +1759,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
wx/gtk1/textctrl.h
wx/gtk1/tglbtn.h
wx/gtk1/treectrl.h
- wx/generic/animate.h
wx/generic/activityindicator.h
@@ -1857,7 +1855,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/generic/statline.cpp
src/generic/statusbr.cpp
src/generic/tabg.cpp
- src/generic/animateg.cpp
src/generic/activityindicator.cpp
@@ -1929,8 +1926,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
wx/motif/toolbar.h
wx/motif/toplevel.h
wx/motif/window.h
- wx/generic/animate.h
- wx/generic/animateanimate.h
@@ -2079,6 +2074,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/msw/rt/notifmsgrt.cpp
src/msw/ole/uuid.cpp
src/msw/evtloop.cpp
+ src/msw/ole/access.cpp
wx/msw/nonownedwnd.h
@@ -2131,7 +2127,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/msw/nativdlg.cpp
src/msw/nativewin.cpp
src/msw/notebook.cpp
- src/msw/ole/access.cpp
src/msw/ownerdrw.cpp
src/msw/progdlg.cpp
src/msw/radiobox.cpp
@@ -2154,7 +2149,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/msw/treectrl.cpp
src/msw/systhemectrl.cpp
src/msw/customdraw.cpp
- src/generic/animateg.cpp
src/msw/commandlinkbutton.cpp
src/msw/bmpcbox.cpp
src/msw/hyperlink.cpp
@@ -2264,7 +2258,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
wx/msw/rt/utils.h
wx/msw/hyperlink.h
wx/msw/bmpcbox.h
- wx/generic/animate.h
wx/msw/commandlinkbutton.h
wx/msw/datetimectrl.h
wx/msw/timectrl.h
@@ -2328,7 +2321,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/common/fontmgrcmn.cpp
- src/generic/animateg.cpp
src/generic/caret.cpp
src/generic/colour.cpp
src/generic/icon.cpp
@@ -2359,7 +2351,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/dfb/wrapdfb.cpp
- wx/generic/animate.h
wx/generic/caret.h
wx/generic/colour.h
wx/generic/icon.h
@@ -2642,7 +2633,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/osx/cocoa/settings.mm
src/osx/cocoa/overlay.mm
src/osx/cocoa/aboutdlg.mm
- src/generic/animateg.cpp
src/osx/dataview_osx.cpp
src/osx/cocoa/notifmsg.mm
src/osx/cocoa/taskbar.mm
@@ -2667,7 +2657,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
wx/generic/region.h
wx/osx/cocoa/stdpaths.h
wx/osx/sound.h
- wx/generic/animate.h
wx/osx/dvrenderer.h
wx/osx/cocoa/dataview.h
wx/osx/dvrenderers.h
@@ -2707,7 +2696,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/osx/iphone/settings.mm
src/osx/sound_osx.cpp
src/osx/core/sound.cpp
- src/generic/animateg.cpp
src/osx/iphone/statbmp.mm
@@ -2716,7 +2704,6 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
wx/osx/iphone/evtloop.h
wx/osx/iphone/private.h
wx/generic/region.h
- wx/generic/animate.h
wx/osx/sound.h
@@ -2732,35 +2719,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/univ/themes/win32.cpp
-
-
-
- src/generic/animateg.cpp
-
-
- src/generic/animateg.cpp
-
-
- src/generic/animateg.cpp
-
-
-
-
- wx/generic/animate.h
-
-
- wx/generic/animate.h
-
-
- wx/generic/animate.h
-
-
-
- $(UNIV_PLATFORM_SRC)
src/generic/accel.cpp
src/generic/clrpickerg.cpp
src/generic/collpaneg.cpp
@@ -2814,9 +2773,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
src/generic/activityindicator.cpp
- $(UNIV_PLATFORM_HDR)
wx/generic/accel.h
- wx/generic/animate.h
wx/generic/clrpickerg.h
wx/generic/collpaneg.h
wx/generic/ctrlsub.h
diff --git a/build/bakefiles/wx.bkl b/build/bakefiles/wx.bkl
index 9c7b419b40..fe5f922871 100644
--- a/build/bakefiles/wx.bkl
+++ b/build/bakefiles/wx.bkl
@@ -205,7 +205,7 @@
$(SRCDIR)/include/wx/msw/genrcdefs.h
- $(DOLLAR)(CPP) "$(nativePaths(SRCDIR))\include\wx\msw\genrcdefs.h" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
+ $(DOLLAR)(CPP) $(DOLLAR)(CPPFLAGS) "$(nativePaths(SRCDIR))\include\wx\msw\genrcdefs.h" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
diff --git a/build/cmake/demos/CMakeLists.txt b/build/cmake/demos/CMakeLists.txt
index 7339631c14..37d296f977 100644
--- a/build/cmake/demos/CMakeLists.txt
+++ b/build/cmake/demos/CMakeLists.txt
@@ -18,7 +18,28 @@ function(wx_add_demo name)
if(WIN32)
list(APPEND src_files ${wxSOURCE_DIR}/demos/${name}/${DEMO_NAME}.rc)
endif()
+
+ if (WXMSW AND DEFINED wxUSE_DPI_AWARE_MANIFEST)
+ set(wxDPI_MANIFEST_PRFIX "wx")
+ if (wxARCH_SUFFIX)
+ set(wxDPI_MANIFEST_PRFIX "amd64")
+ endif()
+ set(wxUSE_DPI_AWARE_MANIFEST_VALUE 0)
+ if (${wxUSE_DPI_AWARE_MANIFEST} MATCHES "system")
+ set(wxUSE_DPI_AWARE_MANIFEST_VALUE 1)
+ list(APPEND src_files "${wxSOURCE_DIR}/include/wx/msw/${wxDPI_MANIFEST_PRFIX}_dpi_aware.manifest")
+ elseif(${wxUSE_DPI_AWARE_MANIFEST} MATCHES "per-monitor")
+ set(wxUSE_DPI_AWARE_MANIFEST_VALUE 2)
+ list(APPEND src_files "${wxSOURCE_DIR}/include/wx/msw/${wxDPI_MANIFEST_PRFIX}_dpi_aware_pmv2.manifest")
+ endif()
+ endif()
+
add_executable(${DEMO_NAME} WIN32 MACOSX_BUNDLE ${src_files})
+
+ if (DEFINED wxUSE_DPI_AWARE_MANIFEST_VALUE)
+ target_compile_definitions(${DEMO_NAME} PRIVATE wxUSE_DPI_AWARE_MANIFEST=${wxUSE_DPI_AWARE_MANIFEST_VALUE})
+ endif()
+
if(DEMO_DATA)
# TODO: unify with data handling for samples
# TODO: handle data files differently for OS X bundles
diff --git a/build/cmake/files.cmake b/build/cmake/files.cmake
index cb8d420c1e..9d9d31b4c5 100644
--- a/build/cmake/files.cmake
+++ b/build/cmake/files.cmake
@@ -269,7 +269,6 @@ set(QT_HDR
wx/qt/window.h
wx/qt/dvrenderer.h
wx/qt/dvrenderers.h
- wx/generic/animate.h
wx/qt/calctrl.h
wx/qt/taskbar.h
wx/qt/dataview.h
@@ -369,7 +368,6 @@ set(QT_SRC
src/qt/dvrenderer.cpp
src/generic/activityindicator.cpp
src/common/taskbarcmn.cpp
- src/generic/animateg.cpp
src/qt/calctrl.cpp
src/qt/dataview.cpp
src/qt/taskbar.cpp
@@ -911,6 +909,7 @@ set(GUI_CMN_SRC
src/generic/editlbox.cpp
src/generic/datavgen.cpp
src/generic/rowheightcache.cpp
+ src/generic/animateg.cpp
)
set(GUI_CMN_HDR
@@ -1199,6 +1198,7 @@ set(GUI_CMN_HDR
wx/generic/splash.h
wx/generic/calctrlg.h
wx/generic/sashwin.h
+ wx/generic/animate.h
)
set(UNIX_SRC
@@ -1596,7 +1596,6 @@ set(GTK1_SRC
src/gtk1/toolbar.cpp
src/gtk1/textctrl.cpp
src/gtk1/tglbtn.cpp
- src/generic/animateg.cpp
src/gtk1/eggtrayicon.c
src/generic/activityindicator.cpp
src/gtk1/taskbar.cpp
@@ -1649,7 +1648,6 @@ set(GTK1_HDR
wx/gtk1/tglbtn.h
wx/gtk1/treectrl.h
wx/generic/activityindicator.h
- wx/generic/animate.h
)
set(MOTIF_LOWLEVEL_SRC
@@ -1742,7 +1740,6 @@ set(MOTIF_SRC
src/generic/statline.cpp
src/generic/statusbr.cpp
src/generic/tabg.cpp
- src/generic/animateg.cpp
src/generic/activityindicator.cpp
)
@@ -1815,8 +1812,6 @@ set(MOTIF_HDR
wx/motif/toolbar.h
wx/motif/toplevel.h
wx/motif/window.h
- wx/generic/animateanimate.h
- wx/generic/animate.h
)
set(X11_LOWLEVEL_SRC
@@ -1954,6 +1949,7 @@ set(MSW_LOWLEVEL_SRC
src/msw/taskbar.cpp
src/msw/richtooltip.cpp
src/msw/evtloop.cpp
+ src/msw/ole/access.cpp
)
set(MSW_LOWLEVEL_HDR
@@ -2020,7 +2016,6 @@ set(MSW_SRC
src/msw/nativdlg.cpp
src/msw/nativewin.cpp
src/msw/notebook.cpp
- src/msw/ole/access.cpp
src/msw/ownerdrw.cpp
src/msw/progdlg.cpp
src/msw/radiobox.cpp
@@ -2044,7 +2039,6 @@ set(MSW_SRC
src/msw/treectrl.cpp
src/msw/bmpcbox.cpp
src/msw/datectrl.cpp
- src/generic/animateg.cpp
src/msw/calctrl.cpp
src/msw/datecontrols.cpp
src/msw/timectrl.cpp
@@ -2158,7 +2152,6 @@ set(MSW_HDR
wx/msw/hyperlink.h
wx/msw/datetimectrl.h
wx/msw/timectrl.h
- wx/generic/animate.h
wx/generic/activityindicator.h
)
@@ -2240,7 +2233,6 @@ set(DFB_LOWLEVEL_SRC
src/dfb/utils.cpp
src/dfb/window.cpp
src/dfb/wrapdfb.cpp
- src/generic/animateg.cpp
)
set(DFB_LOWLEVEL_HDR
@@ -2269,7 +2261,6 @@ set(DFB_LOWLEVEL_HDR
wx/dfb/toplevel.h
wx/dfb/window.h
wx/dfb/wrapdfb.h
- wx/generic/animate.h
)
set(OSX_LOWLEVEL_SRC
@@ -2524,7 +2515,6 @@ set(OSX_COCOA_SRC
src/osx/cocoa/dataview.mm
src/osx/carbon/sound.cpp
src/osx/cocoa/taskbar.mm
- src/generic/animateg.cpp
src/common/taskbarcmn.cpp
src/osx/dataview_osx.cpp
src/osx/cocoa/notifmsg.mm
@@ -2551,7 +2541,6 @@ set(OSX_COCOA_HDR
wx/osx/datetimectrl.h
wx/osx/taskbarosx.h
wx/osx/dvrenderers.h
- wx/generic/animate.h
wx/osx/core/joystick.h
)
@@ -2576,7 +2565,6 @@ set(OSX_IPHONE_SRC
src/osx/iphone/utils.mm
src/osx/iphone/window.mm
src/osx/sound_osx.cpp
- src/generic/animateg.cpp
src/osx/core/sound.cpp
src/osx/iphone/statbmp.mm
)
@@ -2586,7 +2574,6 @@ set(OSX_IPHONE_HDR
wx/osx/iphone/evtloop.h
wx/osx/iphone/private.h
wx/generic/region.h
- wx/generic/animate.h
wx/osx/sound.h
)
@@ -2655,7 +2642,6 @@ set(UNIV_SRC
set(UNIV_HDR
${UNIV_PLATFORM_HDR}
wx/generic/accel.h
- wx/generic/animate.h
wx/generic/clrpickerg.h
wx/generic/collpaneg.h
wx/generic/ctrlsub.h
diff --git a/build/cmake/functions.cmake b/build/cmake/functions.cmake
index d25937dfca..26268d4db0 100644
--- a/build/cmake/functions.cmake
+++ b/build/cmake/functions.cmake
@@ -77,20 +77,12 @@ endmacro()
function(wx_set_common_target_properties target_name)
cmake_parse_arguments(wxCOMMON_TARGET_PROPS "DEFAULT_WARNINGS" "" "" ${ARGN})
- if(DEFINED wxBUILD_CXX_STANDARD AND NOT wxBUILD_CXX_STANDARD STREQUAL COMPILER_DEFAULT)
- # TODO: implement for older CMake versions ?
- set_target_properties(${target_name} PROPERTIES CXX_STANDARD ${wxBUILD_CXX_STANDARD})
- if(
- APPLE AND
- CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 10.9 AND
- (wxBUILD_CXX_STANDARD EQUAL 11 OR wxBUILD_CXX_STANDARD EQUAL 14)
- )
- if(CMAKE_GENERATOR STREQUAL "Xcode")
- set_target_properties(${target_name} PROPERTIES XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY libc++)
- else()
- target_compile_options(${target_name} PUBLIC "-stdlib=libc++")
- target_link_libraries(${target_name} PRIVATE "-stdlib=libc++")
- endif()
+ if(APPLE AND CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 10.9 AND wxHAS_CXX11)
+ if(CMAKE_GENERATOR STREQUAL "Xcode")
+ set_target_properties(${target_name} PROPERTIES XCODE_ATTRIBUTE_CLANG_CXX_LIBRARY libc++)
+ else()
+ target_compile_options(${target_name} PUBLIC "-stdlib=libc++")
+ target_link_libraries(${target_name} PRIVATE "-stdlib=libc++")
endif()
endif()
set_target_properties(${target_name} PROPERTIES
@@ -122,13 +114,13 @@ endfunction()
# Set common properties on wx library target
function(wx_set_target_properties target_name is_base)
# Set library name according to:
- # docs/contrib/about-platform-toolkit-and-library-names.md
+ # docs/contributing/about-platform-toolkit-and-library-names.md
if(is_base)
set(lib_toolkit base)
else()
set(lib_toolkit ${wxBUILD_TOOLKIT}${wxBUILD_WIDGETSET})
endif()
- if(WIN32)
+ if(MSVC)
set(lib_version ${wxMAJOR_VERSION}${wxMINOR_VERSION})
else()
set(lib_version ${wxMAJOR_VERSION}.${wxMINOR_VERSION})
@@ -144,47 +136,58 @@ function(wx_set_target_properties target_name is_base)
else()
set(lib_suffix)
endif()
+ set(lib_flavour "")
+ if(wxBUILD_FLAVOUR)
+ set(lib_flavour "_${wxBUILD_FLAVOUR}")
+ string(REPLACE "-" "_" lib_flavour ${lib_flavour})
+ endif()
+
if(WIN32)
+ if(MSVC)
+ # match visual studio name
+ set_target_properties(${target_name}
+ PROPERTIES
+ OUTPUT_NAME "wx${lib_toolkit}${lib_version}${lib_unicode}${lib_flavour}${lib_suffix}"
+ OUTPUT_NAME_DEBUG "wx${lib_toolkit}${lib_version}${lib_unicode}d${lib_flavour}${lib_suffix}"
+ PREFIX ""
+ )
+ else()
+ # match configure name (mingw, cygwin)
+ set_target_properties(${target_name}
+ PROPERTIES
+ OUTPUT_NAME "wx_${lib_toolkit}${lib_unicode}${lib_flavour}${lib_suffix}-${lib_version}"
+ OUTPUT_NAME_DEBUG "wx_${lib_toolkit}${lib_unicode}d${lib_flavour}${lib_suffix}-${lib_version}"
+ PREFIX "lib"
+ )
+ endif()
+
if(wxBUILD_SHARED)
# Add compiler type and or vendor
- set(dll_suffix "_${wxCOMPILER_PREFIX}${wxARCH_SUFFIX}")
+ set(dll_suffix "${lib_flavour}${lib_suffix}_${wxCOMPILER_PREFIX}")
if(wxBUILD_VENDOR)
wx_string_append(dll_suffix "_${wxBUILD_VENDOR}")
endif()
- set(dll_version ${lib_version})
+ set(dll_version ${wxMAJOR_VERSION}${wxMINOR_VERSION})
if(wxVERSION_IS_DEV)
wx_string_append(dll_version ${wxRELEASE_NUMBER})
endif()
set_target_properties(${target_name}
PROPERTIES
- RUNTIME_OUTPUT_NAME wx${lib_toolkit}${dll_version}${lib_unicode}${lib_suffix}${dll_suffix}
- RUNTIME_OUTPUT_NAME_DEBUG wx${lib_toolkit}${dll_version}${lib_unicode}d${lib_suffix}${dll_suffix})
- if(MINGW)
- # Modify MinGW output to match other build systems
- set_target_properties(${target_name}
- PROPERTIES
- PREFIX ""
- IMPORT_SUFFIX .a
- )
- endif()
+ RUNTIME_OUTPUT_NAME "wx${lib_toolkit}${dll_version}${lib_unicode}${dll_suffix}"
+ RUNTIME_OUTPUT_NAME_DEBUG "wx${lib_toolkit}${dll_version}${lib_unicode}d${dll_suffix}"
+ PREFIX ""
+ )
target_compile_definitions(${target_name} PRIVATE
- "-DWXDLLNAME=wx${lib_toolkit}${dll_version}${lib_unicode}$<$:d>${lib_suffix}${dll_suffix}")
+ "-DWXDLLNAME=wx${lib_toolkit}${dll_version}${lib_unicode}$<$:d>${dll_suffix}")
endif()
-
- set_target_properties(${target_name}
- PROPERTIES
- OUTPUT_NAME wx${lib_toolkit}${lib_version}${lib_unicode}${lib_suffix}
- OUTPUT_NAME_DEBUG wx${lib_toolkit}${lib_version}${lib_unicode}d${lib_suffix}
- PREFIX ""
- )
else()
set_target_properties(${target_name}
PROPERTIES
- OUTPUT_NAME wx_${lib_toolkit}${lib_unicode}${lib_suffix}-${lib_version}
+ OUTPUT_NAME wx_${lib_toolkit}${lib_unicode}${lib_flavour}${lib_suffix}-${lib_version}
# NOTE: wx-config can not be used to connect the libraries with the debug suffix.
- #OUTPUT_NAME_DEBUG wx_${lib_toolkit}${lib_unicode}d${lib_suffix}-${lib_version}
- OUTPUT_NAME_DEBUG wx_${lib_toolkit}${lib_unicode}${lib_suffix}-${lib_version}
+ #OUTPUT_NAME_DEBUG wx_${lib_toolkit}${lib_unicode}d${lib_flavour}${lib_suffix}-${lib_version}
+ OUTPUT_NAME_DEBUG wx_${lib_toolkit}${lib_unicode}${lib_flavour}${lib_suffix}-${lib_version}
)
endif()
if(CYGWIN)
diff --git a/build/cmake/init.cmake b/build/cmake/init.cmake
index f57863deb2..6709c371b8 100644
--- a/build/cmake/init.cmake
+++ b/build/cmake/init.cmake
@@ -8,6 +8,15 @@
# Licence: wxWindows licence
#############################################################################
+if(DEFINED wxBUILD_CXX_STANDARD AND NOT wxBUILD_CXX_STANDARD STREQUAL COMPILER_DEFAULT)
+ set(CMAKE_CXX_STANDARD ${wxBUILD_CXX_STANDARD})
+endif()
+if(NOT CMAKE_CXX_STANDARD EQUAL 98)
+ set(wxHAS_CXX11 TRUE)
+else()
+ set(wxHAS_CXX11 FALSE)
+endif()
+
if(MSVC)
# Determine MSVC runtime library flag
set(MSVC_LIB_USE "/MD")
@@ -118,6 +127,11 @@ if(NOT wxBUILD_SHARED)
wx_string_append(wxBUILD_FILE_ID "-static")
endif()
wx_string_append(wxBUILD_FILE_ID "-${wxMAJOR_VERSION}.${wxMINOR_VERSION}")
+if(wxBUILD_FLAVOUR)
+ set(lib_flavour ${wxBUILD_FLAVOUR})
+ string(REPLACE "-" "_" lib_flavour ${lib_flavour})
+ wx_string_append(wxBUILD_FILE_ID "-${lib_flavour}")
+endif()
set(wxARCH_SUFFIX)
@@ -140,19 +154,15 @@ else()
set(wxCOMPILER_PREFIX)
endif()
-if(MSVC OR MINGW)
+if(MSVC)
if(wxBUILD_SHARED)
set(lib_suffix "dll")
else()
set(lib_suffix "lib")
endif()
- if(MSVC)
- # Include generator expression to suppress default Debug/Release pair
- set(wxPLATFORM_LIB_DIR "$<1:/>${wxCOMPILER_PREFIX}${wxARCH_SUFFIX}_${lib_suffix}")
- else()
- set(wxPLATFORM_LIB_DIR "/${wxCOMPILER_PREFIX}${wxARCH_SUFFIX}_${lib_suffix}")
- endif()
+ # Include generator expression to suppress default Debug/Release pair
+ set(wxPLATFORM_LIB_DIR "$<1:/>${wxCOMPILER_PREFIX}${wxARCH_SUFFIX}_${lib_suffix}")
else()
set(wxPLATFORM_LIB_DIR)
endif()
@@ -164,7 +174,7 @@ if(wxBUILD_CUSTOM_SETUP_HEADER_PATH)
set(wxSETUP_HEADER_PATH ${wxBUILD_CUSTOM_SETUP_HEADER_PATH})
else()
# Set path where setup.h will be created
- if(MSVC OR MINGW)
+ if(MSVC)
if(wxUSE_UNICODE)
set(lib_unicode u)
else()
diff --git a/build/cmake/install.cmake b/build/cmake/install.cmake
index 5e30a933f2..968dff859e 100644
--- a/build/cmake/install.cmake
+++ b/build/cmake/install.cmake
@@ -12,27 +12,25 @@ if(NOT wxBUILD_INSTALL)
endif()
install(CODE "message(STATUS \"Installing: Headers...\")")
-if(UNIX)
- wx_install(
- DIRECTORY "${wxSOURCE_DIR}/include/wx"
- DESTINATION "include/wx-${wxMAJOR_VERSION}.${wxMINOR_VERSION}")
-else()
+if(MSVC)
wx_install(
DIRECTORY "${wxSOURCE_DIR}/include/wx"
DESTINATION "include")
- if(MSVC)
- wx_install(
- DIRECTORY "${wxSOURCE_DIR}/include/msvc"
- DESTINATION "include")
- endif()
+ wx_install(
+ DIRECTORY "${wxSOURCE_DIR}/include/msvc"
+ DESTINATION "include")
+else()
+ wx_install(
+ DIRECTORY "${wxSOURCE_DIR}/include/wx"
+ DESTINATION "include/wx-${wxMAJOR_VERSION}.${wxMINOR_VERSION}")
endif()
# setup header and wx-config
-if(MSVC OR MINGW)
+if(MSVC)
wx_install(
DIRECTORY "${wxSETUP_HEADER_PATH}"
DESTINATION "lib${wxPLATFORM_LIB_DIR}")
-elseif(UNIX)
+else()
wx_install(
DIRECTORY "${wxSETUP_HEADER_PATH}"
DESTINATION "lib/wx/include")
diff --git a/build/cmake/main.cmake b/build/cmake/main.cmake
index ca761d8464..c038bbb387 100644
--- a/build/cmake/main.cmake
+++ b/build/cmake/main.cmake
@@ -37,7 +37,7 @@ if(NOT wxBUILD_CUSTOM_SETUP_HEADER_PATH)
include(build/cmake/setup.cmake)
endif()
-if(UNIX)
+if(NOT MSVC)
# Write wx-config
include(build/cmake/config.cmake)
endif()
diff --git a/build/cmake/options.cmake b/build/cmake/options.cmake
index 1c0cfb8c82..bb5a205015 100644
--- a/build/cmake/options.cmake
+++ b/build/cmake/options.cmake
@@ -36,28 +36,34 @@ endif()
if(MSVC)
wx_option(wxBUILD_MSVC_MULTIPROC "Enable multi-processor compilation for MSVC")
-else()
- # Other compilers support setting the C++ standard, present it an option to the user
+endif()
+
+if(NOT MSVC OR MSVC_VERSION GREATER 1800)
+ # support setting the C++ standard, present it an option to the user
if(DEFINED CMAKE_CXX_STANDARD)
set(wxCXX_STANDARD_DEFAULT ${CMAKE_CXX_STANDARD})
else()
set(wxCXX_STANDARD_DEFAULT COMPILER_DEFAULT)
endif()
wx_option(wxBUILD_CXX_STANDARD "C++ standard used to build wxWidgets targets"
- ${wxCXX_STANDARD_DEFAULT} STRINGS COMPILER_DEFAULT 98 11 14 17)
+ ${wxCXX_STANDARD_DEFAULT} STRINGS COMPILER_DEFAULT 98 11 14 17 20)
endif()
if(WIN32)
set(wxBUILD_VENDOR "custom" CACHE STRING "Short string identifying your company (used in DLL name)")
endif()
+set(wxBUILD_FLAVOUR "" CACHE STRING "Specify a name to identify the build")
+mark_as_advanced(wxBUILD_FLAVOUR)
wx_option(wxBUILD_OPTIMISE "use speed-optimised C/C++ compiler flags for release build" OFF)
+mark_as_advanced(wxBUILD_OPTIMISE)
if(MSVC)
set(wxBUILD_STRIPPED_RELEASE_DEFAULT OFF)
else()
set(wxBUILD_STRIPPED_RELEASE_DEFAULT ON)
endif()
wx_option(wxBUILD_STRIPPED_RELEASE "remove debug symbols in release build" ${wxBUILD_STRIPPED_RELEASE_DEFAULT})
+mark_as_advanced(wxBUILD_STRIPPED_RELEASE)
wx_option(wxUSE_NO_RTTI "disable RTTI support" OFF)
# STL options
diff --git a/build/cmake/samples/CMakeLists.txt b/build/cmake/samples/CMakeLists.txt
index bb0df2e8d5..7b3a9dead2 100644
--- a/build/cmake/samples/CMakeLists.txt
+++ b/build/cmake/samples/CMakeLists.txt
@@ -213,7 +213,7 @@ wx_list_add_prefix(WIDGETS_RC_FILES icons/
stattext.xpm text.xpm timepick.xpm toggle.xpm
)
wx_add_sample(widgets IMPORTANT ${SAMPLE_WIDGETS_SRC}
- DATA ${WIDGETS_RC_FILES} textctrl.cpp
+ DATA ${WIDGETS_RC_FILES} textctrl.cpp ../image/toucan.png
)
wx_add_sample(wizard DEPENDS wxUSE_WIZARDDLG)
wx_add_sample(wrapsizer)
diff --git a/build/cmake/setup.cmake b/build/cmake/setup.cmake
index 35ba62b64b..deb456924b 100644
--- a/build/cmake/setup.cmake
+++ b/build/cmake/setup.cmake
@@ -23,11 +23,7 @@ include(CheckTypeSize)
include(CMakePushCheckState)
include(TestBigEndian)
-if(
- APPLE AND
- CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 10.9 AND
- (CMAKE_CXX_STANDARD EQUAL 11 OR CMAKE_CXX_STANDARD EQUAL 14)
- )
+if(APPLE AND CMAKE_OSX_DEPLOYMENT_TARGET VERSION_LESS 10.9 AND wxHAS_CXX11)
set(CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS} "-stdlib=libc++")
endif()
@@ -147,7 +143,7 @@ wx_check_c_source_compiles(
stdio.h
)
#TODO: wxNO_VARIADIC_MACROS
-if(wxUSE_STL)
+if(wxUSE_STL AND NOT wxHAS_CXX11)
wx_check_cxx_source_compiles("
std::vector moo;
std::list foo;
@@ -172,6 +168,12 @@ if(wxUSE_STL)
HAVE_STD_STRING_COMPARE
string
)
+
+ wx_check_cxx_source_compiles(
+ "std::wstring s;"
+ HAVE_STD_WSTRING
+ string
+ )
endif()
# Check for availability of GCC's atomic operations builtins.
@@ -588,13 +590,6 @@ check_include_file(w32api.h HAVE_W32API_H)
check_include_file(wchar.h HAVE_WCHAR_H)
check_include_file(wcstr.h HAVE_WCSTR_H)
-
-wx_check_cxx_source_compiles(
- "std::wstring s;"
- HAVE_STD_WSTRING
- string
- )
-
if(wxUSE_DATETIME)
# check for timezone variable
# doesn't exist under Darwin / Mac OS X which uses tm_gmtoff instead
diff --git a/build/cmake/utils/CMakeLists.txt b/build/cmake/utils/CMakeLists.txt
index 21acfa3dfe..a47d615e12 100644
--- a/build/cmake/utils/CMakeLists.txt
+++ b/build/cmake/utils/CMakeLists.txt
@@ -21,17 +21,17 @@ if(wxUSE_XRC)
set_target_properties(wxrc PROPERTIES FOLDER "Utilities")
wx_install(TARGETS wxrc RUNTIME DESTINATION "bin")
- if(UNIX)
+ if(NOT MSVC)
install(CODE "execute_process( \
COMMAND ${CMAKE_COMMAND} -E rename \
- ${CMAKE_INSTALL_PREFIX}/bin/wxrc \
- ${CMAKE_INSTALL_PREFIX}/bin/wxrc-${wxMAJOR_VERSION}.${wxMINOR_VERSION} \
+ ${CMAKE_INSTALL_PREFIX}/bin/wxrc${CMAKE_EXECUTABLE_SUFFIX} \
+ ${CMAKE_INSTALL_PREFIX}/bin/wxrc-${wxMAJOR_VERSION}.${wxMINOR_VERSION}${CMAKE_EXECUTABLE_SUFFIX} \
)"
)
install(CODE "execute_process( \
COMMAND ${CMAKE_COMMAND} -E create_symlink \
- ${CMAKE_INSTALL_PREFIX}/bin/wxrc-${wxMAJOR_VERSION}.${wxMINOR_VERSION} \
- ${CMAKE_INSTALL_PREFIX}/bin/wxrc \
+ ${CMAKE_INSTALL_PREFIX}/bin/wxrc-${wxMAJOR_VERSION}.${wxMINOR_VERSION}${CMAKE_EXECUTABLE_SUFFIX} \
+ ${CMAKE_INSTALL_PREFIX}/bin/wxrc${CMAKE_EXECUTABLE_SUFFIX} \
)"
)
endif()
diff --git a/build/files b/build/files
index 6799e46bd0..199228bb53 100644
--- a/build/files
+++ b/build/files
@@ -213,7 +213,6 @@ QT_WIN32_HDR=
QT_HDR =
$(QT_PLATFORM_HDR)
wx/generic/activityindicator.h
- wx/generic/animate.h
wx/generic/caret.h
wx/generic/clrpickerg.h
wx/generic/collpaneg.h
@@ -303,7 +302,6 @@ QT_SRC=
$(QT_PLATFORM_SRC)
src/common/taskbarcmn.cpp
src/generic/activityindicator.cpp
- src/generic/animateg.cpp
src/generic/caret.cpp
src/generic/clrpickerg.cpp
src/generic/collpaneg.cpp
@@ -860,6 +858,7 @@ GUI_CMN_SRC =
src/common/wrapsizer.cpp
src/common/xpmdecod.cpp
src/generic/aboutdlgg.cpp
+ src/generic/animateg.cpp
src/generic/bannerwindow.cpp
src/generic/bmpcboxg.cpp
src/generic/busyinfo.cpp
@@ -1017,6 +1016,7 @@ GUI_CMN_HDR =
wx/gdicmn.h
wx/gdiobj.h
wx/generic/aboutdlgg.h
+ wx/generic/animate.h
wx/generic/accel.h
wx/generic/bmpcbox.h
wx/generic/busyinfo.h
@@ -1554,7 +1554,6 @@ GTK1_SRC =
# Generic implementations used by wxGTK1:
src/generic/accel.cpp
src/generic/activityindicator.cpp
- src/generic/animateg.cpp
src/generic/clrpickerg.cpp
src/generic/collpaneg.cpp
src/generic/colrdlgg.cpp
@@ -1604,7 +1603,6 @@ GTK1_SRC =
GTK1_HDR =
wx/generic/activityindicator.h
- wx/generic/animate.h
wx/generic/clrpickerg.h
wx/generic/collpaneg.h
wx/generic/colrdlgg.h
@@ -1726,7 +1724,6 @@ MOTIF_SRC =
src/motif/xmcombo/xmcombo.c
# Generic files used by wxMotif:
src/generic/activityindicator.cpp
- src/generic/animateg.cpp
src/generic/clrpickerg.cpp
src/generic/collpaneg.cpp
src/generic/colrdlgg.cpp
@@ -1744,8 +1741,6 @@ MOTIF_SRC =
src/generic/tabg.cpp
MOTIF_HDR =
- wx/generic/animateanimate.h
- wx/generic/animate.h
wx/generic/clrpickerg.h
wx/generic/collpaneg.h
wx/generic/colrdlgg.h
@@ -1924,6 +1919,7 @@ MSW_LOWLEVEL_SRC =
src/msw/minifram.cpp
src/msw/nonownedwnd.cpp
src/msw/notifmsg.cpp
+ src/msw/ole/access.cpp
src/msw/ole/activex.cpp
src/msw/ole/automtn.cpp
src/msw/ole/comimpl.cpp
@@ -1970,7 +1966,6 @@ MSW_LOWLEVEL_HDR =
MSW_SRC =
src/generic/activityindicator.cpp
- src/generic/animateg.cpp
src/generic/clrpickerg.cpp
src/generic/collpaneg.cpp
src/generic/filepickerg.cpp
@@ -2015,7 +2010,6 @@ MSW_SRC =
src/msw/nativdlg.cpp
src/msw/nativewin.cpp
src/msw/notebook.cpp
- src/msw/ole/access.cpp
src/msw/ownerdrw.cpp
src/msw/progdlg.cpp
src/msw/radiobox.cpp
@@ -2041,7 +2035,6 @@ MSW_SRC =
MSW_HDR =
wx/generic/activityindicator.h
- wx/generic/animate.h
wx/generic/clrpickerg.h
wx/generic/collpaneg.h
wx/generic/filepickerg.h
@@ -2196,7 +2189,6 @@ MSW_DESKTOP_HDR =
DFB_LOWLEVEL_SRC =
src/common/fontmgrcmn.cpp
- src/generic/animateg.cpp
src/generic/caret.cpp
src/generic/colour.cpp
src/generic/icon.cpp
@@ -2225,7 +2217,6 @@ DFB_LOWLEVEL_SRC =
src/dfb/window.cpp
src/dfb/wrapdfb.cpp
DFB_LOWLEVEL_HDR =
- wx/generic/animate.h
wx/generic/caret.h
wx/generic/colour.h
wx/generic/icon.h
@@ -2457,7 +2448,6 @@ OSX_SHARED_HDR =
OSX_COCOA_SRC =
$(OSX_COMMON_SRC)
src/common/taskbarcmn.cpp
- src/generic/animateg.cpp
src/osx/carbon/sound.cpp
src/osx/cocoa/aboutdlg.mm
src/osx/cocoa/activityindicator.mm
@@ -2513,7 +2503,6 @@ OSX_COCOA_SRC =
src/osx/timectrl_osx.cpp
OSX_COCOA_HDR =
- wx/generic/animate.h
wx/generic/region.h
wx/osx/activityindicator.h
wx/osx/cocoa/chkconf.h
@@ -2538,7 +2527,6 @@ OSX_COCOA_HDR =
OSX_IPHONE_SRC =
$(OSX_COMMON_SRC)
- src/generic/animateg.cpp
src/generic/regiong.cpp
src/osx/core/sound.cpp
src/osx/iphone/anybutton.mm
@@ -2561,7 +2549,6 @@ OSX_IPHONE_SRC =
src/osx/sound_osx.cpp
OSX_IPHONE_HDR =
- wx/generic/animate.h
wx/generic/region.h
wx/osx/iphone/chkconf.h
wx/osx/iphone/evtloop.h
@@ -2633,7 +2620,6 @@ UNIV_HDR =
$(UNIV_PLATFORM_HDR)
wx/generic/accel.h
wx/generic/activityindicator.h
- wx/generic/animate.h
wx/generic/clrpickerg.h
wx/generic/collpaneg.h
wx/generic/ctrlsub.h
diff --git a/build/msw/config.vc b/build/msw/config.vc
index 5c6444f13a..577021b26a 100644
--- a/build/msw/config.vc
+++ b/build/msw/config.vc
@@ -56,6 +56,12 @@ BUILD = debug
# (AMD64 accepted as synonym for X64 but should not be used any more).
TARGET_CPU = $(CPU)
+# Visual Studio version set by the VS command prompt.
+VISUALSTUDIOVERSION = $(VISUALSTUDIOVERSION)
+
+# Platform architecture set by the VS command prompt.
+VISUALSTUDIOPLATFORM = $(PLATFORM)
+
# Should debugging info be included in the executables? The default value
# "default" means that debug info will be included if BUILD=debug
# and not included if BUILD=release. [0,1,default]
diff --git a/build/msw/makefile.bcc b/build/msw/makefile.bcc
index fefb2ee256..d812ac6e55 100644
--- a/build/msw/makefile.bcc
+++ b/build/msw/makefile.bcc
@@ -347,27 +347,28 @@ WXSCINTILLA_OBJECTS = \
$(OBJS)\wxscintilla_UniConversion.obj \
$(OBJS)\wxscintilla_ViewStyle.obj \
$(OBJS)\wxscintilla_XPM.obj
-MONODLL_CFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+MONODLL_CFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -I..\..\src\stc\scintilla\include -I..\..\src\stc\scintilla\lexlib \
- -I..\..\src\stc\scintilla\src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
- -DLINK_LEXERS -w-8027 -DwxUSE_BASE=1 -DWXMAKINGDLL $(CPPFLAGS) $(CFLAGS)
-MONODLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+ -DWXBUILDING -I..\..\src\stc\scintilla\include \
+ -I..\..\src\stc\scintilla\lexlib -I..\..\src\stc\scintilla\src -D__WX__ \
+ -DSCI_LEXER -DNO_CXX11_REGEX -DLINK_LEXERS -w-8027 -DwxUSE_BASE=1 \
+ -DWXMAKINGDLL $(CPPFLAGS) $(CFLAGS)
+MONODLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -I..\..\src\stc\scintilla\include -I..\..\src\stc\scintilla\lexlib \
- -I..\..\src\stc\scintilla\src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
- -DLINK_LEXERS -w-8027 -DwxUSE_BASE=1 -DWXMAKINGDLL -Hu \
- -H=$(OBJS)\wxprec_monodll.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -I..\..\src\stc\scintilla\include \
+ -I..\..\src\stc\scintilla\lexlib -I..\..\src\stc\scintilla\src -D__WX__ \
+ -DSCI_LEXER -DNO_CXX11_REGEX -DLINK_LEXERS -w-8027 -DwxUSE_BASE=1 \
+ -DWXMAKINGDLL -Hu -H=$(OBJS)\wxprec_monodll.csm $(CPPFLAGS) $(CXXFLAGS)
MONODLL_OBJECTS = \
$(OBJS)\monodll_dummy.obj \
$(OBJS)\monodll_any.obj \
@@ -499,27 +500,28 @@ MONODLL_OBJECTS = \
$(____MONOLIB_GUI_SRC_FILENAMES_OBJECTS) \
$(OBJS)\monodll_xml.obj \
$(OBJS)\monodll_xtixml.obj
-MONOLIB_CFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+MONOLIB_CFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -I..\..\src\stc\scintilla\include -I..\..\src\stc\scintilla\lexlib \
- -I..\..\src\stc\scintilla\src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
- -DLINK_LEXERS -w-8027 -DwxUSE_BASE=1 $(CPPFLAGS) $(CFLAGS)
-MONOLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+ -DWXBUILDING -I..\..\src\stc\scintilla\include \
+ -I..\..\src\stc\scintilla\lexlib -I..\..\src\stc\scintilla\src -D__WX__ \
+ -DSCI_LEXER -DNO_CXX11_REGEX -DLINK_LEXERS -w-8027 -DwxUSE_BASE=1 $(CPPFLAGS) \
+ $(CFLAGS)
+MONOLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -I..\..\src\stc\scintilla\include -I..\..\src\stc\scintilla\lexlib \
- -I..\..\src\stc\scintilla\src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
- -DLINK_LEXERS -w-8027 -DwxUSE_BASE=1 -Hu -H=$(OBJS)\wxprec_monolib.csm \
- $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -I..\..\src\stc\scintilla\include \
+ -I..\..\src\stc\scintilla\lexlib -I..\..\src\stc\scintilla\src -D__WX__ \
+ -DSCI_LEXER -DNO_CXX11_REGEX -DLINK_LEXERS -w-8027 -DwxUSE_BASE=1 -Hu \
+ -H=$(OBJS)\wxprec_monolib.csm $(CPPFLAGS) $(CXXFLAGS)
MONOLIB_OBJECTS = \
$(OBJS)\monolib_dummy.obj \
$(OBJS)\monolib_any.obj \
@@ -651,22 +653,21 @@ MONOLIB_OBJECTS = \
$(____MONOLIB_GUI_SRC_FILENAMES_1_OBJECTS) \
$(OBJS)\monolib_xml.obj \
$(OBJS)\monolib_xtixml.obj
-BASEDLL_CFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+BASEDLL_CFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE -DwxUSE_BASE=1 $(CPPFLAGS) $(CFLAGS)
-BASEDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+ -DWXBUILDING -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE -DwxUSE_BASE=1 $(CPPFLAGS) \
+ $(CFLAGS)
+BASEDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE -DwxUSE_BASE=1 -Hu \
+ -DWXBUILDING -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE -DwxUSE_BASE=1 -Hu \
-H=$(OBJS)\wxprec_basedll.csm $(CPPFLAGS) $(CXXFLAGS)
BASEDLL_OBJECTS = \
$(OBJS)\basedll_dummy.obj \
@@ -784,23 +785,21 @@ BASEDLL_OBJECTS = \
$(OBJS)\basedll_utilscmn.obj \
$(OBJS)\basedll_main.obj \
$(OBJS)\basedll_volume.obj
-BASELIB_CFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+BASELIB_CFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -DwxUSE_GUI=0 -DwxUSE_BASE=1 $(CPPFLAGS) $(CFLAGS)
-BASELIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 $(CPPFLAGS) $(CFLAGS)
+BASELIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Hu -H=$(OBJS)\wxprec_baselib.csm $(CPPFLAGS) \
- $(CXXFLAGS)
+ -DWXBUILDING -DwxUSE_GUI=0 -DwxUSE_BASE=1 -Hu -H=$(OBJS)\wxprec_baselib.csm \
+ $(CPPFLAGS) $(CXXFLAGS)
BASELIB_OBJECTS = \
$(OBJS)\baselib_dummy.obj \
$(OBJS)\baselib_any.obj \
@@ -917,14 +916,13 @@ BASELIB_OBJECTS = \
$(OBJS)\baselib_utilscmn.obj \
$(OBJS)\baselib_main.obj \
$(OBJS)\baselib_volume.obj
-NETDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+NETDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -DwxUSE_GUI=0 -DWXUSINGDLL -DWXMAKINGDLL_NET -Hu \
+ -DWXBUILDING -DwxUSE_GUI=0 -DWXUSINGDLL -DWXMAKINGDLL_NET -Hu \
-H=$(OBJS)\wxprec_netdll.csm $(CPPFLAGS) $(CXXFLAGS)
NETDLL_OBJECTS = \
$(OBJS)\netdll_dummy.obj \
@@ -940,14 +938,14 @@ NETDLL_OBJECTS = \
$(OBJS)\netdll_url.obj \
$(OBJS)\netdll_sockmsw.obj \
$(OBJS)\netdll_urlmsw.obj
-NETLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+NETLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -DwxUSE_GUI=0 -Hu -H=$(OBJS)\wxprec_netlib.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -DwxUSE_GUI=0 -Hu -H=$(OBJS)\wxprec_netlib.csm $(CPPFLAGS) \
+ $(CXXFLAGS)
NETLIB_OBJECTS = \
$(OBJS)\netlib_dummy.obj \
$(OBJS)\netlib_fs_inet.obj \
@@ -962,15 +960,15 @@ NETLIB_OBJECTS = \
$(OBJS)\netlib_url.obj \
$(OBJS)\netlib_sockmsw.obj \
$(OBJS)\netlib_urlmsw.obj
-COREDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+COREDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
- -DWXMAKINGDLL_CORE -DwxUSE_BASE=0 -Hu -H=$(OBJS)\wxprec_coredll.csm \
- $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_CORE -DwxUSE_BASE=0 -Hu \
+ -H=$(OBJS)\wxprec_coredll.csm $(CPPFLAGS) $(CXXFLAGS)
COREDLL_OBJECTS = \
$(OBJS)\coredll_dummy.obj \
$(OBJS)\coredll_event.obj \
@@ -980,14 +978,15 @@ COREDLL_OBJECTS = \
$(OBJS)\coredll_main.obj \
$(OBJS)\coredll_volume.obj \
$(____CORE_SRC_FILENAMES_2_OBJECTS)
-CORELIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+CORELIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -DwxUSE_BASE=0 -Hu -H=$(OBJS)\wxprec_corelib.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -DwxUSE_BASE=0 -Hu -H=$(OBJS)\wxprec_corelib.csm $(CPPFLAGS) \
+ $(CXXFLAGS)
CORELIB_OBJECTS = \
$(OBJS)\corelib_dummy.obj \
$(OBJS)\corelib_event.obj \
@@ -997,63 +996,65 @@ CORELIB_OBJECTS = \
$(OBJS)\corelib_main.obj \
$(OBJS)\corelib_volume.obj \
$(____CORE_SRC_FILENAMES_3_OBJECTS)
-ADVDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+ADVDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
- -DWXMAKINGDLL_ADV -Hu -H=$(OBJS)\wxprec_advdll.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_ADV -Hu -H=$(OBJS)\wxprec_advdll.csm \
+ $(CPPFLAGS) $(CXXFLAGS)
ADVDLL_OBJECTS = \
$(OBJS)\advdll_dummy.obj
-ADVLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+ADVLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -Hu \
- -H=$(OBJS)\wxprec_advlib.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -Hu -H=$(OBJS)\wxprec_advlib.csm $(CPPFLAGS) $(CXXFLAGS)
ADVLIB_OBJECTS = \
$(OBJS)\advlib_dummy.obj
-MEDIADLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+MEDIADLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
- -DWXMAKINGDLL_MEDIA -Hu -H=$(OBJS)\wxprec_mediadll.csm $(CPPFLAGS) \
- $(CXXFLAGS)
+ -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_MEDIA -Hu \
+ -H=$(OBJS)\wxprec_mediadll.csm $(CPPFLAGS) $(CXXFLAGS)
MEDIADLL_OBJECTS = \
$(OBJS)\mediadll_dummy.obj \
$(OBJS)\mediadll_mediactrlcmn.obj \
$(OBJS)\mediadll_mediactrl_am.obj \
$(OBJS)\mediadll_mediactrl_wmp10.obj \
$(OBJS)\mediadll_mediactrl_qt.obj
-MEDIALIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+MEDIALIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -Hu \
- -H=$(OBJS)\wxprec_medialib.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -Hu -H=$(OBJS)\wxprec_medialib.csm $(CPPFLAGS) $(CXXFLAGS)
MEDIALIB_OBJECTS = \
$(OBJS)\medialib_dummy.obj \
$(OBJS)\medialib_mediactrlcmn.obj \
$(OBJS)\medialib_mediactrl_am.obj \
$(OBJS)\medialib_mediactrl_wmp10.obj \
$(OBJS)\medialib_mediactrl_qt.obj
-HTMLDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+HTMLDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
- -DWXMAKINGDLL_HTML -Hu -H=$(OBJS)\wxprec_htmldll.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_HTML -Hu \
+ -H=$(OBJS)\wxprec_htmldll.csm $(CPPFLAGS) $(CXXFLAGS)
HTMLDLL_OBJECTS = \
$(OBJS)\htmldll_dummy.obj \
$(OBJS)\htmldll_helpbest.obj \
@@ -1083,14 +1084,14 @@ HTMLDLL_OBJECTS = \
$(OBJS)\htmldll_styleparams.obj \
$(OBJS)\htmldll_winpars.obj \
$(OBJS)\htmldll_htmllbox.obj
-HTMLLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+HTMLLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -Hu \
- -H=$(OBJS)\wxprec_htmllib.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -Hu -H=$(OBJS)\wxprec_htmllib.csm $(CPPFLAGS) $(CXXFLAGS)
HTMLLIB_OBJECTS = \
$(OBJS)\htmllib_dummy.obj \
$(OBJS)\htmllib_helpbest.obj \
@@ -1120,14 +1121,15 @@ HTMLLIB_OBJECTS = \
$(OBJS)\htmllib_styleparams.obj \
$(OBJS)\htmllib_winpars.obj \
$(OBJS)\htmllib_htmllbox.obj
-WEBVIEWDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+WEBVIEWDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
- -DWXMAKINGDLL_WEBVIEW -I..\..\3rdparty\webview2\build\native\include -Hu \
+ -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_WEBVIEW \
+ -I..\..\3rdparty\webview2\build\native\include -Hu \
-H=$(OBJS)\wxprec_webviewdll.csm $(CPPFLAGS) $(CXXFLAGS)
WEBVIEWDLL_OBJECTS = \
$(OBJS)\webviewdll_dummy.obj \
@@ -1136,14 +1138,14 @@ WEBVIEWDLL_OBJECTS = \
$(OBJS)\webviewdll_webview.obj \
$(OBJS)\webviewdll_webviewarchivehandler.obj \
$(OBJS)\webviewdll_webviewfshandler.obj
-WEBVIEWLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+WEBVIEWLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -I..\..\3rdparty\webview2\build\native\include -Hu \
+ -DWXBUILDING -I..\..\3rdparty\webview2\build\native\include -Hu \
-H=$(OBJS)\wxprec_webviewlib.csm $(CPPFLAGS) $(CXXFLAGS)
WEBVIEWLIB_OBJECTS = \
$(OBJS)\webviewlib_dummy.obj \
@@ -1152,63 +1154,64 @@ WEBVIEWLIB_OBJECTS = \
$(OBJS)\webviewlib_webview.obj \
$(OBJS)\webviewlib_webviewarchivehandler.obj \
$(OBJS)\webviewlib_webviewfshandler.obj
-QADLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+QADLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
- -DWXMAKINGDLL_QA -Hu -H=$(OBJS)\wxprec_qadll.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_QA -Hu -H=$(OBJS)\wxprec_qadll.csm \
+ $(CPPFLAGS) $(CXXFLAGS)
QADLL_OBJECTS = \
$(OBJS)\qadll_dummy.obj \
$(OBJS)\qadll_debugrpt.obj \
$(OBJS)\qadll_dbgrptg.obj
-QALIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+QALIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -Hu \
- -H=$(OBJS)\wxprec_qalib.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -Hu -H=$(OBJS)\wxprec_qalib.csm $(CPPFLAGS) $(CXXFLAGS)
QALIB_OBJECTS = \
$(OBJS)\qalib_dummy.obj \
$(OBJS)\qalib_debugrpt.obj \
$(OBJS)\qalib_dbgrptg.obj
-XMLDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+XMLDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -DwxUSE_GUI=0 -DWXUSINGDLL -DWXMAKINGDLL_XML -Hu \
+ -DWXBUILDING -DwxUSE_GUI=0 -DWXUSINGDLL -DWXMAKINGDLL_XML -Hu \
-H=$(OBJS)\wxprec_xmldll.csm $(CPPFLAGS) $(CXXFLAGS)
XMLDLL_OBJECTS = \
$(OBJS)\xmldll_dummy.obj \
$(OBJS)\xmldll_xml.obj \
$(OBJS)\xmldll_xtixml.obj
-XMLLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+XMLLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -DwxUSE_GUI=0 -Hu -H=$(OBJS)\wxprec_xmllib.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -DwxUSE_GUI=0 -Hu -H=$(OBJS)\wxprec_xmllib.csm $(CPPFLAGS) \
+ $(CXXFLAGS)
XMLLIB_OBJECTS = \
$(OBJS)\xmllib_dummy.obj \
$(OBJS)\xmllib_xml.obj \
$(OBJS)\xmllib_xtixml.obj
-XRCDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+XRCDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
- -DWXMAKINGDLL_XRC -Hu -H=$(OBJS)\wxprec_xrcdll.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_XRC -Hu -H=$(OBJS)\wxprec_xrcdll.csm \
+ $(CPPFLAGS) $(CXXFLAGS)
XRCDLL_OBJECTS = \
$(OBJS)\xrcdll_dummy.obj \
$(OBJS)\xrcdll_xh_activityindicator.obj \
@@ -1280,14 +1283,14 @@ XRCDLL_OBJECTS = \
$(OBJS)\xrcdll_xmlres.obj \
$(OBJS)\xrcdll_xmladv.obj \
$(OBJS)\xrcdll_xmlrsall.obj
-XRCLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+XRCLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -Hu \
- -H=$(OBJS)\wxprec_xrclib.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -Hu -H=$(OBJS)\wxprec_xrclib.csm $(CPPFLAGS) $(CXXFLAGS)
XRCLIB_OBJECTS = \
$(OBJS)\xrclib_dummy.obj \
$(OBJS)\xrclib_xh_activityindicator.obj \
@@ -1359,14 +1362,15 @@ XRCLIB_OBJECTS = \
$(OBJS)\xrclib_xmlres.obj \
$(OBJS)\xrclib_xmladv.obj \
$(OBJS)\xrclib_xmlrsall.obj
-AUIDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+AUIDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
- -DWXMAKINGDLL_AUI -Hu -H=$(OBJS)\wxprec_auidll.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_AUI -Hu -H=$(OBJS)\wxprec_auidll.csm \
+ $(CPPFLAGS) $(CXXFLAGS)
AUIDLL_OBJECTS = \
$(OBJS)\auidll_dummy.obj \
$(OBJS)\auidll_framemanager.obj \
@@ -1380,14 +1384,14 @@ AUIDLL_OBJECTS = \
$(OBJS)\auidll_xh_auitoolb.obj \
$(OBJS)\auidll_tabartmsw.obj \
$(OBJS)\auidll_barartmsw.obj
-AUILIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+AUILIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -Hu \
- -H=$(OBJS)\wxprec_auilib.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -Hu -H=$(OBJS)\wxprec_auilib.csm $(CPPFLAGS) $(CXXFLAGS)
AUILIB_OBJECTS = \
$(OBJS)\auilib_dummy.obj \
$(OBJS)\auilib_framemanager.obj \
@@ -1401,15 +1405,15 @@ AUILIB_OBJECTS = \
$(OBJS)\auilib_xh_auitoolb.obj \
$(OBJS)\auilib_tabartmsw.obj \
$(OBJS)\auilib_barartmsw.obj
-RIBBONDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+RIBBONDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
- -DWXMAKINGDLL_RIBBON -Hu -H=$(OBJS)\wxprec_ribbondll.csm $(CPPFLAGS) \
- $(CXXFLAGS)
+ -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_RIBBON -Hu \
+ -H=$(OBJS)\wxprec_ribbondll.csm $(CPPFLAGS) $(CXXFLAGS)
RIBBONDLL_OBJECTS = \
$(OBJS)\ribbondll_dummy.obj \
$(OBJS)\ribbondll_art_internal.obj \
@@ -1423,14 +1427,14 @@ RIBBONDLL_OBJECTS = \
$(OBJS)\ribbondll_panel.obj \
$(OBJS)\ribbondll_toolbar.obj \
$(OBJS)\ribbondll_xh_ribbon.obj
-RIBBONLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+RIBBONLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -Hu \
- -H=$(OBJS)\wxprec_ribbonlib.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -Hu -H=$(OBJS)\wxprec_ribbonlib.csm $(CPPFLAGS) $(CXXFLAGS)
RIBBONLIB_OBJECTS = \
$(OBJS)\ribbonlib_dummy.obj \
$(OBJS)\ribbonlib_art_internal.obj \
@@ -1444,15 +1448,15 @@ RIBBONLIB_OBJECTS = \
$(OBJS)\ribbonlib_panel.obj \
$(OBJS)\ribbonlib_toolbar.obj \
$(OBJS)\ribbonlib_xh_ribbon.obj
-PROPGRIDDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+PROPGRIDDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
- -DWXMAKINGDLL_PROPGRID -Hu -H=$(OBJS)\wxprec_propgriddll.csm $(CPPFLAGS) \
- $(CXXFLAGS)
+ -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_PROPGRID -Hu \
+ -H=$(OBJS)\wxprec_propgriddll.csm $(CPPFLAGS) $(CXXFLAGS)
PROPGRIDDLL_OBJECTS = \
$(OBJS)\propgriddll_dummy.obj \
$(OBJS)\propgriddll_advprops.obj \
@@ -1463,14 +1467,14 @@ PROPGRIDDLL_OBJECTS = \
$(OBJS)\propgriddll_propgridiface.obj \
$(OBJS)\propgriddll_propgridpagestate.obj \
$(OBJS)\propgriddll_props.obj
-PROPGRIDLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+PROPGRIDLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -Hu \
- -H=$(OBJS)\wxprec_propgridlib.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -Hu -H=$(OBJS)\wxprec_propgridlib.csm $(CPPFLAGS) $(CXXFLAGS)
PROPGRIDLIB_OBJECTS = \
$(OBJS)\propgridlib_dummy.obj \
$(OBJS)\propgridlib_advprops.obj \
@@ -1481,15 +1485,15 @@ PROPGRIDLIB_OBJECTS = \
$(OBJS)\propgridlib_propgridiface.obj \
$(OBJS)\propgridlib_propgridpagestate.obj \
$(OBJS)\propgridlib_props.obj
-RICHTEXTDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+RICHTEXTDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
- -DWXMAKINGDLL_RICHTEXT -Hu -H=$(OBJS)\wxprec_richtextdll.csm $(CPPFLAGS) \
- $(CXXFLAGS)
+ -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_RICHTEXT -Hu \
+ -H=$(OBJS)\wxprec_richtextdll.csm $(CPPFLAGS) $(CXXFLAGS)
RICHTEXTDLL_OBJECTS = \
$(OBJS)\richtextdll_dummy.obj \
$(OBJS)\richtextdll_richtextbuffer.obj \
@@ -1503,14 +1507,14 @@ RICHTEXTDLL_OBJECTS = \
$(OBJS)\richtextdll_richtextsymboldlg.obj \
$(OBJS)\richtextdll_richtextxml.obj \
$(OBJS)\richtextdll_xh_richtext.obj
-RICHTEXTLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+RICHTEXTLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -Hu \
- -H=$(OBJS)\wxprec_richtextlib.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -Hu -H=$(OBJS)\wxprec_richtextlib.csm $(CPPFLAGS) $(CXXFLAGS)
RICHTEXTLIB_OBJECTS = \
$(OBJS)\richtextlib_dummy.obj \
$(OBJS)\richtextlib_richtextbuffer.obj \
@@ -1524,58 +1528,59 @@ RICHTEXTLIB_OBJECTS = \
$(OBJS)\richtextlib_richtextsymboldlg.obj \
$(OBJS)\richtextlib_richtextxml.obj \
$(OBJS)\richtextlib_xh_richtext.obj
-STCDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+STCDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -I..\..\src\stc\scintilla\include -I..\..\src\stc\scintilla\lexlib \
- -I..\..\src\stc\scintilla\src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
- -DLINK_LEXERS -w-8027 -DWXUSINGDLL -DWXMAKINGDLL_STC -Hu \
- -H=$(OBJS)\wxprec_stcdll.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -I..\..\src\stc\scintilla\include \
+ -I..\..\src\stc\scintilla\lexlib -I..\..\src\stc\scintilla\src -D__WX__ \
+ -DSCI_LEXER -DNO_CXX11_REGEX -DLINK_LEXERS -w-8027 -DWXUSINGDLL \
+ -DWXMAKINGDLL_STC -Hu -H=$(OBJS)\wxprec_stcdll.csm $(CPPFLAGS) $(CXXFLAGS)
STCDLL_OBJECTS = \
$(OBJS)\stcdll_dummy.obj \
$(OBJS)\stcdll_stc.obj \
$(OBJS)\stcdll_PlatWX.obj \
$(OBJS)\stcdll_ScintillaWX.obj
-STCLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+STCLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -I..\..\src\stc\scintilla\include -I..\..\src\stc\scintilla\lexlib \
- -I..\..\src\stc\scintilla\src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
- -DLINK_LEXERS -w-8027 -Hu -H=$(OBJS)\wxprec_stclib.csm $(CPPFLAGS) \
- $(CXXFLAGS)
+ -DWXBUILDING -I..\..\src\stc\scintilla\include \
+ -I..\..\src\stc\scintilla\lexlib -I..\..\src\stc\scintilla\src -D__WX__ \
+ -DSCI_LEXER -DNO_CXX11_REGEX -DLINK_LEXERS -w-8027 -Hu \
+ -H=$(OBJS)\wxprec_stclib.csm $(CPPFLAGS) $(CXXFLAGS)
STCLIB_OBJECTS = \
$(OBJS)\stclib_dummy.obj \
$(OBJS)\stclib_stc.obj \
$(OBJS)\stclib_PlatWX.obj \
$(OBJS)\stclib_ScintillaWX.obj
-GLDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+GLDLL_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
- -DWXMAKINGDLL_GL -Hu -H=$(OBJS)\wxprec_gldll.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -DWXUSINGDLL -DWXMAKINGDLL_GL -Hu -H=$(OBJS)\wxprec_gldll.csm \
+ $(CPPFLAGS) $(CXXFLAGS)
GLDLL_OBJECTS = \
$(OBJS)\gldll_dummy.obj \
$(OBJS)\gldll_glcmn.obj \
$(OBJS)\gldll_glcanvas.obj
-GLLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include $(__DEBUGINFO) \
+GLLIB_CXXFLAGS = $(__RUNTIME_LIBS) -I$(BCCDIR)\include \
+ -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
+ -I..\..\src\regex -I..\..\src\expat\expat\lib $(__DEBUGINFO) \
$(__OPTIMIZEFLAG) $(__THREADSFLAG) -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
$(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
-I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -Hu \
- -H=$(OBJS)\wxprec_gllib.csm $(CPPFLAGS) $(CXXFLAGS)
+ -DWXBUILDING -Hu -H=$(OBJS)\wxprec_gllib.csm $(CPPFLAGS) $(CXXFLAGS)
GLLIB_OBJECTS = \
$(OBJS)\gllib_dummy.obj \
$(OBJS)\gllib_glcmn.obj \
@@ -1866,6 +1871,7 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_notifmsgrt.obj \
$(OBJS)\monodll_uuid.obj \
$(OBJS)\monodll_evtloop.obj \
+ $(OBJS)\monodll_access.obj \
$(OBJS)\monodll_clrpickerg.obj \
$(OBJS)\monodll_collpaneg.obj \
$(OBJS)\monodll_filepickerg.obj \
@@ -1902,7 +1908,6 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_nativdlg.obj \
$(OBJS)\monodll_nativewin.obj \
$(OBJS)\monodll_msw_notebook.obj \
- $(OBJS)\monodll_access.obj \
$(OBJS)\monodll_ownerdrw.obj \
$(OBJS)\monodll_progdlg.obj \
$(OBJS)\monodll_msw_radiobox.obj \
@@ -1925,7 +1930,6 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_treectrl.obj \
$(OBJS)\monodll_systhemectrl.obj \
$(OBJS)\monodll_customdraw.obj \
- $(OBJS)\monodll_animateg.obj \
$(OBJS)\monodll_commandlinkbutton.obj \
$(OBJS)\monodll_bmpcbox.obj \
$(OBJS)\monodll_hyperlink.obj \
@@ -2066,6 +2070,7 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_windowid.obj \
$(OBJS)\monodll_wrapsizer.obj \
$(OBJS)\monodll_xpmdecod.obj \
+ $(OBJS)\monodll_animateg.obj \
$(OBJS)\monodll_busyinfo.obj \
$(OBJS)\monodll_generic_buttonbar.obj \
$(OBJS)\monodll_choicdgg.obj \
@@ -2208,7 +2213,7 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_notifmsgrt.obj \
$(OBJS)\monodll_uuid.obj \
$(OBJS)\monodll_evtloop.obj \
- $(OBJS)\monodll_animateg.obj \
+ $(OBJS)\monodll_access.obj \
$(OBJS)\monodll_generic_accel.obj \
$(OBJS)\monodll_clrpickerg.obj \
$(OBJS)\monodll_collpaneg.obj \
@@ -2392,6 +2397,7 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_windowid.obj \
$(OBJS)\monodll_wrapsizer.obj \
$(OBJS)\monodll_xpmdecod.obj \
+ $(OBJS)\monodll_animateg.obj \
$(OBJS)\monodll_busyinfo.obj \
$(OBJS)\monodll_generic_buttonbar.obj \
$(OBJS)\monodll_choicdgg.obj \
@@ -2700,6 +2706,7 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_notifmsgrt.obj \
$(OBJS)\monolib_uuid.obj \
$(OBJS)\monolib_evtloop.obj \
+ $(OBJS)\monolib_access.obj \
$(OBJS)\monolib_clrpickerg.obj \
$(OBJS)\monolib_collpaneg.obj \
$(OBJS)\monolib_filepickerg.obj \
@@ -2736,7 +2743,6 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_nativdlg.obj \
$(OBJS)\monolib_nativewin.obj \
$(OBJS)\monolib_msw_notebook.obj \
- $(OBJS)\monolib_access.obj \
$(OBJS)\monolib_ownerdrw.obj \
$(OBJS)\monolib_progdlg.obj \
$(OBJS)\monolib_msw_radiobox.obj \
@@ -2759,7 +2765,6 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_treectrl.obj \
$(OBJS)\monolib_systhemectrl.obj \
$(OBJS)\monolib_customdraw.obj \
- $(OBJS)\monolib_animateg.obj \
$(OBJS)\monolib_commandlinkbutton.obj \
$(OBJS)\monolib_bmpcbox.obj \
$(OBJS)\monolib_hyperlink.obj \
@@ -2900,6 +2905,7 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_windowid.obj \
$(OBJS)\monolib_wrapsizer.obj \
$(OBJS)\monolib_xpmdecod.obj \
+ $(OBJS)\monolib_animateg.obj \
$(OBJS)\monolib_busyinfo.obj \
$(OBJS)\monolib_generic_buttonbar.obj \
$(OBJS)\monolib_choicdgg.obj \
@@ -3042,7 +3048,7 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_notifmsgrt.obj \
$(OBJS)\monolib_uuid.obj \
$(OBJS)\monolib_evtloop.obj \
- $(OBJS)\monolib_animateg.obj \
+ $(OBJS)\monolib_access.obj \
$(OBJS)\monolib_generic_accel.obj \
$(OBJS)\monolib_clrpickerg.obj \
$(OBJS)\monolib_collpaneg.obj \
@@ -3226,6 +3232,7 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_windowid.obj \
$(OBJS)\monolib_wrapsizer.obj \
$(OBJS)\monolib_xpmdecod.obj \
+ $(OBJS)\monolib_animateg.obj \
$(OBJS)\monolib_busyinfo.obj \
$(OBJS)\monolib_generic_buttonbar.obj \
$(OBJS)\monolib_choicdgg.obj \
@@ -3406,6 +3413,7 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_notifmsgrt.obj \
$(OBJS)\coredll_uuid.obj \
$(OBJS)\coredll_evtloop.obj \
+ $(OBJS)\coredll_access.obj \
$(OBJS)\coredll_clrpickerg.obj \
$(OBJS)\coredll_collpaneg.obj \
$(OBJS)\coredll_filepickerg.obj \
@@ -3442,7 +3450,6 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_nativdlg.obj \
$(OBJS)\coredll_nativewin.obj \
$(OBJS)\coredll_msw_notebook.obj \
- $(OBJS)\coredll_access.obj \
$(OBJS)\coredll_ownerdrw.obj \
$(OBJS)\coredll_progdlg.obj \
$(OBJS)\coredll_msw_radiobox.obj \
@@ -3465,7 +3472,6 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_treectrl.obj \
$(OBJS)\coredll_systhemectrl.obj \
$(OBJS)\coredll_customdraw.obj \
- $(OBJS)\coredll_animateg.obj \
$(OBJS)\coredll_commandlinkbutton.obj \
$(OBJS)\coredll_bmpcbox.obj \
$(OBJS)\coredll_hyperlink.obj \
@@ -3606,6 +3612,7 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_windowid.obj \
$(OBJS)\coredll_wrapsizer.obj \
$(OBJS)\coredll_xpmdecod.obj \
+ $(OBJS)\coredll_animateg.obj \
$(OBJS)\coredll_busyinfo.obj \
$(OBJS)\coredll_buttonbar.obj \
$(OBJS)\coredll_choicdgg.obj \
@@ -3748,7 +3755,7 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_notifmsgrt.obj \
$(OBJS)\coredll_uuid.obj \
$(OBJS)\coredll_evtloop.obj \
- $(OBJS)\coredll_animateg.obj \
+ $(OBJS)\coredll_access.obj \
$(OBJS)\coredll_generic_accel.obj \
$(OBJS)\coredll_clrpickerg.obj \
$(OBJS)\coredll_collpaneg.obj \
@@ -3932,6 +3939,7 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_windowid.obj \
$(OBJS)\coredll_wrapsizer.obj \
$(OBJS)\coredll_xpmdecod.obj \
+ $(OBJS)\coredll_animateg.obj \
$(OBJS)\coredll_busyinfo.obj \
$(OBJS)\coredll_buttonbar.obj \
$(OBJS)\coredll_choicdgg.obj \
@@ -4078,6 +4086,7 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_notifmsgrt.obj \
$(OBJS)\corelib_uuid.obj \
$(OBJS)\corelib_evtloop.obj \
+ $(OBJS)\corelib_access.obj \
$(OBJS)\corelib_clrpickerg.obj \
$(OBJS)\corelib_collpaneg.obj \
$(OBJS)\corelib_filepickerg.obj \
@@ -4114,7 +4123,6 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_nativdlg.obj \
$(OBJS)\corelib_nativewin.obj \
$(OBJS)\corelib_msw_notebook.obj \
- $(OBJS)\corelib_access.obj \
$(OBJS)\corelib_ownerdrw.obj \
$(OBJS)\corelib_progdlg.obj \
$(OBJS)\corelib_msw_radiobox.obj \
@@ -4137,7 +4145,6 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_treectrl.obj \
$(OBJS)\corelib_systhemectrl.obj \
$(OBJS)\corelib_customdraw.obj \
- $(OBJS)\corelib_animateg.obj \
$(OBJS)\corelib_commandlinkbutton.obj \
$(OBJS)\corelib_bmpcbox.obj \
$(OBJS)\corelib_hyperlink.obj \
@@ -4278,6 +4285,7 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_windowid.obj \
$(OBJS)\corelib_wrapsizer.obj \
$(OBJS)\corelib_xpmdecod.obj \
+ $(OBJS)\corelib_animateg.obj \
$(OBJS)\corelib_busyinfo.obj \
$(OBJS)\corelib_buttonbar.obj \
$(OBJS)\corelib_choicdgg.obj \
@@ -4420,7 +4428,7 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_notifmsgrt.obj \
$(OBJS)\corelib_uuid.obj \
$(OBJS)\corelib_evtloop.obj \
- $(OBJS)\corelib_animateg.obj \
+ $(OBJS)\corelib_access.obj \
$(OBJS)\corelib_generic_accel.obj \
$(OBJS)\corelib_clrpickerg.obj \
$(OBJS)\corelib_collpaneg.obj \
@@ -4604,6 +4612,7 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_windowid.obj \
$(OBJS)\corelib_wrapsizer.obj \
$(OBJS)\corelib_xpmdecod.obj \
+ $(OBJS)\corelib_animateg.obj \
$(OBJS)\corelib_busyinfo.obj \
$(OBJS)\corelib_buttonbar.obj \
$(OBJS)\corelib_choicdgg.obj \
@@ -5220,7 +5229,7 @@ $(LIBDIRNAME)\wxscintilla$(WXDEBUGFLAG).lib: $(WXSCINTILLA_OBJECTS)
!endif
!if "$(MONOLITHIC)" == "1" && "$(SHARED)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\monodll_dummy.obj $(MONODLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\monodll_version.res $(__wxscintilla_library_link_DEP)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\monodll_dummy.obj $(MONODLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\monodll_version.res $(__wxscintilla_library_link_DEP)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(MONODLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(__wxscintilla) import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\monodll_version.res
|
@@ -5236,7 +5245,7 @@ $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXD
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1"
-$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\basedll_dummy.obj $(BASEDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\basedll_version.res
+$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\basedll_dummy.obj $(BASEDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\basedll_version.res
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(BASEDLL_OBJECTS),$@,, wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\basedll_version.res
|
@@ -5256,7 +5265,7 @@ wxbase: $(____wxbase_namedll_DEP) $(____wxbase_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1"
-$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\netdll_dummy.obj $(NETDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\netdll_version.res $(__basedll___depname)
+$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\netdll_dummy.obj $(NETDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\netdll_version.res $(__basedll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(NETDLL_OBJECTS),$@,, wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\netdll_version.res
|
@@ -5276,7 +5285,7 @@ wxnet: $(____wxnet_namedll_DEP) $(____wxnet_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_GUI)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\coredll_dummy.obj $(COREDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\coredll_version.res $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\coredll_dummy.obj $(COREDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\coredll_version.res $(__basedll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(COREDLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\coredll_version.res
|
@@ -5296,7 +5305,7 @@ wxcore: $(____wxcore_namedll_DEP) $(____wxcore_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_GUI)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\advdll_dummy.obj $(ADVDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\advdll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\advdll_dummy.obj $(ADVDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\advdll_version.res $(__coredll___depname) $(__basedll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(ADVDLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\advdll_version.res
|
@@ -5316,7 +5325,7 @@ wxadv: $(____wxadv_namedll_DEP) $(____wxadv_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_GUI)" == "1" && "$(USE_MEDIA)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\mediadll_dummy.obj $(MEDIADLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\mediadll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\mediadll_dummy.obj $(MEDIADLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\mediadll_version.res $(__coredll___depname) $(__basedll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(MEDIADLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\mediadll_version.res
|
@@ -5336,7 +5345,7 @@ wxmedia: $(____wxmedia_namedll_DEP) $(____wxmedia_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_GUI)" == "1" && "$(USE_HTML)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\htmldll_dummy.obj $(HTMLDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\htmldll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\htmldll_dummy.obj $(HTMLDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\htmldll_version.res $(__coredll___depname) $(__basedll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(HTMLDLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\htmldll_version.res
|
@@ -5356,7 +5365,7 @@ wxhtml: $(____wxhtml_namedll_DEP) $(____wxhtml_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_GUI)" == "1" && "$(USE_WEBVIEW)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\webviewdll_dummy.obj $(WEBVIEWDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__coredll___depname) $(__basedll___depname) $(OBJS)\webviewdll_version.res
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\webviewdll_dummy.obj $(WEBVIEWDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(__coredll___depname) $(__basedll___depname) $(OBJS)\webviewdll_version.res
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(WEBVIEWDLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\webviewdll_version.res
|
@@ -5376,7 +5385,7 @@ wxwebview: $(____wxwebview_namedll_DEP) $(____wxwebview_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_GUI)" == "1" && "$(USE_QA)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\qadll_dummy.obj $(QADLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\qadll_version.res $(__coredll___depname) $(__basedll___depname) $(__xmldll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\qadll_dummy.obj $(QADLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\qadll_version.res $(__coredll___depname) $(__basedll___depname) $(__xmldll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(QADLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\qadll_version.res
|
@@ -5396,7 +5405,7 @@ wxqa: $(____wxqa_namedll_DEP) $(____wxqa_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1"
-$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\xmldll_dummy.obj $(XMLDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\xmldll_version.res $(__basedll___depname)
+$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\xmldll_dummy.obj $(XMLDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\xmldll_version.res $(__basedll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(XMLDLL_OBJECTS),$@,, wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\xmldll_version.res
|
@@ -5416,7 +5425,7 @@ wxxml: $(____wxxml_namedll_DEP) $(____wxxml_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_XRC)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\xrcdll_dummy.obj $(XRCDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\xrcdll_version.res $(__htmldll_library_link_DEP) $(__coredll___depname) $(__xmldll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\xrcdll_dummy.obj $(XRCDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\xrcdll_version.res $(__htmldll_library_link_DEP) $(__coredll___depname) $(__xmldll___depname) $(__basedll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(XRCDLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(__htmldll_library_link_LIBR) $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\xrcdll_version.res
|
@@ -5436,7 +5445,7 @@ wxxrc: $(____wxxrc_namedll_DEP) $(____wxxrc_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_AUI)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\auidll_dummy.obj $(AUIDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\auidll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\auidll_dummy.obj $(AUIDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\auidll_version.res $(__coredll___depname) $(__basedll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(AUIDLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\auidll_version.res
|
@@ -5456,7 +5465,7 @@ wxaui: $(____wxaui_namedll_DEP) $(____wxaui_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_RIBBON)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\ribbondll_dummy.obj $(RIBBONDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\ribbondll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\ribbondll_dummy.obj $(RIBBONDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\ribbondll_version.res $(__coredll___depname) $(__basedll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(RIBBONDLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\ribbondll_version.res
|
@@ -5476,7 +5485,7 @@ wxribbon: $(____wxribbon_namedll_DEP) $(____wxribbon_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_PROPGRID)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\propgriddll_dummy.obj $(PROPGRIDDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\propgriddll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\propgriddll_dummy.obj $(PROPGRIDDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\propgriddll_version.res $(__coredll___depname) $(__basedll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(PROPGRIDDLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\propgriddll_version.res
|
@@ -5496,7 +5505,7 @@ wxpropgrid: $(____wxpropgrid_namedll_DEP) $(____wxpropgrid_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_RICHTEXT)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\richtextdll_dummy.obj $(RICHTEXTDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\richtextdll_version.res $(__htmldll_library_link_DEP) $(__xmldll___depname) $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\richtextdll_dummy.obj $(RICHTEXTDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\richtextdll_version.res $(__htmldll_library_link_DEP) $(__xmldll___depname) $(__coredll___depname) $(__basedll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(RICHTEXTDLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(__htmldll_library_link_LIBR) $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\richtextdll_version.res
|
@@ -5516,7 +5525,7 @@ wxrichtext: $(____wxrichtext_namedll_DEP) $(____wxrichtext_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_STC)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\stcdll_dummy.obj $(STCDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxscintilla) $(OBJS)\stcdll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\stcdll_dummy.obj $(STCDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(__wxscintilla) $(OBJS)\stcdll_version.res $(__coredll___depname) $(__basedll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(STCDLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(LIBDIRNAME)\wxscintilla$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\stcdll_version.res
|
@@ -5536,7 +5545,7 @@ wxstc: $(____wxstc_namedll_DEP) $(____wxstc_namelib_DEP)
!endif
!if "$(SHARED)" == "1" && "$(USE_GUI)" == "1" && "$(USE_OPENGL)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\gldll_dummy.obj $(GLDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\gldll_version.res $(__basedll___depname) $(__coredll___depname) $(__monodll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\gldll_dummy.obj $(GLDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\gldll_version.res $(__basedll___depname) $(__coredll___depname) $(__monodll___depname)
ilink32 -Tpd -q -L$(BCCDIR)\lib -L$(BCCDIR)\lib\psdk $(__DEBUGINFO) -L$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @&&|
c0d32.obj $(GLDLL_OBJECTS),$@,, $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) ole2w32.lib oleacc.lib uxtheme.lib $(__WXLIBGLDEP_CORE_p) $(__WXLIBGLDEP_BASE_p) $(__WXLIB_MONO_p) import32.lib cw32$(__THREADSFLAG_14)$(__RUNTIME_LIBS_5).lib,, $(OBJS)\gldll_version.res
|
@@ -5580,7 +5589,7 @@ $(SETUPHDIR)\wx\msw: $(SETUPHDIR)\wx
if not exist $(SETUPHDIR)\wx\msw mkdir $(SETUPHDIR)\wx\msw
$(SETUPHDIR)\wx\msw\rcdefs.h: $(SETUPHDIR)\wx\msw ..\..\include\wx\msw\genrcdefs.h
- $(CPP) "..\..\include\wx\msw\genrcdefs.h" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
+ $(CPP) $(CPPFLAGS) "..\..\include\wx\msw\genrcdefs.h" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
build_cfg_file: $(SETUPHDIR)
@echo WXVER_MAJOR=3 >$(BUILD_CFG_FILE)
@@ -6895,9 +6904,6 @@ $(OBJS)\monodll_nativewin.obj: ..\..\src\msw\nativewin.cpp
$(OBJS)\monodll_msw_notebook.obj: ..\..\src\msw\notebook.cpp
$(CXX) -q -c -P -o$@ $(MONODLL_CXXFLAGS) ..\..\src\msw\notebook.cpp
-$(OBJS)\monodll_access.obj: ..\..\src\msw\ole\access.cpp
- $(CXX) -q -c -P -o$@ $(MONODLL_CXXFLAGS) ..\..\src\msw\ole\access.cpp
-
$(OBJS)\monodll_ownerdrw.obj: ..\..\src\msw\ownerdrw.cpp
$(CXX) -q -c -P -o$@ $(MONODLL_CXXFLAGS) ..\..\src\msw\ownerdrw.cpp
@@ -7933,6 +7939,11 @@ $(OBJS)\monodll_evtloop.obj: ..\..\src\msw\evtloop.cpp
$(CXX) -q -c -P -o$@ $(MONODLL_CXXFLAGS) ..\..\src\msw\evtloop.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\monodll_access.obj: ..\..\src\msw\ole\access.cpp
+ $(CXX) -q -c -P -o$@ $(MONODLL_CXXFLAGS) ..\..\src\msw\ole\access.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\monodll_clrpickerg.obj: ..\..\src\generic\clrpickerg.cpp
$(CXX) -q -c -P -o$@ $(MONODLL_CXXFLAGS) ..\..\src\generic\clrpickerg.cpp
@@ -7958,11 +7969,6 @@ $(OBJS)\monodll_prntdlgg.obj: ..\..\src\generic\prntdlgg.cpp
$(CXX) -q -c -P -o$@ $(MONODLL_CXXFLAGS) ..\..\src\generic\prntdlgg.cpp
!endif
-!if "$(USE_GUI)" == "1"
-$(OBJS)\monodll_animateg.obj: ..\..\src\generic\animateg.cpp
- $(CXX) -q -c -P -o$@ $(MONODLL_CXXFLAGS) ..\..\src\generic\animateg.cpp
-!endif
-
!if "$(USE_GUI)" == "1"
$(OBJS)\monodll_activityindicator.obj: ..\..\src\generic\activityindicator.cpp
$(CXX) -q -c -P -o$@ $(MONODLL_CXXFLAGS) ..\..\src\generic\activityindicator.cpp
@@ -8608,6 +8614,11 @@ $(OBJS)\monodll_xpmdecod.obj: ..\..\src\common\xpmdecod.cpp
$(CXX) -q -c -P -o$@ $(MONODLL_CXXFLAGS) ..\..\src\common\xpmdecod.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\monodll_animateg.obj: ..\..\src\generic\animateg.cpp
+ $(CXX) -q -c -P -o$@ $(MONODLL_CXXFLAGS) ..\..\src\generic\animateg.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\monodll_busyinfo.obj: ..\..\src\generic\busyinfo.cpp
$(CXX) -q -c -P -o$@ $(MONODLL_CXXFLAGS) ..\..\src\generic\busyinfo.cpp
@@ -8974,7 +8985,7 @@ $(OBJS)\monodll_rowheightcache.obj: ..\..\src\generic\rowheightcache.cpp
!endif
$(OBJS)\monodll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -i..\..\src\stc\scintilla\include -i..\..\src\stc\scintilla\lexlib -i..\..\src\stc\scintilla\src -d__WX__ -dSCI_LEXER -dNO_CXX11_REGEX -dLINK_LEXERS -dwxUSE_BASE=1 -dWXMAKINGDLL ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\stc\scintilla\include -i..\..\src\stc\scintilla\lexlib -i..\..\src\stc\scintilla\src -d__WX__ -dSCI_LEXER -dNO_CXX11_REGEX -dLINK_LEXERS -dwxUSE_BASE=1 -dWXMAKINGDLL ..\..\src\msw\version.rc
$(OBJS)\monolib_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(MONOLIB_CXXFLAGS) -H ..\..\src\common\dummy.cpp
@@ -9450,9 +9461,6 @@ $(OBJS)\monolib_nativewin.obj: ..\..\src\msw\nativewin.cpp
$(OBJS)\monolib_msw_notebook.obj: ..\..\src\msw\notebook.cpp
$(CXX) -q -c -P -o$@ $(MONOLIB_CXXFLAGS) ..\..\src\msw\notebook.cpp
-$(OBJS)\monolib_access.obj: ..\..\src\msw\ole\access.cpp
- $(CXX) -q -c -P -o$@ $(MONOLIB_CXXFLAGS) ..\..\src\msw\ole\access.cpp
-
$(OBJS)\monolib_ownerdrw.obj: ..\..\src\msw\ownerdrw.cpp
$(CXX) -q -c -P -o$@ $(MONOLIB_CXXFLAGS) ..\..\src\msw\ownerdrw.cpp
@@ -10488,6 +10496,11 @@ $(OBJS)\monolib_evtloop.obj: ..\..\src\msw\evtloop.cpp
$(CXX) -q -c -P -o$@ $(MONOLIB_CXXFLAGS) ..\..\src\msw\evtloop.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\monolib_access.obj: ..\..\src\msw\ole\access.cpp
+ $(CXX) -q -c -P -o$@ $(MONOLIB_CXXFLAGS) ..\..\src\msw\ole\access.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\monolib_clrpickerg.obj: ..\..\src\generic\clrpickerg.cpp
$(CXX) -q -c -P -o$@ $(MONOLIB_CXXFLAGS) ..\..\src\generic\clrpickerg.cpp
@@ -10513,11 +10526,6 @@ $(OBJS)\monolib_prntdlgg.obj: ..\..\src\generic\prntdlgg.cpp
$(CXX) -q -c -P -o$@ $(MONOLIB_CXXFLAGS) ..\..\src\generic\prntdlgg.cpp
!endif
-!if "$(USE_GUI)" == "1"
-$(OBJS)\monolib_animateg.obj: ..\..\src\generic\animateg.cpp
- $(CXX) -q -c -P -o$@ $(MONOLIB_CXXFLAGS) ..\..\src\generic\animateg.cpp
-!endif
-
!if "$(USE_GUI)" == "1"
$(OBJS)\monolib_activityindicator.obj: ..\..\src\generic\activityindicator.cpp
$(CXX) -q -c -P -o$@ $(MONOLIB_CXXFLAGS) ..\..\src\generic\activityindicator.cpp
@@ -11163,6 +11171,11 @@ $(OBJS)\monolib_xpmdecod.obj: ..\..\src\common\xpmdecod.cpp
$(CXX) -q -c -P -o$@ $(MONOLIB_CXXFLAGS) ..\..\src\common\xpmdecod.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\monolib_animateg.obj: ..\..\src\generic\animateg.cpp
+ $(CXX) -q -c -P -o$@ $(MONOLIB_CXXFLAGS) ..\..\src\generic\animateg.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\monolib_busyinfo.obj: ..\..\src\generic\busyinfo.cpp
$(CXX) -q -c -P -o$@ $(MONOLIB_CXXFLAGS) ..\..\src\generic\busyinfo.cpp
@@ -11532,7 +11545,7 @@ $(OBJS)\basedll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(BASEDLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\basedll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_GUI=0 -dWXMAKINGDLL_BASE -dwxUSE_BASE=1 ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dwxUSE_GUI=0 -dWXMAKINGDLL_BASE -dwxUSE_BASE=1 ..\..\src\msw\version.rc
$(OBJS)\basedll_any.obj: ..\..\src\common\any.cpp
$(CXX) -q -c -P -o$@ $(BASEDLL_CXXFLAGS) ..\..\src\common\any.cpp
@@ -12225,7 +12238,7 @@ $(OBJS)\netdll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(NETDLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\netdll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_GUI=0 -dWXUSINGDLL -dWXMAKINGDLL_NET ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dwxUSE_GUI=0 -dWXUSINGDLL -dWXMAKINGDLL_NET ..\..\src\msw\version.rc
$(OBJS)\netdll_fs_inet.obj: ..\..\src\common\fs_inet.cpp
$(CXX) -q -c -P -o$@ $(NETDLL_CXXFLAGS) ..\..\src\common\fs_inet.cpp
@@ -12306,7 +12319,7 @@ $(OBJS)\coredll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\coredll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dWXUSINGDLL -dWXMAKINGDLL_CORE -dwxUSE_BASE=0 ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dWXUSINGDLL -dWXMAKINGDLL_CORE -dwxUSE_BASE=0 ..\..\src\msw\version.rc
$(OBJS)\coredll_event.obj: ..\..\src\common\event.cpp
$(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) ..\..\src\common\event.cpp
@@ -12419,9 +12432,6 @@ $(OBJS)\coredll_nativewin.obj: ..\..\src\msw\nativewin.cpp
$(OBJS)\coredll_msw_notebook.obj: ..\..\src\msw\notebook.cpp
$(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) ..\..\src\msw\notebook.cpp
-$(OBJS)\coredll_access.obj: ..\..\src\msw\ole\access.cpp
- $(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) ..\..\src\msw\ole\access.cpp
-
$(OBJS)\coredll_ownerdrw.obj: ..\..\src\msw\ownerdrw.cpp
$(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) ..\..\src\msw\ownerdrw.cpp
@@ -12998,6 +13008,11 @@ $(OBJS)\coredll_evtloop.obj: ..\..\src\msw\evtloop.cpp
$(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) ..\..\src\msw\evtloop.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\coredll_access.obj: ..\..\src\msw\ole\access.cpp
+ $(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) ..\..\src\msw\ole\access.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\coredll_clrpickerg.obj: ..\..\src\generic\clrpickerg.cpp
$(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) ..\..\src\generic\clrpickerg.cpp
@@ -13023,11 +13038,6 @@ $(OBJS)\coredll_prntdlgg.obj: ..\..\src\generic\prntdlgg.cpp
$(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) ..\..\src\generic\prntdlgg.cpp
!endif
-!if "$(USE_GUI)" == "1"
-$(OBJS)\coredll_animateg.obj: ..\..\src\generic\animateg.cpp
- $(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) ..\..\src\generic\animateg.cpp
-!endif
-
!if "$(USE_GUI)" == "1"
$(OBJS)\coredll_activityindicator.obj: ..\..\src\generic\activityindicator.cpp
$(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) ..\..\src\generic\activityindicator.cpp
@@ -13673,6 +13683,11 @@ $(OBJS)\coredll_xpmdecod.obj: ..\..\src\common\xpmdecod.cpp
$(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) ..\..\src\common\xpmdecod.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\coredll_animateg.obj: ..\..\src\generic\animateg.cpp
+ $(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) ..\..\src\generic\animateg.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\coredll_busyinfo.obj: ..\..\src\generic\busyinfo.cpp
$(CXX) -q -c -P -o$@ $(COREDLL_CXXFLAGS) ..\..\src\generic\busyinfo.cpp
@@ -14152,9 +14167,6 @@ $(OBJS)\corelib_nativewin.obj: ..\..\src\msw\nativewin.cpp
$(OBJS)\corelib_msw_notebook.obj: ..\..\src\msw\notebook.cpp
$(CXX) -q -c -P -o$@ $(CORELIB_CXXFLAGS) ..\..\src\msw\notebook.cpp
-$(OBJS)\corelib_access.obj: ..\..\src\msw\ole\access.cpp
- $(CXX) -q -c -P -o$@ $(CORELIB_CXXFLAGS) ..\..\src\msw\ole\access.cpp
-
$(OBJS)\corelib_ownerdrw.obj: ..\..\src\msw\ownerdrw.cpp
$(CXX) -q -c -P -o$@ $(CORELIB_CXXFLAGS) ..\..\src\msw\ownerdrw.cpp
@@ -14731,6 +14743,11 @@ $(OBJS)\corelib_evtloop.obj: ..\..\src\msw\evtloop.cpp
$(CXX) -q -c -P -o$@ $(CORELIB_CXXFLAGS) ..\..\src\msw\evtloop.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\corelib_access.obj: ..\..\src\msw\ole\access.cpp
+ $(CXX) -q -c -P -o$@ $(CORELIB_CXXFLAGS) ..\..\src\msw\ole\access.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\corelib_clrpickerg.obj: ..\..\src\generic\clrpickerg.cpp
$(CXX) -q -c -P -o$@ $(CORELIB_CXXFLAGS) ..\..\src\generic\clrpickerg.cpp
@@ -14756,11 +14773,6 @@ $(OBJS)\corelib_prntdlgg.obj: ..\..\src\generic\prntdlgg.cpp
$(CXX) -q -c -P -o$@ $(CORELIB_CXXFLAGS) ..\..\src\generic\prntdlgg.cpp
!endif
-!if "$(USE_GUI)" == "1"
-$(OBJS)\corelib_animateg.obj: ..\..\src\generic\animateg.cpp
- $(CXX) -q -c -P -o$@ $(CORELIB_CXXFLAGS) ..\..\src\generic\animateg.cpp
-!endif
-
!if "$(USE_GUI)" == "1"
$(OBJS)\corelib_activityindicator.obj: ..\..\src\generic\activityindicator.cpp
$(CXX) -q -c -P -o$@ $(CORELIB_CXXFLAGS) ..\..\src\generic\activityindicator.cpp
@@ -15406,6 +15418,11 @@ $(OBJS)\corelib_xpmdecod.obj: ..\..\src\common\xpmdecod.cpp
$(CXX) -q -c -P -o$@ $(CORELIB_CXXFLAGS) ..\..\src\common\xpmdecod.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\corelib_animateg.obj: ..\..\src\generic\animateg.cpp
+ $(CXX) -q -c -P -o$@ $(CORELIB_CXXFLAGS) ..\..\src\generic\animateg.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\corelib_busyinfo.obj: ..\..\src\generic\busyinfo.cpp
$(CXX) -q -c -P -o$@ $(CORELIB_CXXFLAGS) ..\..\src\generic\busyinfo.cpp
@@ -15775,7 +15792,7 @@ $(OBJS)\advdll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(ADVDLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\advdll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dWXUSINGDLL -dWXMAKINGDLL_ADV ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dWXUSINGDLL -dWXMAKINGDLL_ADV ..\..\src\msw\version.rc
$(OBJS)\advlib_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(ADVLIB_CXXFLAGS) -H ..\..\src\common\dummy.cpp
@@ -15784,7 +15801,7 @@ $(OBJS)\mediadll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(MEDIADLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\mediadll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dWXUSINGDLL -dWXMAKINGDLL_MEDIA ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dWXUSINGDLL -dWXMAKINGDLL_MEDIA ..\..\src\msw\version.rc
$(OBJS)\mediadll_mediactrlcmn.obj: ..\..\src\common\mediactrlcmn.cpp
$(CXX) -q -c -P -o$@ $(MEDIADLL_CXXFLAGS) ..\..\src\common\mediactrlcmn.cpp
@@ -15817,7 +15834,7 @@ $(OBJS)\htmldll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(HTMLDLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\htmldll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dWXUSINGDLL -dWXMAKINGDLL_HTML ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dWXUSINGDLL -dWXMAKINGDLL_HTML ..\..\src\msw\version.rc
$(OBJS)\htmldll_helpbest.obj: ..\..\src\msw\helpbest.cpp
$(CXX) -q -c -P -o$@ $(HTMLDLL_CXXFLAGS) ..\..\src\msw\helpbest.cpp
@@ -16003,7 +16020,7 @@ $(OBJS)\webviewdll_webviewfshandler.obj: ..\..\src\common\webviewfshandler.cpp
$(CXX) -q -c -P -o$@ $(WEBVIEWDLL_CXXFLAGS) ..\..\src\common\webviewfshandler.cpp
$(OBJS)\webviewdll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dWXUSINGDLL -dWXMAKINGDLL_WEBVIEW -i..\..\3rdparty\webview2\build\native\include ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dWXUSINGDLL -dWXMAKINGDLL_WEBVIEW -i..\..\3rdparty\webview2\build\native\include ..\..\src\msw\version.rc
$(OBJS)\webviewlib_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(WEBVIEWLIB_CXXFLAGS) -H ..\..\src\common\dummy.cpp
@@ -16027,7 +16044,7 @@ $(OBJS)\qadll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(QADLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\qadll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dWXUSINGDLL -dWXMAKINGDLL_QA ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dWXUSINGDLL -dWXMAKINGDLL_QA ..\..\src\msw\version.rc
$(OBJS)\qadll_debugrpt.obj: ..\..\src\common\debugrpt.cpp
$(CXX) -q -c -P -o$@ $(QADLL_CXXFLAGS) ..\..\src\common\debugrpt.cpp
@@ -16048,7 +16065,7 @@ $(OBJS)\xmldll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(XMLDLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\xmldll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_GUI=0 -dWXUSINGDLL -dWXMAKINGDLL_XML ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dwxUSE_GUI=0 -dWXUSINGDLL -dWXMAKINGDLL_XML ..\..\src\msw\version.rc
$(OBJS)\xmldll_xml.obj: ..\..\src\xml\xml.cpp
$(CXX) -q -c -P -o$@ $(XMLDLL_CXXFLAGS) ..\..\src\xml\xml.cpp
@@ -16069,7 +16086,7 @@ $(OBJS)\xrcdll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(XRCDLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\xrcdll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dWXUSINGDLL -dWXMAKINGDLL_XRC ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dWXUSINGDLL -dWXMAKINGDLL_XRC ..\..\src\msw\version.rc
$(OBJS)\xrcdll_xh_activityindicator.obj: ..\..\src\xrc\xh_activityindicator.cpp
$(CXX) -q -c -P -o$@ $(XRCDLL_CXXFLAGS) ..\..\src\xrc\xh_activityindicator.cpp
@@ -16492,7 +16509,7 @@ $(OBJS)\auidll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(AUIDLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\auidll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dWXUSINGDLL -dWXMAKINGDLL_AUI ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dWXUSINGDLL -dWXMAKINGDLL_AUI ..\..\src\msw\version.rc
$(OBJS)\auidll_framemanager.obj: ..\..\src\aui\framemanager.cpp
$(CXX) -q -c -P -o$@ $(AUIDLL_CXXFLAGS) ..\..\src\aui\framemanager.cpp
@@ -16567,7 +16584,7 @@ $(OBJS)\ribbondll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(RIBBONDLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\ribbondll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dWXUSINGDLL -dWXMAKINGDLL_RIBBON ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dWXUSINGDLL -dWXMAKINGDLL_RIBBON ..\..\src\msw\version.rc
$(OBJS)\ribbondll_art_internal.obj: ..\..\src\ribbon\art_internal.cpp
$(CXX) -q -c -P -o$@ $(RIBBONDLL_CXXFLAGS) ..\..\src\ribbon\art_internal.cpp
@@ -16642,7 +16659,7 @@ $(OBJS)\propgriddll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(PROPGRIDDLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\propgriddll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dWXUSINGDLL -dWXMAKINGDLL_PROPGRID ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dWXUSINGDLL -dWXMAKINGDLL_PROPGRID ..\..\src\msw\version.rc
$(OBJS)\propgriddll_advprops.obj: ..\..\src\propgrid\advprops.cpp
$(CXX) -q -c -P -o$@ $(PROPGRIDDLL_CXXFLAGS) ..\..\src\propgrid\advprops.cpp
@@ -16699,7 +16716,7 @@ $(OBJS)\richtextdll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(RICHTEXTDLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\richtextdll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dWXUSINGDLL -dWXMAKINGDLL_RICHTEXT ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dWXUSINGDLL -dWXMAKINGDLL_RICHTEXT ..\..\src\msw\version.rc
$(OBJS)\richtextdll_richtextbuffer.obj: ..\..\src\richtext\richtextbuffer.cpp
$(CXX) -q -c -P -o$@ $(RICHTEXTDLL_CXXFLAGS) ..\..\src\richtext\richtextbuffer.cpp
@@ -16774,7 +16791,7 @@ $(OBJS)\stcdll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(STCDLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\stcdll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -i..\..\src\stc\scintilla\include -i..\..\src\stc\scintilla\lexlib -i..\..\src\stc\scintilla\src -d__WX__ -dSCI_LEXER -dNO_CXX11_REGEX -dLINK_LEXERS -dWXUSINGDLL -dWXMAKINGDLL_STC ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\stc\scintilla\include -i..\..\src\stc\scintilla\lexlib -i..\..\src\stc\scintilla\src -d__WX__ -dSCI_LEXER -dNO_CXX11_REGEX -dLINK_LEXERS -dWXUSINGDLL -dWXMAKINGDLL_STC ..\..\src\msw\version.rc
$(OBJS)\stcdll_stc.obj: ..\..\src\stc\stc.cpp
$(CXX) -q -c -P -o$@ $(STCDLL_CXXFLAGS) ..\..\src\stc\stc.cpp
@@ -16801,7 +16818,7 @@ $(OBJS)\gldll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) -q -c -P -o$@ $(GLDLL_CXXFLAGS) -H ..\..\src\common\dummy.cpp
$(OBJS)\gldll_version.res: ..\..\src\msw\version.rc
- brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dWXUSINGDLL -dWXMAKINGDLL_GL ..\..\src\msw\version.rc
+ brcc32 -32 -r -fo$@ -i$(BCCDIR)\include -i..\..\src\tiff\libtiff -i..\..\src\jpeg -i..\..\src\png -i..\..\src\zlib -i..\..\src\regex -i..\..\src\expat\expat\lib -dwxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) -d__WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) -i$(SETUPHDIR) -i..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) -dWXBUILDING -dWXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG) -i$(BCCDIR)\include\windows\sdk -dWXUSINGDLL -dWXMAKINGDLL_GL ..\..\src\msw\version.rc
$(OBJS)\gldll_glcmn.obj: ..\..\src\common\glcmn.cpp
$(CXX) -q -c -P -o$@ $(GLDLL_CXXFLAGS) ..\..\src\common\glcmn.cpp
diff --git a/build/msw/makefile.gcc b/build/msw/makefile.gcc
index c1c27dcc5f..43c628c6dc 100644
--- a/build/msw/makefile.gcc
+++ b/build/msw/makefile.gcc
@@ -335,23 +335,23 @@ WXSCINTILLA_OBJECTS = \
$(OBJS)\wxscintilla_UniConversion.o \
$(OBJS)\wxscintilla_ViewStyle.o \
$(OBJS)\wxscintilla_XPM.o
-MONODLL_CFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+MONODLL_CFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
$(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib \
-I..\..\src\stc\scintilla\include -I..\..\src\stc\scintilla\lexlib \
-I..\..\src\stc\scintilla\src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
-DLINK_LEXERS -DwxUSE_BASE=1 -DWXMAKINGDLL $(CPPFLAGS) $(CFLAGS)
-MONODLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+MONODLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
-I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+ -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
+ $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
-I..\..\src\stc\scintilla\include -I..\..\src\stc\scintilla\lexlib \
-I..\..\src\stc\scintilla\src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
-DLINK_LEXERS -DwxUSE_BASE=1 -DWXMAKINGDLL $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
@@ -488,23 +488,23 @@ MONODLL_OBJECTS = \
$(OBJS)\monodll_xml.o \
$(OBJS)\monodll_xtixml.o \
$(OBJS)\monodll_version_rc.o
-MONOLIB_CFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+MONOLIB_CFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
$(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib \
-I..\..\src\stc\scintilla\include -I..\..\src\stc\scintilla\lexlib \
-I..\..\src\stc\scintilla\src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
-DLINK_LEXERS -DwxUSE_BASE=1 $(CPPFLAGS) $(CFLAGS)
-MONOLIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+MONOLIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
-I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+ -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
+ $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
-I..\..\src\stc\scintilla\include -I..\..\src\stc\scintilla\lexlib \
-I..\..\src\stc\scintilla\src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
-DLINK_LEXERS -DwxUSE_BASE=1 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
@@ -640,23 +640,23 @@ MONOLIB_OBJECTS = \
$(____MONOLIB_GUI_SRC_FILENAMES_1_OBJECTS) \
$(OBJS)\monolib_xml.o \
$(OBJS)\monolib_xtixml.o
-BASEDLL_CFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
- -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib -DwxUSE_GUI=0 \
+BASEDLL_CFLAGS = -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DwxUSE_GUI=0 \
-DWXMAKINGDLL_BASE -DwxUSE_BASE=1 $(CPPFLAGS) $(CFLAGS)
-BASEDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -DwxUSE_GUI=0 -DWXMAKINGDLL_BASE -DwxUSE_BASE=1 $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
+BASEDLL_CXXFLAGS = -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DwxUSE_GUI=0 \
+ -DWXMAKINGDLL_BASE -DwxUSE_BASE=1 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
+ -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
BASEDLL_OBJECTS = \
$(OBJS)\basedll_dummy.o \
$(OBJS)\basedll_version_rc.o \
@@ -774,23 +774,23 @@ BASEDLL_OBJECTS = \
$(OBJS)\basedll_utilscmn.o \
$(OBJS)\basedll_main.o \
$(OBJS)\basedll_volume.o
-BASELIB_CFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
- -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib -DwxUSE_GUI=0 -DwxUSE_BASE=1 \
- $(CPPFLAGS) $(CFLAGS)
-BASELIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -DwxUSE_GUI=0 -DwxUSE_BASE=1 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
+BASELIB_CFLAGS = -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DwxUSE_GUI=0 \
+ -DwxUSE_BASE=1 $(CPPFLAGS) $(CFLAGS)
+BASELIB_CXXFLAGS = -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DwxUSE_GUI=0 \
+ -DwxUSE_BASE=1 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy \
+ $(CPPFLAGS) $(CXXFLAGS)
BASELIB_OBJECTS = \
$(OBJS)\baselib_dummy.o \
$(OBJS)\baselib_any.o \
@@ -907,15 +907,15 @@ BASELIB_OBJECTS = \
$(OBJS)\baselib_utilscmn.o \
$(OBJS)\baselib_main.o \
$(OBJS)\baselib_volume.o
-NETDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
- -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib -DwxUSE_GUI=0 -DWXUSINGDLL \
- -DWXMAKINGDLL_NET $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy \
- $(CPPFLAGS) $(CXXFLAGS)
+NETDLL_CXXFLAGS = -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DwxUSE_GUI=0 \
+ -DWXUSINGDLL -DWXMAKINGDLL_NET $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
+ -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
NETDLL_OBJECTS = \
$(OBJS)\netdll_dummy.o \
$(OBJS)\netdll_version_rc.o \
@@ -931,14 +931,15 @@ NETDLL_OBJECTS = \
$(OBJS)\netdll_url.o \
$(OBJS)\netdll_sockmsw.o \
$(OBJS)\netdll_urlmsw.o
-NETLIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
- -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib -DwxUSE_GUI=0 $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
+NETLIB_CXXFLAGS = -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DwxUSE_GUI=0 \
+ $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
+ $(CXXFLAGS)
NETLIB_OBJECTS = \
$(OBJS)\netlib_dummy.o \
$(OBJS)\netlib_fs_inet.o \
@@ -953,13 +954,13 @@ NETLIB_OBJECTS = \
$(OBJS)\netlib_url.o \
$(OBJS)\netlib_sockmsw.o \
$(OBJS)\netlib_urlmsw.o
-COREDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
+COREDLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+ -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
+ $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DWXUSINGDLL \
-DWXMAKINGDLL_CORE -DwxUSE_BASE=0 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
COREDLL_OBJECTS = \
@@ -972,15 +973,15 @@ COREDLL_OBJECTS = \
$(OBJS)\coredll_main.o \
$(OBJS)\coredll_volume.o \
$(____CORE_SRC_FILENAMES_2_OBJECTS)
-CORELIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+CORELIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
-I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- -DwxUSE_BASE=0 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+ -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
+ $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DwxUSE_BASE=0 \
+ $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
+ $(CXXFLAGS)
CORELIB_OBJECTS = \
$(OBJS)\corelib_dummy.o \
$(OBJS)\corelib_event.o \
@@ -990,35 +991,35 @@ CORELIB_OBJECTS = \
$(OBJS)\corelib_main.o \
$(OBJS)\corelib_volume.o \
$(____CORE_SRC_FILENAMES_3_OBJECTS)
-ADVDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+ADVDLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DWXUSINGDLL \
-DWXMAKINGDLL_ADV $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy \
$(CPPFLAGS) $(CXXFLAGS)
ADVDLL_OBJECTS = \
$(OBJS)\advdll_dummy.o \
$(OBJS)\advdll_version_rc.o
-ADVLIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+ADVLIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib $(__RTTIFLAG) \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING $(__RTTIFLAG) \
$(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
ADVLIB_OBJECTS = \
$(OBJS)\advlib_dummy.o
-MEDIADLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
+MEDIADLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+ -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
+ $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DWXUSINGDLL \
-DWXMAKINGDLL_MEDIA $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
MEDIADLL_OBJECTS = \
@@ -1028,28 +1029,27 @@ MEDIADLL_OBJECTS = \
$(OBJS)\mediadll_mediactrl_am.o \
$(OBJS)\mediadll_mediactrl_wmp10.o \
$(OBJS)\mediadll_mediactrl_qt.o
-MEDIALIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+MEDIALIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
-I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
- $(CXXFLAGS)
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+ -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
+ $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
MEDIALIB_OBJECTS = \
$(OBJS)\medialib_dummy.o \
$(OBJS)\medialib_mediactrlcmn.o \
$(OBJS)\medialib_mediactrl_am.o \
$(OBJS)\medialib_mediactrl_wmp10.o \
$(OBJS)\medialib_mediactrl_qt.o
-HTMLDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
+HTMLDLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+ -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
+ $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DWXUSINGDLL \
-DWXMAKINGDLL_HTML $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy \
$(CPPFLAGS) $(CXXFLAGS)
HTMLDLL_OBJECTS = \
@@ -1082,15 +1082,14 @@ HTMLDLL_OBJECTS = \
$(OBJS)\htmldll_styleparams.o \
$(OBJS)\htmldll_winpars.o \
$(OBJS)\htmldll_htmllbox.o
-HTMLLIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+HTMLLIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
-I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
- $(CXXFLAGS)
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+ -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
+ $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
HTMLLIB_OBJECTS = \
$(OBJS)\htmllib_dummy.o \
$(OBJS)\htmllib_helpbest.o \
@@ -1120,13 +1119,14 @@ HTMLLIB_OBJECTS = \
$(OBJS)\htmllib_styleparams.o \
$(OBJS)\htmllib_winpars.o \
$(OBJS)\htmllib_htmllbox.o
-WEBVIEWDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
+WEBVIEWDLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg \
+ -I..\..\src\png -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DWXUSINGDLL \
-DWXMAKINGDLL_WEBVIEW -I..\..\3rdparty\webview2\build\native\include \
$(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
$(CXXFLAGS)
@@ -1138,13 +1138,14 @@ WEBVIEWDLL_OBJECTS = \
$(OBJS)\webviewdll_webviewarchivehandler.o \
$(OBJS)\webviewdll_webviewfshandler.o \
$(OBJS)\webviewdll_version_rc.o
-WEBVIEWLIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+WEBVIEWLIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg \
+ -I..\..\src\png -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
-I..\..\3rdparty\webview2\build\native\include $(__RTTIFLAG) \
$(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
WEBVIEWLIB_OBJECTS = \
@@ -1154,65 +1155,66 @@ WEBVIEWLIB_OBJECTS = \
$(OBJS)\webviewlib_webview.o \
$(OBJS)\webviewlib_webviewarchivehandler.o \
$(OBJS)\webviewlib_webviewfshandler.o
-QADLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+QADLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL -DWXMAKINGDLL_QA \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
- $(CXXFLAGS)
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DWXUSINGDLL \
+ -DWXMAKINGDLL_QA $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy \
+ $(CPPFLAGS) $(CXXFLAGS)
QADLL_OBJECTS = \
$(OBJS)\qadll_dummy.o \
$(OBJS)\qadll_version_rc.o \
$(OBJS)\qadll_debugrpt.o \
$(OBJS)\qadll_dbgrptg.o
-QALIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+QALIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib $(__RTTIFLAG) \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING $(__RTTIFLAG) \
$(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
QALIB_OBJECTS = \
$(OBJS)\qalib_dummy.o \
$(OBJS)\qalib_debugrpt.o \
$(OBJS)\qalib_dbgrptg.o
-XMLDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
- -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib -DwxUSE_GUI=0 -DWXUSINGDLL \
- -DWXMAKINGDLL_XML $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy \
- $(CPPFLAGS) $(CXXFLAGS)
+XMLDLL_CXXFLAGS = -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DwxUSE_GUI=0 \
+ -DWXUSINGDLL -DWXMAKINGDLL_XML $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
+ -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
XMLDLL_OBJECTS = \
$(OBJS)\xmldll_dummy.o \
$(OBJS)\xmldll_version_rc.o \
$(OBJS)\xmldll_xml.o \
$(OBJS)\xmldll_xtixml.o
-XMLLIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
- -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib -DwxUSE_GUI=0 $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
+XMLLIB_CXXFLAGS = -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DwxUSE_GUI=0 \
+ $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
+ $(CXXFLAGS)
XMLLIB_OBJECTS = \
$(OBJS)\xmllib_dummy.o \
$(OBJS)\xmllib_xml.o \
$(OBJS)\xmllib_xtixml.o
-XRCDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+XRCDLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DWXUSINGDLL \
-DWXMAKINGDLL_XRC $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy \
$(CPPFLAGS) $(CXXFLAGS)
XRCDLL_OBJECTS = \
@@ -1287,13 +1289,13 @@ XRCDLL_OBJECTS = \
$(OBJS)\xrcdll_xmlres.o \
$(OBJS)\xrcdll_xmladv.o \
$(OBJS)\xrcdll_xmlrsall.o
-XRCLIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+XRCLIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib $(__RTTIFLAG) \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING $(__RTTIFLAG) \
$(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
XRCLIB_OBJECTS = \
$(OBJS)\xrclib_dummy.o \
@@ -1366,13 +1368,13 @@ XRCLIB_OBJECTS = \
$(OBJS)\xrclib_xmlres.o \
$(OBJS)\xrclib_xmladv.o \
$(OBJS)\xrclib_xmlrsall.o
-AUIDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+AUIDLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DWXUSINGDLL \
-DWXMAKINGDLL_AUI $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy \
$(CPPFLAGS) $(CXXFLAGS)
AUIDLL_OBJECTS = \
@@ -1389,13 +1391,13 @@ AUIDLL_OBJECTS = \
$(OBJS)\auidll_xh_auitoolb.o \
$(OBJS)\auidll_tabartmsw.o \
$(OBJS)\auidll_barartmsw.o
-AUILIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+AUILIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib $(__RTTIFLAG) \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING $(__RTTIFLAG) \
$(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
AUILIB_OBJECTS = \
$(OBJS)\auilib_dummy.o \
@@ -1410,13 +1412,13 @@ AUILIB_OBJECTS = \
$(OBJS)\auilib_xh_auitoolb.o \
$(OBJS)\auilib_tabartmsw.o \
$(OBJS)\auilib_barartmsw.o
-RIBBONDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
+RIBBONDLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+ -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
+ $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DWXUSINGDLL \
-DWXMAKINGDLL_RIBBON $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
RIBBONDLL_OBJECTS = \
@@ -1433,15 +1435,14 @@ RIBBONDLL_OBJECTS = \
$(OBJS)\ribbondll_panel.o \
$(OBJS)\ribbondll_toolbar.o \
$(OBJS)\ribbondll_xh_ribbon.o
-RIBBONLIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+RIBBONLIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
-I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
- $(CXXFLAGS)
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+ -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
+ $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
RIBBONLIB_OBJECTS = \
$(OBJS)\ribbonlib_dummy.o \
$(OBJS)\ribbonlib_art_internal.o \
@@ -1455,13 +1456,14 @@ RIBBONLIB_OBJECTS = \
$(OBJS)\ribbonlib_panel.o \
$(OBJS)\ribbonlib_toolbar.o \
$(OBJS)\ribbonlib_xh_ribbon.o
-PROPGRIDDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
+PROPGRIDDLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg \
+ -I..\..\src\png -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DWXUSINGDLL \
-DWXMAKINGDLL_PROPGRID $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
PROPGRIDDLL_OBJECTS = \
@@ -1475,15 +1477,15 @@ PROPGRIDDLL_OBJECTS = \
$(OBJS)\propgriddll_propgridiface.o \
$(OBJS)\propgriddll_propgridpagestate.o \
$(OBJS)\propgriddll_props.o
-PROPGRIDLIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
- $(CXXFLAGS)
+PROPGRIDLIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg \
+ -I..\..\src\png -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
PROPGRIDLIB_OBJECTS = \
$(OBJS)\propgridlib_dummy.o \
$(OBJS)\propgridlib_advprops.o \
@@ -1494,13 +1496,14 @@ PROPGRIDLIB_OBJECTS = \
$(OBJS)\propgridlib_propgridiface.o \
$(OBJS)\propgridlib_propgridpagestate.o \
$(OBJS)\propgridlib_props.o
-RICHTEXTDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL \
+RICHTEXTDLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg \
+ -I..\..\src\png -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DWXUSINGDLL \
-DWXMAKINGDLL_RICHTEXT $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
-Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
RICHTEXTDLL_OBJECTS = \
@@ -1517,15 +1520,15 @@ RICHTEXTDLL_OBJECTS = \
$(OBJS)\richtextdll_richtextsymboldlg.o \
$(OBJS)\richtextdll_richtextxml.o \
$(OBJS)\richtextdll_xh_richtext.o
-RICHTEXTLIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) \
- $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) \
- $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) \
- $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) \
- -I$(SETUPHDIR) -I..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall \
- -DWXBUILDING -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
- -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
- $(CXXFLAGS)
+RICHTEXTLIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg \
+ -I..\..\src\png -I..\..\src\zlib -I..\..\src\regex \
+ -I..\..\src\expat\expat\lib $(__DEBUGINFO) $(__OPTIMIZEFLAG) \
+ $(__THREADSFLAG) $(GCCFLAGS) -DHAVE_W32API_H -D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
RICHTEXTLIB_OBJECTS = \
$(OBJS)\richtextlib_dummy.o \
$(OBJS)\richtextlib_richtextbuffer.o \
@@ -1539,13 +1542,13 @@ RICHTEXTLIB_OBJECTS = \
$(OBJS)\richtextlib_richtextsymboldlg.o \
$(OBJS)\richtextlib_richtextxml.o \
$(OBJS)\richtextlib_xh_richtext.o
-STCDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+STCDLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
$(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib \
-I..\..\src\stc\scintilla\include -I..\..\src\stc\scintilla\lexlib \
-I..\..\src\stc\scintilla\src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
-DLINK_LEXERS -DWXUSINGDLL -DWXMAKINGDLL_STC $(__RTTIFLAG) \
@@ -1556,13 +1559,13 @@ STCDLL_OBJECTS = \
$(OBJS)\stcdll_stc.o \
$(OBJS)\stcdll_PlatWX.o \
$(OBJS)\stcdll_ScintillaWX.o
-STCLIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+STCLIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
$(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib \
-I..\..\src\stc\scintilla\include -I..\..\src\stc\scintilla\lexlib \
-I..\..\src\stc\scintilla\src -D__WX__ -DSCI_LEXER -DNO_CXX11_REGEX \
-DLINK_LEXERS $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy \
@@ -1572,27 +1575,27 @@ STCLIB_OBJECTS = \
$(OBJS)\stclib_stc.o \
$(OBJS)\stclib_PlatWX.o \
$(OBJS)\stclib_ScintillaWX.o
-GLDLL_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+GLDLL_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib -DWXUSINGDLL -DWXMAKINGDLL_GL \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) \
- $(CXXFLAGS)
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING -DWXUSINGDLL \
+ -DWXMAKINGDLL_GL $(__RTTIFLAG) $(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy \
+ $(CPPFLAGS) $(CXXFLAGS)
GLDLL_OBJECTS = \
$(OBJS)\gldll_dummy.o \
$(OBJS)\gldll_version_rc.o \
$(OBJS)\gldll_glcmn.o \
$(OBJS)\gldll_glcanvas.o
-GLLIB_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
+GLLIB_CXXFLAGS = -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png \
+ -I..\..\src\zlib -I..\..\src\regex -I..\..\src\expat\expat\lib \
+ $(__DEBUGINFO) $(__OPTIMIZEFLAG) $(__THREADSFLAG) $(GCCFLAGS) \
-DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
$(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) -I$(SETUPHDIR) -I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING \
- -I..\..\src\tiff\libtiff -I..\..\src\jpeg -I..\..\src\png -I..\..\src\zlib \
- -I..\..\src\regex -I..\..\src\expat\expat\lib $(__RTTIFLAG) \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) -W -Wall -DWXBUILDING $(__RTTIFLAG) \
$(__EXCEPTIONSFLAG) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
GLLIB_OBJECTS = \
$(OBJS)\gllib_dummy.o \
@@ -1892,6 +1895,7 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_notifmsgrt.o \
$(OBJS)\monodll_uuid.o \
$(OBJS)\monodll_evtloop.o \
+ $(OBJS)\monodll_access.o \
$(OBJS)\monodll_clrpickerg.o \
$(OBJS)\monodll_collpaneg.o \
$(OBJS)\monodll_filepickerg.o \
@@ -1928,7 +1932,6 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_nativdlg.o \
$(OBJS)\monodll_nativewin.o \
$(OBJS)\monodll_msw_notebook.o \
- $(OBJS)\monodll_access.o \
$(OBJS)\monodll_ownerdrw.o \
$(OBJS)\monodll_progdlg.o \
$(OBJS)\monodll_msw_radiobox.o \
@@ -1951,7 +1954,6 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_treectrl.o \
$(OBJS)\monodll_systhemectrl.o \
$(OBJS)\monodll_customdraw.o \
- $(OBJS)\monodll_animateg.o \
$(OBJS)\monodll_commandlinkbutton.o \
$(OBJS)\monodll_bmpcbox.o \
$(OBJS)\monodll_hyperlink.o \
@@ -2092,6 +2094,7 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_windowid.o \
$(OBJS)\monodll_wrapsizer.o \
$(OBJS)\monodll_xpmdecod.o \
+ $(OBJS)\monodll_animateg.o \
$(OBJS)\monodll_busyinfo.o \
$(OBJS)\monodll_generic_buttonbar.o \
$(OBJS)\monodll_choicdgg.o \
@@ -2236,7 +2239,7 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_notifmsgrt.o \
$(OBJS)\monodll_uuid.o \
$(OBJS)\monodll_evtloop.o \
- $(OBJS)\monodll_animateg.o \
+ $(OBJS)\monodll_access.o \
$(OBJS)\monodll_generic_accel.o \
$(OBJS)\monodll_clrpickerg.o \
$(OBJS)\monodll_collpaneg.o \
@@ -2420,6 +2423,7 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_windowid.o \
$(OBJS)\monodll_wrapsizer.o \
$(OBJS)\monodll_xpmdecod.o \
+ $(OBJS)\monodll_animateg.o \
$(OBJS)\monodll_busyinfo.o \
$(OBJS)\monodll_generic_buttonbar.o \
$(OBJS)\monodll_choicdgg.o \
@@ -2732,6 +2736,7 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_notifmsgrt.o \
$(OBJS)\monolib_uuid.o \
$(OBJS)\monolib_evtloop.o \
+ $(OBJS)\monolib_access.o \
$(OBJS)\monolib_clrpickerg.o \
$(OBJS)\monolib_collpaneg.o \
$(OBJS)\monolib_filepickerg.o \
@@ -2768,7 +2773,6 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_nativdlg.o \
$(OBJS)\monolib_nativewin.o \
$(OBJS)\monolib_msw_notebook.o \
- $(OBJS)\monolib_access.o \
$(OBJS)\monolib_ownerdrw.o \
$(OBJS)\monolib_progdlg.o \
$(OBJS)\monolib_msw_radiobox.o \
@@ -2791,7 +2795,6 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_treectrl.o \
$(OBJS)\monolib_systhemectrl.o \
$(OBJS)\monolib_customdraw.o \
- $(OBJS)\monolib_animateg.o \
$(OBJS)\monolib_commandlinkbutton.o \
$(OBJS)\monolib_bmpcbox.o \
$(OBJS)\monolib_hyperlink.o \
@@ -2932,6 +2935,7 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_windowid.o \
$(OBJS)\monolib_wrapsizer.o \
$(OBJS)\monolib_xpmdecod.o \
+ $(OBJS)\monolib_animateg.o \
$(OBJS)\monolib_busyinfo.o \
$(OBJS)\monolib_generic_buttonbar.o \
$(OBJS)\monolib_choicdgg.o \
@@ -3076,7 +3080,7 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_notifmsgrt.o \
$(OBJS)\monolib_uuid.o \
$(OBJS)\monolib_evtloop.o \
- $(OBJS)\monolib_animateg.o \
+ $(OBJS)\monolib_access.o \
$(OBJS)\monolib_generic_accel.o \
$(OBJS)\monolib_clrpickerg.o \
$(OBJS)\monolib_collpaneg.o \
@@ -3260,6 +3264,7 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_windowid.o \
$(OBJS)\monolib_wrapsizer.o \
$(OBJS)\monolib_xpmdecod.o \
+ $(OBJS)\monolib_animateg.o \
$(OBJS)\monolib_busyinfo.o \
$(OBJS)\monolib_generic_buttonbar.o \
$(OBJS)\monolib_choicdgg.o \
@@ -3454,6 +3459,7 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_notifmsgrt.o \
$(OBJS)\coredll_uuid.o \
$(OBJS)\coredll_evtloop.o \
+ $(OBJS)\coredll_access.o \
$(OBJS)\coredll_clrpickerg.o \
$(OBJS)\coredll_collpaneg.o \
$(OBJS)\coredll_filepickerg.o \
@@ -3490,7 +3496,6 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_nativdlg.o \
$(OBJS)\coredll_nativewin.o \
$(OBJS)\coredll_msw_notebook.o \
- $(OBJS)\coredll_access.o \
$(OBJS)\coredll_ownerdrw.o \
$(OBJS)\coredll_progdlg.o \
$(OBJS)\coredll_msw_radiobox.o \
@@ -3513,7 +3518,6 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_treectrl.o \
$(OBJS)\coredll_systhemectrl.o \
$(OBJS)\coredll_customdraw.o \
- $(OBJS)\coredll_animateg.o \
$(OBJS)\coredll_commandlinkbutton.o \
$(OBJS)\coredll_bmpcbox.o \
$(OBJS)\coredll_hyperlink.o \
@@ -3654,6 +3658,7 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_windowid.o \
$(OBJS)\coredll_wrapsizer.o \
$(OBJS)\coredll_xpmdecod.o \
+ $(OBJS)\coredll_animateg.o \
$(OBJS)\coredll_busyinfo.o \
$(OBJS)\coredll_buttonbar.o \
$(OBJS)\coredll_choicdgg.o \
@@ -3798,7 +3803,7 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_notifmsgrt.o \
$(OBJS)\coredll_uuid.o \
$(OBJS)\coredll_evtloop.o \
- $(OBJS)\coredll_animateg.o \
+ $(OBJS)\coredll_access.o \
$(OBJS)\coredll_generic_accel.o \
$(OBJS)\coredll_clrpickerg.o \
$(OBJS)\coredll_collpaneg.o \
@@ -3982,6 +3987,7 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_windowid.o \
$(OBJS)\coredll_wrapsizer.o \
$(OBJS)\coredll_xpmdecod.o \
+ $(OBJS)\coredll_animateg.o \
$(OBJS)\coredll_busyinfo.o \
$(OBJS)\coredll_buttonbar.o \
$(OBJS)\coredll_choicdgg.o \
@@ -4134,6 +4140,7 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_notifmsgrt.o \
$(OBJS)\corelib_uuid.o \
$(OBJS)\corelib_evtloop.o \
+ $(OBJS)\corelib_access.o \
$(OBJS)\corelib_clrpickerg.o \
$(OBJS)\corelib_collpaneg.o \
$(OBJS)\corelib_filepickerg.o \
@@ -4170,7 +4177,6 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_nativdlg.o \
$(OBJS)\corelib_nativewin.o \
$(OBJS)\corelib_msw_notebook.o \
- $(OBJS)\corelib_access.o \
$(OBJS)\corelib_ownerdrw.o \
$(OBJS)\corelib_progdlg.o \
$(OBJS)\corelib_msw_radiobox.o \
@@ -4193,7 +4199,6 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_treectrl.o \
$(OBJS)\corelib_systhemectrl.o \
$(OBJS)\corelib_customdraw.o \
- $(OBJS)\corelib_animateg.o \
$(OBJS)\corelib_commandlinkbutton.o \
$(OBJS)\corelib_bmpcbox.o \
$(OBJS)\corelib_hyperlink.o \
@@ -4334,6 +4339,7 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_windowid.o \
$(OBJS)\corelib_wrapsizer.o \
$(OBJS)\corelib_xpmdecod.o \
+ $(OBJS)\corelib_animateg.o \
$(OBJS)\corelib_busyinfo.o \
$(OBJS)\corelib_buttonbar.o \
$(OBJS)\corelib_choicdgg.o \
@@ -4478,7 +4484,7 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_notifmsgrt.o \
$(OBJS)\corelib_uuid.o \
$(OBJS)\corelib_evtloop.o \
- $(OBJS)\corelib_animateg.o \
+ $(OBJS)\corelib_access.o \
$(OBJS)\corelib_generic_accel.o \
$(OBJS)\corelib_clrpickerg.o \
$(OBJS)\corelib_collpaneg.o \
@@ -4662,6 +4668,7 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_windowid.o \
$(OBJS)\corelib_wrapsizer.o \
$(OBJS)\corelib_xpmdecod.o \
+ $(OBJS)\corelib_animateg.o \
$(OBJS)\corelib_busyinfo.o \
$(OBJS)\corelib_buttonbar.o \
$(OBJS)\corelib_choicdgg.o \
@@ -5331,7 +5338,7 @@ endif
ifeq ($(MONOLITHIC),1)
ifeq ($(SHARED),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).dll: $(MONODLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\monodll_version_rc.o $(__wxscintilla_library_link_DEP)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).dll: $(MONODLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\monodll_version_rc.o $(__wxscintilla_library_link_DEP)
$(foreach f,$(subst \,/,$(MONODLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(__wxscintilla)
@@ -5353,7 +5360,7 @@ endif
ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
-$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).dll: $(BASEDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\basedll_version_rc.o
+$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).dll: $(BASEDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\basedll_version_rc.o
$(foreach f,$(subst \,/,$(BASEDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme
@@ -5379,7 +5386,7 @@ endif
ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
-$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG).dll: $(NETDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\netdll_version_rc.o $(__basedll___depname)
+$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG).dll: $(NETDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\netdll_version_rc.o $(__basedll___depname)
$(foreach f,$(subst \,/,$(NETDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a
@@ -5406,7 +5413,7 @@ endif
ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
ifeq ($(USE_GUI),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG).dll: $(COREDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\coredll_version_rc.o $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG).dll: $(COREDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\coredll_version_rc.o $(__basedll___depname)
$(foreach f,$(subst \,/,$(COREDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a
@@ -5438,7 +5445,7 @@ endif
ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
ifeq ($(USE_GUI),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG).dll: $(ADVDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\advdll_version_rc.o $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG).dll: $(ADVDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\advdll_version_rc.o $(__coredll___depname) $(__basedll___depname)
$(foreach f,$(subst \,/,$(ADVDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.a $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a
@@ -5471,7 +5478,7 @@ ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
ifeq ($(USE_GUI),1)
ifeq ($(USE_MEDIA),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG).dll: $(MEDIADLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\mediadll_version_rc.o $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG).dll: $(MEDIADLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\mediadll_version_rc.o $(__coredll___depname) $(__basedll___depname)
$(foreach f,$(subst \,/,$(MEDIADLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.a $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a
@@ -5509,7 +5516,7 @@ ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
ifeq ($(USE_GUI),1)
ifeq ($(USE_HTML),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG).dll: $(HTMLDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\htmldll_version_rc.o $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG).dll: $(HTMLDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\htmldll_version_rc.o $(__coredll___depname) $(__basedll___depname)
$(foreach f,$(subst \,/,$(HTMLDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.a $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a
@@ -5545,7 +5552,7 @@ ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
ifeq ($(USE_GUI),1)
ifeq ($(USE_WEBVIEW),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG).dll: $(WEBVIEWDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__coredll___depname) $(__basedll___depname) $(OBJS)\webviewdll_version_rc.o
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG).dll: $(WEBVIEWDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(__coredll___depname) $(__basedll___depname) $(OBJS)\webviewdll_version_rc.o
$(foreach f,$(subst \,/,$(WEBVIEWDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.a $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a
@@ -5581,7 +5588,7 @@ ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
ifeq ($(USE_GUI),1)
ifeq ($(USE_QA),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG).dll: $(QADLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\qadll_version_rc.o $(__coredll___depname) $(__basedll___depname) $(__xmldll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG).dll: $(QADLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\qadll_version_rc.o $(__coredll___depname) $(__basedll___depname) $(__xmldll___depname)
$(foreach f,$(subst \,/,$(QADLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.a $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.a
@@ -5615,7 +5622,7 @@ endif
ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
-$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG).dll: $(XMLDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\xmldll_version_rc.o $(__basedll___depname)
+$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG).dll: $(XMLDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\xmldll_version_rc.o $(__basedll___depname)
$(foreach f,$(subst \,/,$(XMLDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a
@@ -5642,7 +5649,7 @@ endif
ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
ifeq ($(USE_XRC),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG).dll: $(XRCDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\xrcdll_version_rc.o $(__htmldll_library_link_DEP) $(__coredll___depname) $(__xmldll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG).dll: $(XRCDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\xrcdll_version_rc.o $(__htmldll_library_link_DEP) $(__coredll___depname) $(__xmldll___depname) $(__basedll___depname)
$(foreach f,$(subst \,/,$(XRCDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(__htmldll_library_link_LIBR) $(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.a $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.a $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a
@@ -5674,7 +5681,7 @@ endif
ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
ifeq ($(USE_AUI),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG).dll: $(AUIDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\auidll_version_rc.o $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG).dll: $(AUIDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\auidll_version_rc.o $(__coredll___depname) $(__basedll___depname)
$(foreach f,$(subst \,/,$(AUIDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.a $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a
@@ -5706,7 +5713,7 @@ endif
ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
ifeq ($(USE_RIBBON),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG).dll: $(RIBBONDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\ribbondll_version_rc.o $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG).dll: $(RIBBONDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\ribbondll_version_rc.o $(__coredll___depname) $(__basedll___depname)
$(foreach f,$(subst \,/,$(RIBBONDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.a $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a
@@ -5738,7 +5745,7 @@ endif
ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
ifeq ($(USE_PROPGRID),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG).dll: $(PROPGRIDDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\propgriddll_version_rc.o $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG).dll: $(PROPGRIDDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\propgriddll_version_rc.o $(__coredll___depname) $(__basedll___depname)
$(foreach f,$(subst \,/,$(PROPGRIDDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.a $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a
@@ -5770,7 +5777,7 @@ endif
ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
ifeq ($(USE_RICHTEXT),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG).dll: $(RICHTEXTDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\richtextdll_version_rc.o $(__htmldll_library_link_DEP) $(__xmldll___depname) $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG).dll: $(RICHTEXTDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\richtextdll_version_rc.o $(__htmldll_library_link_DEP) $(__xmldll___depname) $(__coredll___depname) $(__basedll___depname)
$(foreach f,$(subst \,/,$(RICHTEXTDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(__htmldll_library_link_LIBR) $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.a $(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.a $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a
@@ -5802,7 +5809,7 @@ endif
ifeq ($(MONOLITHIC),0)
ifeq ($(SHARED),1)
ifeq ($(USE_STC),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG).dll: $(STCDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxscintilla) $(OBJS)\stcdll_version_rc.o $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG).dll: $(STCDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(__wxscintilla) $(OBJS)\stcdll_version_rc.o $(__coredll___depname) $(__basedll___depname)
$(foreach f,$(subst \,/,$(STCDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(LIBDIRNAME)\libwxscintilla$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.a $(LIBDIRNAME)\libwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).a
@@ -5834,7 +5841,7 @@ endif
ifeq ($(SHARED),1)
ifeq ($(USE_GUI),1)
ifeq ($(USE_OPENGL),1)
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG).dll: $(GLDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(OBJS)\gldll_version_rc.o $(__basedll___depname) $(__coredll___depname) $(__monodll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG).dll: $(GLDLL_OBJECTS) $(LIBDIRNAME)\libwxexpat$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxzlib$(WXDEBUGFLAG).a $(LIBDIRNAME)\libwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).a $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\gldll_version_rc.o $(__basedll___depname) $(__coredll___depname) $(__monodll___depname)
$(foreach f,$(subst \,/,$(GLDLL_OBJECTS)),$(shell echo $f >> $(subst \,/,$@).rsp.tmp))
@move /y $@.rsp.tmp $@.rsp >nul
$(CXX) $(LINK_DLL_FLAGS) -fPIC -o $@ @$@.rsp $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--out-implib=$(LIBDIRNAME)\libwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl.a $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lshlwapi -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lversion -lwsock32 -lwininet -loleacc -luxtheme $(__WXLIBGLDEP_CORE_p) $(__WXLIBGLDEP_BASE_p) $(__WXLIB_MONO_p) -lopengl32 -lglu32
@@ -5885,7 +5892,7 @@ $(SETUPHDIR)\wx\msw: $(SETUPHDIR)\wx
if not exist $(SETUPHDIR)\wx\msw mkdir $(SETUPHDIR)\wx\msw
$(SETUPHDIR)\wx\msw\rcdefs.h: $(SETUPHDIR)\wx\msw ..\..\include\wx\msw\genrcdefs.h
- $(CPP) "..\..\include\wx\msw\genrcdefs.h" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
+ $(CPP) $(CPPFLAGS) "..\..\include\wx\msw\genrcdefs.h" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
build_cfg_file: $(SETUPHDIR)
@echo WXVER_MAJOR=3 >$(BUILD_CFG_FILE)
@@ -7200,9 +7207,6 @@ $(OBJS)\monodll_nativewin.o: ../../src/msw/nativewin.cpp
$(OBJS)\monodll_msw_notebook.o: ../../src/msw/notebook.cpp
$(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $<
-$(OBJS)\monodll_access.o: ../../src/msw/ole/access.cpp
- $(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $<
-
$(OBJS)\monodll_ownerdrw.o: ../../src/msw/ownerdrw.cpp
$(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $<
@@ -8238,6 +8242,11 @@ $(OBJS)\monodll_evtloop.o: ../../src/msw/evtloop.cpp
$(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $<
endif
+ifeq ($(USE_GUI),1)
+$(OBJS)\monodll_access.o: ../../src/msw/ole/access.cpp
+ $(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $<
+endif
+
ifeq ($(USE_GUI),1)
$(OBJS)\monodll_clrpickerg.o: ../../src/generic/clrpickerg.cpp
$(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $<
@@ -8263,11 +8272,6 @@ $(OBJS)\monodll_prntdlgg.o: ../../src/generic/prntdlgg.cpp
$(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $<
endif
-ifeq ($(USE_GUI),1)
-$(OBJS)\monodll_animateg.o: ../../src/generic/animateg.cpp
- $(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $<
-endif
-
ifeq ($(USE_GUI),1)
$(OBJS)\monodll_activityindicator.o: ../../src/generic/activityindicator.cpp
$(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $<
@@ -8913,6 +8917,11 @@ $(OBJS)\monodll_xpmdecod.o: ../../src/common/xpmdecod.cpp
$(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $<
endif
+ifeq ($(USE_GUI),1)
+$(OBJS)\monodll_animateg.o: ../../src/generic/animateg.cpp
+ $(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $<
+endif
+
ifeq ($(USE_GUI),1)
$(OBJS)\monodll_busyinfo.o: ../../src/generic/busyinfo.cpp
$(CXX) -c -o $@ $(MONODLL_CXXFLAGS) $(CPPDEPS) $<
@@ -9279,7 +9288,7 @@ $(OBJS)\monodll_rowheightcache.o: ../../src/generic/rowheightcache.cpp
endif
$(OBJS)\monodll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --include-dir ../../src/stc/scintilla/include --include-dir ../../src/stc/scintilla/lexlib --include-dir ../../src/stc/scintilla/src --define __WX__ --define SCI_LEXER --define NO_CXX11_REGEX --define LINK_LEXERS --define wxUSE_BASE=1 --define WXMAKINGDLL
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/stc/scintilla/include --include-dir ../../src/stc/scintilla/lexlib --include-dir ../../src/stc/scintilla/src --define __WX__ --define SCI_LEXER --define NO_CXX11_REGEX --define LINK_LEXERS --define wxUSE_BASE=1 --define WXMAKINGDLL
$(OBJS)\monolib_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $<
@@ -9755,9 +9764,6 @@ $(OBJS)\monolib_nativewin.o: ../../src/msw/nativewin.cpp
$(OBJS)\monolib_msw_notebook.o: ../../src/msw/notebook.cpp
$(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $<
-$(OBJS)\monolib_access.o: ../../src/msw/ole/access.cpp
- $(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $<
-
$(OBJS)\monolib_ownerdrw.o: ../../src/msw/ownerdrw.cpp
$(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $<
@@ -10793,6 +10799,11 @@ $(OBJS)\monolib_evtloop.o: ../../src/msw/evtloop.cpp
$(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $<
endif
+ifeq ($(USE_GUI),1)
+$(OBJS)\monolib_access.o: ../../src/msw/ole/access.cpp
+ $(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $<
+endif
+
ifeq ($(USE_GUI),1)
$(OBJS)\monolib_clrpickerg.o: ../../src/generic/clrpickerg.cpp
$(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $<
@@ -10818,11 +10829,6 @@ $(OBJS)\monolib_prntdlgg.o: ../../src/generic/prntdlgg.cpp
$(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $<
endif
-ifeq ($(USE_GUI),1)
-$(OBJS)\monolib_animateg.o: ../../src/generic/animateg.cpp
- $(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $<
-endif
-
ifeq ($(USE_GUI),1)
$(OBJS)\monolib_activityindicator.o: ../../src/generic/activityindicator.cpp
$(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $<
@@ -11468,6 +11474,11 @@ $(OBJS)\monolib_xpmdecod.o: ../../src/common/xpmdecod.cpp
$(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $<
endif
+ifeq ($(USE_GUI),1)
+$(OBJS)\monolib_animateg.o: ../../src/generic/animateg.cpp
+ $(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $<
+endif
+
ifeq ($(USE_GUI),1)
$(OBJS)\monolib_busyinfo.o: ../../src/generic/busyinfo.cpp
$(CXX) -c -o $@ $(MONOLIB_CXXFLAGS) $(CPPDEPS) $<
@@ -11837,7 +11848,7 @@ $(OBJS)\basedll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(BASEDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\basedll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_GUI=0 --define WXMAKINGDLL_BASE --define wxUSE_BASE=1
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG) --define wxUSE_GUI=0 --define WXMAKINGDLL_BASE --define wxUSE_BASE=1
$(OBJS)\basedll_any.o: ../../src/common/any.cpp
$(CXX) -c -o $@ $(BASEDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -12530,7 +12541,7 @@ $(OBJS)\netdll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(NETDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\netdll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_NET
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_NET
$(OBJS)\netdll_fs_inet.o: ../../src/common/fs_inet.cpp
$(CXX) -c -o $@ $(NETDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -12611,7 +12622,7 @@ $(OBJS)\coredll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\coredll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define WXUSINGDLL --define WXMAKINGDLL_CORE --define wxUSE_BASE=0
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG) --define WXUSINGDLL --define WXMAKINGDLL_CORE --define wxUSE_BASE=0
$(OBJS)\coredll_event.o: ../../src/common/event.cpp
$(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -12724,9 +12735,6 @@ $(OBJS)\coredll_nativewin.o: ../../src/msw/nativewin.cpp
$(OBJS)\coredll_msw_notebook.o: ../../src/msw/notebook.cpp
$(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
-$(OBJS)\coredll_access.o: ../../src/msw/ole/access.cpp
- $(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
-
$(OBJS)\coredll_ownerdrw.o: ../../src/msw/ownerdrw.cpp
$(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -13303,6 +13311,11 @@ $(OBJS)\coredll_evtloop.o: ../../src/msw/evtloop.cpp
$(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
endif
+ifeq ($(USE_GUI),1)
+$(OBJS)\coredll_access.o: ../../src/msw/ole/access.cpp
+ $(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
+endif
+
ifeq ($(USE_GUI),1)
$(OBJS)\coredll_clrpickerg.o: ../../src/generic/clrpickerg.cpp
$(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -13328,11 +13341,6 @@ $(OBJS)\coredll_prntdlgg.o: ../../src/generic/prntdlgg.cpp
$(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
endif
-ifeq ($(USE_GUI),1)
-$(OBJS)\coredll_animateg.o: ../../src/generic/animateg.cpp
- $(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
-endif
-
ifeq ($(USE_GUI),1)
$(OBJS)\coredll_activityindicator.o: ../../src/generic/activityindicator.cpp
$(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -13978,6 +13986,11 @@ $(OBJS)\coredll_xpmdecod.o: ../../src/common/xpmdecod.cpp
$(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
endif
+ifeq ($(USE_GUI),1)
+$(OBJS)\coredll_animateg.o: ../../src/generic/animateg.cpp
+ $(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
+endif
+
ifeq ($(USE_GUI),1)
$(OBJS)\coredll_busyinfo.o: ../../src/generic/busyinfo.cpp
$(CXX) -c -o $@ $(COREDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -14457,9 +14470,6 @@ $(OBJS)\corelib_nativewin.o: ../../src/msw/nativewin.cpp
$(OBJS)\corelib_msw_notebook.o: ../../src/msw/notebook.cpp
$(CXX) -c -o $@ $(CORELIB_CXXFLAGS) $(CPPDEPS) $<
-$(OBJS)\corelib_access.o: ../../src/msw/ole/access.cpp
- $(CXX) -c -o $@ $(CORELIB_CXXFLAGS) $(CPPDEPS) $<
-
$(OBJS)\corelib_ownerdrw.o: ../../src/msw/ownerdrw.cpp
$(CXX) -c -o $@ $(CORELIB_CXXFLAGS) $(CPPDEPS) $<
@@ -15036,6 +15046,11 @@ $(OBJS)\corelib_evtloop.o: ../../src/msw/evtloop.cpp
$(CXX) -c -o $@ $(CORELIB_CXXFLAGS) $(CPPDEPS) $<
endif
+ifeq ($(USE_GUI),1)
+$(OBJS)\corelib_access.o: ../../src/msw/ole/access.cpp
+ $(CXX) -c -o $@ $(CORELIB_CXXFLAGS) $(CPPDEPS) $<
+endif
+
ifeq ($(USE_GUI),1)
$(OBJS)\corelib_clrpickerg.o: ../../src/generic/clrpickerg.cpp
$(CXX) -c -o $@ $(CORELIB_CXXFLAGS) $(CPPDEPS) $<
@@ -15061,11 +15076,6 @@ $(OBJS)\corelib_prntdlgg.o: ../../src/generic/prntdlgg.cpp
$(CXX) -c -o $@ $(CORELIB_CXXFLAGS) $(CPPDEPS) $<
endif
-ifeq ($(USE_GUI),1)
-$(OBJS)\corelib_animateg.o: ../../src/generic/animateg.cpp
- $(CXX) -c -o $@ $(CORELIB_CXXFLAGS) $(CPPDEPS) $<
-endif
-
ifeq ($(USE_GUI),1)
$(OBJS)\corelib_activityindicator.o: ../../src/generic/activityindicator.cpp
$(CXX) -c -o $@ $(CORELIB_CXXFLAGS) $(CPPDEPS) $<
@@ -15711,6 +15721,11 @@ $(OBJS)\corelib_xpmdecod.o: ../../src/common/xpmdecod.cpp
$(CXX) -c -o $@ $(CORELIB_CXXFLAGS) $(CPPDEPS) $<
endif
+ifeq ($(USE_GUI),1)
+$(OBJS)\corelib_animateg.o: ../../src/generic/animateg.cpp
+ $(CXX) -c -o $@ $(CORELIB_CXXFLAGS) $(CPPDEPS) $<
+endif
+
ifeq ($(USE_GUI),1)
$(OBJS)\corelib_busyinfo.o: ../../src/generic/busyinfo.cpp
$(CXX) -c -o $@ $(CORELIB_CXXFLAGS) $(CPPDEPS) $<
@@ -16080,7 +16095,7 @@ $(OBJS)\advdll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(ADVDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\advdll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define WXUSINGDLL --define WXMAKINGDLL_ADV
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG) --define WXUSINGDLL --define WXMAKINGDLL_ADV
$(OBJS)\advlib_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(ADVLIB_CXXFLAGS) $(CPPDEPS) $<
@@ -16089,7 +16104,7 @@ $(OBJS)\mediadll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(MEDIADLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\mediadll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define WXUSINGDLL --define WXMAKINGDLL_MEDIA
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG) --define WXUSINGDLL --define WXMAKINGDLL_MEDIA
$(OBJS)\mediadll_mediactrlcmn.o: ../../src/common/mediactrlcmn.cpp
$(CXX) -c -o $@ $(MEDIADLL_CXXFLAGS) $(CPPDEPS) $<
@@ -16122,7 +16137,7 @@ $(OBJS)\htmldll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(HTMLDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\htmldll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define WXUSINGDLL --define WXMAKINGDLL_HTML
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG) --define WXUSINGDLL --define WXMAKINGDLL_HTML
$(OBJS)\htmldll_helpbest.o: ../../src/msw/helpbest.cpp
$(CXX) -c -o $@ $(HTMLDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -16308,7 +16323,7 @@ $(OBJS)\webviewdll_webviewfshandler.o: ../../src/common/webviewfshandler.cpp
$(CXX) -c -o $@ $(WEBVIEWDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\webviewdll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define WXUSINGDLL --define WXMAKINGDLL_WEBVIEW --include-dir ../../3rdparty/webview2/build/native/include
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG) --define WXUSINGDLL --define WXMAKINGDLL_WEBVIEW --include-dir ../../3rdparty/webview2/build/native/include
$(OBJS)\webviewlib_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(WEBVIEWLIB_CXXFLAGS) $(CPPDEPS) $<
@@ -16332,7 +16347,7 @@ $(OBJS)\qadll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(QADLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\qadll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define WXUSINGDLL --define WXMAKINGDLL_QA
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG) --define WXUSINGDLL --define WXMAKINGDLL_QA
$(OBJS)\qadll_debugrpt.o: ../../src/common/debugrpt.cpp
$(CXX) -c -o $@ $(QADLL_CXXFLAGS) $(CPPDEPS) $<
@@ -16353,7 +16368,7 @@ $(OBJS)\xmldll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(XMLDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\xmldll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_XML
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG) --define wxUSE_GUI=0 --define WXUSINGDLL --define WXMAKINGDLL_XML
$(OBJS)\xmldll_xml.o: ../../src/xml/xml.cpp
$(CXX) -c -o $@ $(XMLDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -16374,7 +16389,7 @@ $(OBJS)\xrcdll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(XRCDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\xrcdll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define WXUSINGDLL --define WXMAKINGDLL_XRC
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG) --define WXUSINGDLL --define WXMAKINGDLL_XRC
$(OBJS)\xrcdll_xh_activityindicator.o: ../../src/xrc/xh_activityindicator.cpp
$(CXX) -c -o $@ $(XRCDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -16797,7 +16812,7 @@ $(OBJS)\auidll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(AUIDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\auidll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define WXUSINGDLL --define WXMAKINGDLL_AUI
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG) --define WXUSINGDLL --define WXMAKINGDLL_AUI
$(OBJS)\auidll_framemanager.o: ../../src/aui/framemanager.cpp
$(CXX) -c -o $@ $(AUIDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -16872,7 +16887,7 @@ $(OBJS)\ribbondll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(RIBBONDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\ribbondll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define WXUSINGDLL --define WXMAKINGDLL_RIBBON
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG) --define WXUSINGDLL --define WXMAKINGDLL_RIBBON
$(OBJS)\ribbondll_art_internal.o: ../../src/ribbon/art_internal.cpp
$(CXX) -c -o $@ $(RIBBONDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -16947,7 +16962,7 @@ $(OBJS)\propgriddll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(PROPGRIDDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\propgriddll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define WXUSINGDLL --define WXMAKINGDLL_PROPGRID
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG) --define WXUSINGDLL --define WXMAKINGDLL_PROPGRID
$(OBJS)\propgriddll_advprops.o: ../../src/propgrid/advprops.cpp
$(CXX) -c -o $@ $(PROPGRIDDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -17004,7 +17019,7 @@ $(OBJS)\richtextdll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(RICHTEXTDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\richtextdll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define WXUSINGDLL --define WXMAKINGDLL_RICHTEXT
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG) --define WXUSINGDLL --define WXMAKINGDLL_RICHTEXT
$(OBJS)\richtextdll_richtextbuffer.o: ../../src/richtext/richtextbuffer.cpp
$(CXX) -c -o $@ $(RICHTEXTDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -17079,7 +17094,7 @@ $(OBJS)\stcdll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(STCDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\stcdll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --include-dir ../../src/stc/scintilla/include --include-dir ../../src/stc/scintilla/lexlib --include-dir ../../src/stc/scintilla/src --define __WX__ --define SCI_LEXER --define NO_CXX11_REGEX --define LINK_LEXERS --define WXUSINGDLL --define WXMAKINGDLL_STC
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/stc/scintilla/include --include-dir ../../src/stc/scintilla/lexlib --include-dir ../../src/stc/scintilla/src --define __WX__ --define SCI_LEXER --define NO_CXX11_REGEX --define LINK_LEXERS --define WXUSINGDLL --define WXMAKINGDLL_STC
$(OBJS)\stcdll_stc.o: ../../src/stc/stc.cpp
$(CXX) -c -o $@ $(STCDLL_CXXFLAGS) $(CPPDEPS) $<
@@ -17106,7 +17121,7 @@ $(OBJS)\gldll_dummy.o: ../../src/common/dummy.cpp
$(CXX) -c -o $@ $(GLDLL_CXXFLAGS) $(CPPDEPS) $<
$(OBJS)\gldll_version_rc.o: ../../src/msw/version.rc
- $(WINDRES) -i$< -o$@ --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG) --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define WXUSINGDLL --define WXMAKINGDLL_GL
+ $(WINDRES) -i$< -o$@ --include-dir ../../src/tiff/libtiff --include-dir ../../src/jpeg --include-dir ../../src/png --include-dir ../../src/zlib --include-dir ../../src/regex --include-dir ../../src/expat/expat/lib --define wxUSE_DPI_AWARE_MANIFEST=$(USE_DPI_AWARE_MANIFEST) --define __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) --include-dir $(SETUPHDIR) --include-dir ../../include $(__CAIRO_INCLUDEDIR_p) --define WXBUILDING --define WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG) --define WXUSINGDLL --define WXMAKINGDLL_GL
$(OBJS)\gldll_glcmn.o: ../../src/common/glcmn.cpp
$(CXX) -c -o $@ $(GLDLL_CXXFLAGS) $(CPPDEPS) $<
diff --git a/build/msw/makefile.vc b/build/msw/makefile.vc
index 8f828728ba..f1d7016dba 100644
--- a/build/msw/makefile.vc
+++ b/build/msw/makefile.vc
@@ -16,13 +16,14 @@ MAKEARGS = CC="$(CC)" CXX="$(CXX)" CFLAGS="$(CFLAGS)" CXXFLAGS="$(CXXFLAGS)" \
CPPFLAGS="$(CPPFLAGS)" LDFLAGS="$(LDFLAGS)" CPP="$(CPP)" SHARED="$(SHARED)" \
TOOLKIT_VERSION="$(TOOLKIT_VERSION)" WXUNIV="$(WXUNIV)" \
UNICODE="$(UNICODE)" BUILD="$(BUILD)" TARGET_CPU="$(TARGET_CPU)" \
- DEBUG_INFO="$(DEBUG_INFO)" DEBUG_FLAG="$(DEBUG_FLAG)" \
- DEBUG_RUNTIME_LIBS="$(DEBUG_RUNTIME_LIBS)" MONOLITHIC="$(MONOLITHIC)" \
- USE_GUI="$(USE_GUI)" USE_HTML="$(USE_HTML)" USE_WEBVIEW="$(USE_WEBVIEW)" \
- USE_MEDIA="$(USE_MEDIA)" USE_XRC="$(USE_XRC)" USE_AUI="$(USE_AUI)" \
- USE_RIBBON="$(USE_RIBBON)" USE_PROPGRID="$(USE_PROPGRID)" \
- USE_RICHTEXT="$(USE_RICHTEXT)" USE_STC="$(USE_STC)" \
- USE_OPENGL="$(USE_OPENGL)" USE_QA="$(USE_QA)" \
+ VISUALSTUDIOVERSION="$(VISUALSTUDIOVERSION)" \
+ VISUALSTUDIOPLATFORM="$(VISUALSTUDIOPLATFORM)" DEBUG_INFO="$(DEBUG_INFO)" \
+ DEBUG_FLAG="$(DEBUG_FLAG)" DEBUG_RUNTIME_LIBS="$(DEBUG_RUNTIME_LIBS)" \
+ MONOLITHIC="$(MONOLITHIC)" USE_GUI="$(USE_GUI)" USE_HTML="$(USE_HTML)" \
+ USE_WEBVIEW="$(USE_WEBVIEW)" USE_MEDIA="$(USE_MEDIA)" USE_XRC="$(USE_XRC)" \
+ USE_AUI="$(USE_AUI)" USE_RIBBON="$(USE_RIBBON)" \
+ USE_PROPGRID="$(USE_PROPGRID)" USE_RICHTEXT="$(USE_RICHTEXT)" \
+ USE_STC="$(USE_STC)" USE_OPENGL="$(USE_OPENGL)" USE_QA="$(USE_QA)" \
USE_EXCEPTIONS="$(USE_EXCEPTIONS)" USE_RTTI="$(USE_RTTI)" \
USE_DPI_AWARE_MANIFEST="$(USE_DPI_AWARE_MANIFEST)" \
USE_THREADS="$(USE_THREADS)" USE_CAIRO="$(USE_CAIRO)" \
@@ -42,9 +43,9 @@ WXREGEX_CFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME) /DWIN32 \
$(__DEBUGINFO) /Fd$(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /DNDEBUG /D_CRT_SECURE_NO_WARNINGS /I..\..\include \
- /I$(SETUPHDIR) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__UNICODE_DEFINE_p) \
- $(CPPFLAGS) $(CFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /DNDEBUG \
+ /D_CRT_SECURE_NO_WARNINGS /I..\..\include /I$(SETUPHDIR) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__UNICODE_DEFINE_p) $(CPPFLAGS) $(CFLAGS)
WXREGEX_OBJECTS = \
$(OBJS)\wxregex_regcomp.obj \
$(OBJS)\wxregex_regexec.obj \
@@ -54,8 +55,8 @@ WXZLIB_CFLAGS = /M$(__RUNTIME_LIBS_25)$(__DEBUGRUNTIME) /DWIN32 $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).pdb $(____DEBUGRUNTIME) \
$(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /DNDEBUG /D_CRT_SECURE_NO_WARNINGS \
- /D_CRT_NONSTDC_NO_WARNINGS $(CPPFLAGS) $(CFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /DNDEBUG \
+ /D_CRT_SECURE_NO_WARNINGS /D_CRT_NONSTDC_NO_WARNINGS $(CPPFLAGS) $(CFLAGS)
WXZLIB_OBJECTS = \
$(OBJS)\wxzlib_adler32.obj \
$(OBJS)\wxzlib_compress.obj \
@@ -76,8 +77,8 @@ WXPNG_CFLAGS = /M$(__RUNTIME_LIBS_40)$(__DEBUGRUNTIME) /DWIN32 $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wxpng$(WXDEBUGFLAG).pdb $(____DEBUGRUNTIME) \
$(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /DNDEBUG /D_CRT_SECURE_NO_WARNINGS /I..\..\src\zlib \
- $(CPPFLAGS) $(CFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /DNDEBUG \
+ /D_CRT_SECURE_NO_WARNINGS /I..\..\src\zlib $(CPPFLAGS) $(CFLAGS)
WXPNG_OBJECTS = \
$(OBJS)\wxpng_png.obj \
$(OBJS)\wxpng_pngerror.obj \
@@ -98,8 +99,8 @@ WXJPEG_CFLAGS = /M$(__RUNTIME_LIBS_55)$(__DEBUGRUNTIME) /DWIN32 $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wxjpeg$(WXDEBUGFLAG).pdb $(____DEBUGRUNTIME) \
$(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /DNDEBUG /D_CRT_SECURE_NO_WARNINGS /I$(SETUPHDIR) \
- $(CPPFLAGS) $(CFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /DNDEBUG \
+ /D_CRT_SECURE_NO_WARNINGS /I$(SETUPHDIR) $(CPPFLAGS) $(CFLAGS)
WXJPEG_OBJECTS = \
$(OBJS)\wxjpeg_jaricom.obj \
$(OBJS)\wxjpeg_jcapimin.obj \
@@ -151,9 +152,9 @@ WXTIFF_CFLAGS = /M$(__RUNTIME_LIBS_70)$(__DEBUGRUNTIME) /DWIN32 $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wxtiff$(WXDEBUGFLAG).pdb $(____DEBUGRUNTIME) \
$(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /DNDEBUG /D_CRT_SECURE_NO_WARNINGS /I..\..\src\zlib \
- /I..\..\src\jpeg /I..\..\src\tiff\libtiff /D_CRT_NONSTDC_NO_WARNINGS \
- $(CPPFLAGS) $(CFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /DNDEBUG \
+ /D_CRT_SECURE_NO_WARNINGS /I..\..\src\zlib /I..\..\src\jpeg \
+ /I..\..\src\tiff\libtiff /D_CRT_NONSTDC_NO_WARNINGS $(CPPFLAGS) $(CFLAGS)
WXTIFF_OBJECTS = \
$(OBJS)\wxtiff_tif_win32.obj \
$(OBJS)\wxtiff_tif_aux.obj \
@@ -200,8 +201,8 @@ WXEXPAT_CFLAGS = /M$(__RUNTIME_LIBS_85)$(__DEBUGRUNTIME) /DWIN32 \
$(__DEBUGINFO) /Fd$(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /DNDEBUG /D_CRT_SECURE_NO_WARNINGS /I$(LIBDIRNAME) \
- $(CPPFLAGS) $(CFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /DNDEBUG \
+ /D_CRT_SECURE_NO_WARNINGS /I$(LIBDIRNAME) $(CPPFLAGS) $(CFLAGS)
WXEXPAT_OBJECTS = \
$(OBJS)\wxexpat_xmlparse.obj \
$(OBJS)\wxexpat_xmlrole.obj \
@@ -210,12 +211,13 @@ WXSCINTILLA_CXXFLAGS = /M$(__RUNTIME_LIBS_100)$(__DEBUGRUNTIME) /DWIN32 \
$(__DEBUGINFO) /Fd$(LIBDIRNAME)\wxscintilla$(WXDEBUGFLAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /DNDEBUG /D_CRT_SECURE_NO_WARNINGS \
- /I..\..\src\stc\scintilla\include /I..\..\src\stc\scintilla\lexlib \
- /I..\..\src\stc\scintilla\src /D__WX__ /DSCI_LEXER /DNO_CXX11_REGEX \
- /DLINK_LEXERS /I$(SETUPHDIR) /I..\..\include $(__wxscintilla_usingdll_p) \
- /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__UNICODE_DEFINE_p) \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /DNDEBUG \
+ /D_CRT_SECURE_NO_WARNINGS /I..\..\src\stc\scintilla\include \
+ /I..\..\src\stc\scintilla\lexlib /I..\..\src\stc\scintilla\src /D__WX__ \
+ /DSCI_LEXER /DNO_CXX11_REGEX /DLINK_LEXERS /I$(SETUPHDIR) /I..\..\include \
+ $(__wxscintilla_usingdll_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__UNICODE_DEFINE_p) $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
+ $(CPPFLAGS) $(CXXFLAGS)
WXSCINTILLA_OBJECTS = \
$(OBJS)\wxscintilla_LexA68k.obj \
$(OBJS)\wxscintilla_LexAbaqus.obj \
@@ -360,34 +362,34 @@ WXSCINTILLA_OBJECTS = \
$(OBJS)\wxscintilla_ViewStyle.obj \
$(OBJS)\wxscintilla_XPM.obj
MONODLL_CFLAGS = /M$(__RUNTIME_LIBS_116)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /I..\..\src\stc\scintilla\include \
- /I..\..\src\stc\scintilla\lexlib /I..\..\src\stc\scintilla\src /D__WX__ \
- /DSCI_LEXER /DNO_CXX11_REGEX /DLINK_LEXERS /DwxUSE_BASE=1 /DWXMAKINGDLL \
- $(CPPFLAGS) $(CFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING \
+ /I..\..\src\stc\scintilla\include /I..\..\src\stc\scintilla\lexlib \
+ /I..\..\src\stc\scintilla\src /D__WX__ /DSCI_LEXER /DNO_CXX11_REGEX \
+ /DLINK_LEXERS /DwxUSE_BASE=1 /DWXMAKINGDLL $(CPPFLAGS) $(CFLAGS)
MONODLL_CXXFLAGS = /M$(__RUNTIME_LIBS_116)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /I..\..\src\stc\scintilla\include \
- /I..\..\src\stc\scintilla\lexlib /I..\..\src\stc\scintilla\src /D__WX__ \
- /DSCI_LEXER /DNO_CXX11_REGEX /DLINK_LEXERS /DwxUSE_BASE=1 /DWXMAKINGDLL \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
- /Fp"$(OBJS)\wxprec_monodll.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING \
+ /I..\..\src\stc\scintilla\include /I..\..\src\stc\scintilla\lexlib \
+ /I..\..\src\stc\scintilla\src /D__WX__ /DSCI_LEXER /DNO_CXX11_REGEX \
+ /DLINK_LEXERS /DwxUSE_BASE=1 /DWXMAKINGDLL $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
+ /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_monodll.pch" $(CPPFLAGS) $(CXXFLAGS)
MONODLL_OBJECTS = \
$(OBJS)\monodll_dummy.obj \
$(OBJS)\monodll_any.obj \
@@ -522,34 +524,34 @@ MONODLL_OBJECTS = \
MONODLL_RESOURCES = \
$(OBJS)\monodll_version.res
MONOLIB_CFLAGS = /M$(__RUNTIME_LIBS_131)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /I..\..\src\stc\scintilla\include \
- /I..\..\src\stc\scintilla\lexlib /I..\..\src\stc\scintilla\src /D__WX__ \
- /DSCI_LEXER /DNO_CXX11_REGEX /DLINK_LEXERS /DwxUSE_BASE=1 $(CPPFLAGS) \
- $(CFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING \
+ /I..\..\src\stc\scintilla\include /I..\..\src\stc\scintilla\lexlib \
+ /I..\..\src\stc\scintilla\src /D__WX__ /DSCI_LEXER /DNO_CXX11_REGEX \
+ /DLINK_LEXERS /DwxUSE_BASE=1 $(CPPFLAGS) $(CFLAGS)
MONOLIB_CXXFLAGS = /M$(__RUNTIME_LIBS_131)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /I..\..\src\stc\scintilla\include \
- /I..\..\src\stc\scintilla\lexlib /I..\..\src\stc\scintilla\src /D__WX__ \
- /DSCI_LEXER /DNO_CXX11_REGEX /DLINK_LEXERS /DwxUSE_BASE=1 $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_monolib.pch" \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING \
+ /I..\..\src\stc\scintilla\include /I..\..\src\stc\scintilla\lexlib \
+ /I..\..\src\stc\scintilla\src /D__WX__ /DSCI_LEXER /DNO_CXX11_REGEX \
+ /DLINK_LEXERS /DwxUSE_BASE=1 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
+ /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_monolib.pch" $(CPPFLAGS) $(CXXFLAGS)
MONOLIB_OBJECTS = \
$(OBJS)\monolib_dummy.obj \
$(OBJS)\monolib_any.obj \
@@ -682,30 +684,30 @@ MONOLIB_OBJECTS = \
$(OBJS)\monolib_xml.obj \
$(OBJS)\monolib_xtixml.obj
BASEDLL_CFLAGS = /M$(__RUNTIME_LIBS_147)$(__DEBUGRUNTIME) /DWIN32 \
+ /I..\..\src\zlib /I..\..\src\regex /I..\..\src\expat\expat\lib \
$(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DwxUSE_GUI=0 /DWXMAKINGDLL_BASE /DwxUSE_BASE=1 \
- $(CPPFLAGS) $(CFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DwxUSE_GUI=0 \
+ /DWXMAKINGDLL_BASE /DwxUSE_BASE=1 $(CPPFLAGS) $(CFLAGS)
BASEDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_147)$(__DEBUGRUNTIME) /DWIN32 \
+ /I..\..\src\zlib /I..\..\src\regex /I..\..\src\expat\expat\lib \
$(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DwxUSE_GUI=0 /DWXMAKINGDLL_BASE /DwxUSE_BASE=1 \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
- /Fp"$(OBJS)\wxprec_basedll.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DwxUSE_GUI=0 \
+ /DWXMAKINGDLL_BASE /DwxUSE_BASE=1 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
+ /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_basedll.pch" $(CPPFLAGS) $(CXXFLAGS)
BASEDLL_OBJECTS = \
$(OBJS)\basedll_dummy.obj \
$(OBJS)\basedll_any.obj \
@@ -825,30 +827,30 @@ BASEDLL_OBJECTS = \
BASEDLL_RESOURCES = \
$(OBJS)\basedll_version.res
BASELIB_CFLAGS = /M$(__RUNTIME_LIBS_162)$(__DEBUGRUNTIME) /DWIN32 \
+ /I..\..\src\zlib /I..\..\src\regex /I..\..\src\expat\expat\lib \
$(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DwxUSE_GUI=0 /DwxUSE_BASE=1 $(CPPFLAGS) \
- $(CFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DwxUSE_GUI=0 \
+ /DwxUSE_BASE=1 $(CPPFLAGS) $(CFLAGS)
BASELIB_CXXFLAGS = /M$(__RUNTIME_LIBS_162)$(__DEBUGRUNTIME) /DWIN32 \
+ /I..\..\src\zlib /I..\..\src\regex /I..\..\src\expat\expat\lib \
$(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DwxUSE_GUI=0 /DwxUSE_BASE=1 $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_baselib.pch" \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DwxUSE_GUI=0 \
+ /DwxUSE_BASE=1 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_baselib.pch" $(CPPFLAGS) $(CXXFLAGS)
BASELIB_OBJECTS = \
$(OBJS)\baselib_dummy.obj \
$(OBJS)\baselib_any.obj \
@@ -966,18 +968,18 @@ BASELIB_OBJECTS = \
$(OBJS)\baselib_main.obj \
$(OBJS)\baselib_volume.obj
NETDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_178)$(__DEBUGRUNTIME) /DWIN32 \
+ /I..\..\src\zlib /I..\..\src\regex /I..\..\src\expat\expat\lib \
$(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DwxUSE_GUI=0 /DWXUSINGDLL /DWXMAKINGDLL_NET \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
- /Fp"$(OBJS)\wxprec_netdll.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DwxUSE_GUI=0 \
+ /DWXUSINGDLL /DWXMAKINGDLL_NET $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
+ /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_netdll.pch" $(CPPFLAGS) $(CXXFLAGS)
NETDLL_OBJECTS = \
$(OBJS)\netdll_dummy.obj \
$(OBJS)\netdll_fs_inet.obj \
@@ -995,17 +997,18 @@ NETDLL_OBJECTS = \
NETDLL_RESOURCES = \
$(OBJS)\netdll_version.res
NETLIB_CXXFLAGS = /M$(__RUNTIME_LIBS_193)$(__DEBUGRUNTIME) /DWIN32 \
+ /I..\..\src\zlib /I..\..\src\regex /I..\..\src\expat\expat\lib \
$(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DwxUSE_GUI=0 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_netlib.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DwxUSE_GUI=0 \
+ $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_netlib.pch" $(CPPFLAGS) $(CXXFLAGS)
NETLIB_OBJECTS = \
$(OBJS)\netlib_dummy.obj \
$(OBJS)\netlib_fs_inet.obj \
@@ -1021,18 +1024,18 @@ NETLIB_OBJECTS = \
$(OBJS)\netlib_sockmsw.obj \
$(OBJS)\netlib_urlmsw.obj
COREDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_209)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DWXUSINGDLL /DWXMAKINGDLL_CORE /DwxUSE_BASE=0 \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
- /Fp"$(OBJS)\wxprec_coredll.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DWXUSINGDLL \
+ /DWXMAKINGDLL_CORE /DwxUSE_BASE=0 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
+ /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_coredll.pch" $(CPPFLAGS) $(CXXFLAGS)
COREDLL_OBJECTS = \
$(OBJS)\coredll_dummy.obj \
$(OBJS)\coredll_event.obj \
@@ -1045,18 +1048,18 @@ COREDLL_OBJECTS = \
COREDLL_RESOURCES = \
$(OBJS)\coredll_version.res
CORELIB_CXXFLAGS = /M$(__RUNTIME_LIBS_224)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DwxUSE_BASE=0 $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_corelib.pch" \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DwxUSE_BASE=0 \
+ $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_corelib.pch" $(CPPFLAGS) $(CXXFLAGS)
CORELIB_OBJECTS = \
$(OBJS)\corelib_dummy.obj \
$(OBJS)\corelib_event.obj \
@@ -1067,49 +1070,50 @@ CORELIB_OBJECTS = \
$(OBJS)\corelib_volume.obj \
$(____CORE_SRC_FILENAMES_3_OBJECTS)
ADVDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_240)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DWXUSINGDLL /DWXMAKINGDLL_ADV $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_advdll.pch" \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DWXUSINGDLL \
+ /DWXMAKINGDLL_ADV $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_advdll.pch" $(CPPFLAGS) $(CXXFLAGS)
ADVDLL_OBJECTS = \
$(OBJS)\advdll_dummy.obj
ADVDLL_RESOURCES = \
$(OBJS)\advdll_version.res
ADVLIB_CXXFLAGS = /M$(__RUNTIME_LIBS_255)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_advlib.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_advlib.pch" \
+ $(CPPFLAGS) $(CXXFLAGS)
ADVLIB_OBJECTS = \
$(OBJS)\advlib_dummy.obj
MEDIADLL_CXXFLAGS = /M$(__RUNTIME_LIBS_271)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DWXUSINGDLL /DWXMAKINGDLL_MEDIA $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_mediadll.pch" \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DWXUSINGDLL \
+ /DWXMAKINGDLL_MEDIA $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_mediadll.pch" $(CPPFLAGS) $(CXXFLAGS)
MEDIADLL_OBJECTS = \
$(OBJS)\mediadll_dummy.obj \
$(OBJS)\mediadll_mediactrlcmn.obj \
@@ -1119,17 +1123,18 @@ MEDIADLL_OBJECTS = \
MEDIADLL_RESOURCES = \
$(OBJS)\mediadll_version.res
MEDIALIB_CXXFLAGS = /M$(__RUNTIME_LIBS_286)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_medialib.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_medialib.pch" \
+ $(CPPFLAGS) $(CXXFLAGS)
MEDIALIB_OBJECTS = \
$(OBJS)\medialib_dummy.obj \
$(OBJS)\medialib_mediactrlcmn.obj \
@@ -1137,18 +1142,18 @@ MEDIALIB_OBJECTS = \
$(OBJS)\medialib_mediactrl_wmp10.obj \
$(OBJS)\medialib_mediactrl_qt.obj
HTMLDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_302)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DWXUSINGDLL /DWXMAKINGDLL_HTML $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_htmldll.pch" \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DWXUSINGDLL \
+ /DWXMAKINGDLL_HTML $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_htmldll.pch" $(CPPFLAGS) $(CXXFLAGS)
HTMLDLL_OBJECTS = \
$(OBJS)\htmldll_dummy.obj \
$(OBJS)\htmldll_helpbest.obj \
@@ -1181,17 +1186,18 @@ HTMLDLL_OBJECTS = \
HTMLDLL_RESOURCES = \
$(OBJS)\htmldll_version.res
HTMLLIB_CXXFLAGS = /M$(__RUNTIME_LIBS_317)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_htmllib.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_htmllib.pch" \
+ $(CPPFLAGS) $(CXXFLAGS)
HTMLLIB_OBJECTS = \
$(OBJS)\htmllib_dummy.obj \
$(OBJS)\htmllib_helpbest.obj \
@@ -1222,19 +1228,19 @@ HTMLLIB_OBJECTS = \
$(OBJS)\htmllib_winpars.obj \
$(OBJS)\htmllib_htmllbox.obj
WEBVIEWDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_333)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DWXUSINGDLL /DWXMAKINGDLL_WEBVIEW \
- /I..\..\3rdparty\webview2\build\native\include $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_webviewdll.pch" \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DWXUSINGDLL \
+ /DWXMAKINGDLL_WEBVIEW /I..\..\3rdparty\webview2\build\native\include \
+ $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_webviewdll.pch" $(CPPFLAGS) $(CXXFLAGS)
WEBVIEWDLL_OBJECTS = \
$(OBJS)\webviewdll_dummy.obj \
$(OBJS)\webviewdll_webview_ie.obj \
@@ -1245,16 +1251,16 @@ WEBVIEWDLL_OBJECTS = \
WEBVIEWDLL_RESOURCES = \
$(OBJS)\webviewdll_version.res
WEBVIEWLIB_CXXFLAGS = /M$(__RUNTIME_LIBS_348)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib \
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING \
/I..\..\3rdparty\webview2\build\native\include $(__RTTIFLAG) \
$(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_webviewlib.pch" \
$(CPPFLAGS) $(CXXFLAGS)
@@ -1266,18 +1272,18 @@ WEBVIEWLIB_OBJECTS = \
$(OBJS)\webviewlib_webviewarchivehandler.obj \
$(OBJS)\webviewlib_webviewfshandler.obj
QADLL_CXXFLAGS = /M$(__RUNTIME_LIBS_364)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DWXUSINGDLL /DWXMAKINGDLL_QA $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_qadll.pch" \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DWXUSINGDLL \
+ /DWXMAKINGDLL_QA $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_qadll.pch" $(CPPFLAGS) $(CXXFLAGS)
QADLL_OBJECTS = \
$(OBJS)\qadll_dummy.obj \
$(OBJS)\qadll_debugrpt.obj \
@@ -1285,34 +1291,35 @@ QADLL_OBJECTS = \
QADLL_RESOURCES = \
$(OBJS)\qadll_version.res
QALIB_CXXFLAGS = /M$(__RUNTIME_LIBS_379)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_qalib.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_qalib.pch" \
+ $(CPPFLAGS) $(CXXFLAGS)
QALIB_OBJECTS = \
$(OBJS)\qalib_dummy.obj \
$(OBJS)\qalib_debugrpt.obj \
$(OBJS)\qalib_dbgrptg.obj
XMLDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_395)$(__DEBUGRUNTIME) /DWIN32 \
+ /I..\..\src\zlib /I..\..\src\regex /I..\..\src\expat\expat\lib \
$(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DwxUSE_GUI=0 /DWXUSINGDLL /DWXMAKINGDLL_XML \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
- /Fp"$(OBJS)\wxprec_xmldll.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DwxUSE_GUI=0 \
+ /DWXUSINGDLL /DWXMAKINGDLL_XML $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
+ /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_xmldll.pch" $(CPPFLAGS) $(CXXFLAGS)
XMLDLL_OBJECTS = \
$(OBJS)\xmldll_dummy.obj \
$(OBJS)\xmldll_xml.obj \
@@ -1320,34 +1327,35 @@ XMLDLL_OBJECTS = \
XMLDLL_RESOURCES = \
$(OBJS)\xmldll_version.res
XMLLIB_CXXFLAGS = /M$(__RUNTIME_LIBS_410)$(__DEBUGRUNTIME) /DWIN32 \
+ /I..\..\src\zlib /I..\..\src\regex /I..\..\src\expat\expat\lib \
$(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DwxUSE_GUI=0 $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_xmllib.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DwxUSE_GUI=0 \
+ $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_xmllib.pch" $(CPPFLAGS) $(CXXFLAGS)
XMLLIB_OBJECTS = \
$(OBJS)\xmllib_dummy.obj \
$(OBJS)\xmllib_xml.obj \
$(OBJS)\xmllib_xtixml.obj
XRCDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_426)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DWXUSINGDLL /DWXMAKINGDLL_XRC $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_xrcdll.pch" \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DWXUSINGDLL \
+ /DWXMAKINGDLL_XRC $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_xrcdll.pch" $(CPPFLAGS) $(CXXFLAGS)
XRCDLL_OBJECTS = \
$(OBJS)\xrcdll_dummy.obj \
$(OBJS)\xrcdll_xh_activityindicator.obj \
@@ -1422,17 +1430,18 @@ XRCDLL_OBJECTS = \
XRCDLL_RESOURCES = \
$(OBJS)\xrcdll_version.res
XRCLIB_CXXFLAGS = /M$(__RUNTIME_LIBS_441)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_xrclib.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_xrclib.pch" \
+ $(CPPFLAGS) $(CXXFLAGS)
XRCLIB_OBJECTS = \
$(OBJS)\xrclib_dummy.obj \
$(OBJS)\xrclib_xh_activityindicator.obj \
@@ -1505,18 +1514,18 @@ XRCLIB_OBJECTS = \
$(OBJS)\xrclib_xmladv.obj \
$(OBJS)\xrclib_xmlrsall.obj
AUIDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_457)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DWXUSINGDLL /DWXMAKINGDLL_AUI $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_auidll.pch" \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DWXUSINGDLL \
+ /DWXMAKINGDLL_AUI $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_auidll.pch" $(CPPFLAGS) $(CXXFLAGS)
AUIDLL_OBJECTS = \
$(OBJS)\auidll_dummy.obj \
$(OBJS)\auidll_framemanager.obj \
@@ -1533,17 +1542,18 @@ AUIDLL_OBJECTS = \
AUIDLL_RESOURCES = \
$(OBJS)\auidll_version.res
AUILIB_CXXFLAGS = /M$(__RUNTIME_LIBS_472)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_auilib.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_auilib.pch" \
+ $(CPPFLAGS) $(CXXFLAGS)
AUILIB_OBJECTS = \
$(OBJS)\auilib_dummy.obj \
$(OBJS)\auilib_framemanager.obj \
@@ -1558,18 +1568,18 @@ AUILIB_OBJECTS = \
$(OBJS)\auilib_tabartmsw.obj \
$(OBJS)\auilib_barartmsw.obj
RIBBONDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_488)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DWXUSINGDLL /DWXMAKINGDLL_RIBBON $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_ribbondll.pch" \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DWXUSINGDLL \
+ /DWXMAKINGDLL_RIBBON $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_ribbondll.pch" $(CPPFLAGS) $(CXXFLAGS)
RIBBONDLL_OBJECTS = \
$(OBJS)\ribbondll_dummy.obj \
$(OBJS)\ribbondll_art_internal.obj \
@@ -1586,17 +1596,18 @@ RIBBONDLL_OBJECTS = \
RIBBONDLL_RESOURCES = \
$(OBJS)\ribbondll_version.res
RIBBONLIB_CXXFLAGS = /M$(__RUNTIME_LIBS_503)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_ribbonlib.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_ribbonlib.pch" \
+ $(CPPFLAGS) $(CXXFLAGS)
RIBBONLIB_OBJECTS = \
$(OBJS)\ribbonlib_dummy.obj \
$(OBJS)\ribbonlib_art_internal.obj \
@@ -1611,17 +1622,17 @@ RIBBONLIB_OBJECTS = \
$(OBJS)\ribbonlib_toolbar.obj \
$(OBJS)\ribbonlib_xh_ribbon.obj
PROPGRIDDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_519)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DWXUSINGDLL /DWXMAKINGDLL_PROPGRID \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DWXUSINGDLL \
+ /DWXMAKINGDLL_PROPGRID $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
/Fp"$(OBJS)\wxprec_propgriddll.pch" $(CPPFLAGS) $(CXXFLAGS)
PROPGRIDDLL_OBJECTS = \
$(OBJS)\propgriddll_dummy.obj \
@@ -1636,18 +1647,18 @@ PROPGRIDDLL_OBJECTS = \
PROPGRIDDLL_RESOURCES = \
$(OBJS)\propgriddll_version.res
PROPGRIDLIB_CXXFLAGS = /M$(__RUNTIME_LIBS_534)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_propgridlib.pch" $(CPPFLAGS) \
- $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_propgridlib.pch" \
+ $(CPPFLAGS) $(CXXFLAGS)
PROPGRIDLIB_OBJECTS = \
$(OBJS)\propgridlib_dummy.obj \
$(OBJS)\propgridlib_advprops.obj \
@@ -1659,17 +1670,17 @@ PROPGRIDLIB_OBJECTS = \
$(OBJS)\propgridlib_propgridpagestate.obj \
$(OBJS)\propgridlib_props.obj
RICHTEXTDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_550)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DWXUSINGDLL /DWXMAKINGDLL_RICHTEXT \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DWXUSINGDLL \
+ /DWXMAKINGDLL_RICHTEXT $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
/Fp"$(OBJS)\wxprec_richtextdll.pch" $(CPPFLAGS) $(CXXFLAGS)
RICHTEXTDLL_OBJECTS = \
$(OBJS)\richtextdll_dummy.obj \
@@ -1687,18 +1698,18 @@ RICHTEXTDLL_OBJECTS = \
RICHTEXTDLL_RESOURCES = \
$(OBJS)\richtextdll_version.res
RICHTEXTLIB_CXXFLAGS = /M$(__RUNTIME_LIBS_565)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_richtextlib.pch" $(CPPFLAGS) \
- $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_richtextlib.pch" \
+ $(CPPFLAGS) $(CXXFLAGS)
RICHTEXTLIB_OBJECTS = \
$(OBJS)\richtextlib_dummy.obj \
$(OBJS)\richtextlib_richtextbuffer.obj \
@@ -1713,20 +1724,21 @@ RICHTEXTLIB_OBJECTS = \
$(OBJS)\richtextlib_richtextxml.obj \
$(OBJS)\richtextlib_xh_richtext.obj
STCDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_581)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /I..\..\src\stc\scintilla\include \
- /I..\..\src\stc\scintilla\lexlib /I..\..\src\stc\scintilla\src /D__WX__ \
- /DSCI_LEXER /DNO_CXX11_REGEX /DLINK_LEXERS /DWXUSINGDLL /DWXMAKINGDLL_STC \
- $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
- /Fp"$(OBJS)\wxprec_stcdll.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING \
+ /I..\..\src\stc\scintilla\include /I..\..\src\stc\scintilla\lexlib \
+ /I..\..\src\stc\scintilla\src /D__WX__ /DSCI_LEXER /DNO_CXX11_REGEX \
+ /DLINK_LEXERS /DWXUSINGDLL /DWXMAKINGDLL_STC $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_stcdll.pch" \
+ $(CPPFLAGS) $(CXXFLAGS)
STCDLL_OBJECTS = \
$(OBJS)\stcdll_dummy.obj \
$(OBJS)\stcdll_stc.obj \
@@ -1735,37 +1747,38 @@ STCDLL_OBJECTS = \
STCDLL_RESOURCES = \
$(OBJS)\stcdll_version.res
STCLIB_CXXFLAGS = /M$(__RUNTIME_LIBS_596)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /I..\..\src\stc\scintilla\include \
- /I..\..\src\stc\scintilla\lexlib /I..\..\src\stc\scintilla\src /D__WX__ \
- /DSCI_LEXER /DNO_CXX11_REGEX /DLINK_LEXERS $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_stclib.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING \
+ /I..\..\src\stc\scintilla\include /I..\..\src\stc\scintilla\lexlib \
+ /I..\..\src\stc\scintilla\src /D__WX__ /DSCI_LEXER /DNO_CXX11_REGEX \
+ /DLINK_LEXERS $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_stclib.pch" $(CPPFLAGS) $(CXXFLAGS)
STCLIB_OBJECTS = \
$(OBJS)\stclib_dummy.obj \
$(OBJS)\stclib_stc.obj \
$(OBJS)\stclib_PlatWX.obj \
$(OBJS)\stclib_ScintillaWX.obj
GLDLL_CXXFLAGS = /M$(__RUNTIME_LIBS_612)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG).pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib /DWXUSINGDLL /DWXMAKINGDLL_GL $(__RTTIFLAG) \
- $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_gldll.pch" \
- $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /DWXUSINGDLL \
+ /DWXMAKINGDLL_GL $(__RTTIFLAG) $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" \
+ /Fp"$(OBJS)\wxprec_gldll.pch" $(CPPFLAGS) $(CXXFLAGS)
GLDLL_OBJECTS = \
$(OBJS)\gldll_dummy.obj \
$(OBJS)\gldll_glcmn.obj \
@@ -1773,17 +1786,18 @@ GLDLL_OBJECTS = \
GLDLL_RESOURCES = \
$(OBJS)\gldll_version.res
GLLIB_CXXFLAGS = /M$(__RUNTIME_LIBS_627)$(__DEBUGRUNTIME) /DWIN32 \
- $(__DEBUGINFO) \
+ /I..\..\src\tiff\libtiff /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib \
+ /I..\..\src\regex /I..\..\src\expat\expat\lib $(__DEBUGINFO) \
/Fd$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl.pdb \
$(____DEBUGRUNTIME) $(__OPTIMIZEFLAG) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
- $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING /I..\..\src\tiff\libtiff \
- /I..\..\src\jpeg /I..\..\src\png /I..\..\src\zlib /I..\..\src\regex \
- /I..\..\src\expat\expat\lib $(__RTTIFLAG) $(__EXCEPTIONSFLAG) \
- /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_gllib.pch" $(CPPFLAGS) $(CXXFLAGS)
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I..\..\include \
+ $(____CAIRO_INCLUDEDIR_FILENAMES) /W4 /DWXBUILDING $(__RTTIFLAG) \
+ $(__EXCEPTIONSFLAG) /Yu"wx/wxprec.h" /Fp"$(OBJS)\wxprec_gllib.pch" \
+ $(CPPFLAGS) $(CXXFLAGS)
GLLIB_OBJECTS = \
$(OBJS)\gllib_dummy.obj \
$(OBJS)\gllib_glcmn.obj \
@@ -1804,6 +1818,12 @@ ARCH_SUFFIX = _ia64
!if "$(TARGET_CPU)" == "X64"
ARCH_SUFFIX = _x64
!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+ARCH_SUFFIX = _x64
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+ARCH_SUFFIX = _x64
+!endif
!if "$(TARGET_CPU)" == "amd64"
ARCH_SUFFIX = _x64
!endif
@@ -1870,6 +1890,12 @@ LINK_TARGET_CPU = /MACHINE:IA64
!if "$(TARGET_CPU)" == "X64"
LINK_TARGET_CPU = /MACHINE:X64
!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+LINK_TARGET_CPU = /MACHINE:X64
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+LINK_TARGET_CPU = /MACHINE:X64
+!endif
!if "$(TARGET_CPU)" == "amd64"
LINK_TARGET_CPU = /MACHINE:X64
!endif
@@ -1882,43 +1908,171 @@ LINK_TARGET_CPU = /MACHINE:IA64
!if "$(TARGET_CPU)" == "x64"
LINK_TARGET_CPU = /MACHINE:X64
!endif
-!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:../../include/wx/msw/wx_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/wx_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/wx_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:../../include/wx/msw/wx_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/wx_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/wx_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "16.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
@@ -2225,6 +2379,7 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_notifmsgrt.obj \
$(OBJS)\monodll_uuid.obj \
$(OBJS)\monodll_evtloop.obj \
+ $(OBJS)\monodll_access.obj \
$(OBJS)\monodll_clrpickerg.obj \
$(OBJS)\monodll_collpaneg.obj \
$(OBJS)\monodll_filepickerg.obj \
@@ -2261,7 +2416,6 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_nativdlg.obj \
$(OBJS)\monodll_nativewin.obj \
$(OBJS)\monodll_msw_notebook.obj \
- $(OBJS)\monodll_access.obj \
$(OBJS)\monodll_ownerdrw.obj \
$(OBJS)\monodll_progdlg.obj \
$(OBJS)\monodll_msw_radiobox.obj \
@@ -2284,7 +2438,6 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_treectrl.obj \
$(OBJS)\monodll_systhemectrl.obj \
$(OBJS)\monodll_customdraw.obj \
- $(OBJS)\monodll_animateg.obj \
$(OBJS)\monodll_commandlinkbutton.obj \
$(OBJS)\monodll_bmpcbox.obj \
$(OBJS)\monodll_hyperlink.obj \
@@ -2425,6 +2578,7 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_windowid.obj \
$(OBJS)\monodll_wrapsizer.obj \
$(OBJS)\monodll_xpmdecod.obj \
+ $(OBJS)\monodll_animateg.obj \
$(OBJS)\monodll_busyinfo.obj \
$(OBJS)\monodll_generic_buttonbar.obj \
$(OBJS)\monodll_choicdgg.obj \
@@ -2567,7 +2721,7 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_notifmsgrt.obj \
$(OBJS)\monodll_uuid.obj \
$(OBJS)\monodll_evtloop.obj \
- $(OBJS)\monodll_animateg.obj \
+ $(OBJS)\monodll_access.obj \
$(OBJS)\monodll_generic_accel.obj \
$(OBJS)\monodll_clrpickerg.obj \
$(OBJS)\monodll_collpaneg.obj \
@@ -2751,6 +2905,7 @@ ____CORE_SRC_FILENAMES_OBJECTS = \
$(OBJS)\monodll_windowid.obj \
$(OBJS)\monodll_wrapsizer.obj \
$(OBJS)\monodll_xpmdecod.obj \
+ $(OBJS)\monodll_animateg.obj \
$(OBJS)\monodll_busyinfo.obj \
$(OBJS)\monodll_generic_buttonbar.obj \
$(OBJS)\monodll_choicdgg.obj \
@@ -3065,6 +3220,7 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_notifmsgrt.obj \
$(OBJS)\monolib_uuid.obj \
$(OBJS)\monolib_evtloop.obj \
+ $(OBJS)\monolib_access.obj \
$(OBJS)\monolib_clrpickerg.obj \
$(OBJS)\monolib_collpaneg.obj \
$(OBJS)\monolib_filepickerg.obj \
@@ -3101,7 +3257,6 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_nativdlg.obj \
$(OBJS)\monolib_nativewin.obj \
$(OBJS)\monolib_msw_notebook.obj \
- $(OBJS)\monolib_access.obj \
$(OBJS)\monolib_ownerdrw.obj \
$(OBJS)\monolib_progdlg.obj \
$(OBJS)\monolib_msw_radiobox.obj \
@@ -3124,7 +3279,6 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_treectrl.obj \
$(OBJS)\monolib_systhemectrl.obj \
$(OBJS)\monolib_customdraw.obj \
- $(OBJS)\monolib_animateg.obj \
$(OBJS)\monolib_commandlinkbutton.obj \
$(OBJS)\monolib_bmpcbox.obj \
$(OBJS)\monolib_hyperlink.obj \
@@ -3265,6 +3419,7 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_windowid.obj \
$(OBJS)\monolib_wrapsizer.obj \
$(OBJS)\monolib_xpmdecod.obj \
+ $(OBJS)\monolib_animateg.obj \
$(OBJS)\monolib_busyinfo.obj \
$(OBJS)\monolib_generic_buttonbar.obj \
$(OBJS)\monolib_choicdgg.obj \
@@ -3407,7 +3562,7 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_notifmsgrt.obj \
$(OBJS)\monolib_uuid.obj \
$(OBJS)\monolib_evtloop.obj \
- $(OBJS)\monolib_animateg.obj \
+ $(OBJS)\monolib_access.obj \
$(OBJS)\monolib_generic_accel.obj \
$(OBJS)\monolib_clrpickerg.obj \
$(OBJS)\monolib_collpaneg.obj \
@@ -3591,6 +3746,7 @@ ____CORE_SRC_FILENAMES_1_OBJECTS = \
$(OBJS)\monolib_windowid.obj \
$(OBJS)\monolib_wrapsizer.obj \
$(OBJS)\monolib_xpmdecod.obj \
+ $(OBJS)\monolib_animateg.obj \
$(OBJS)\monolib_busyinfo.obj \
$(OBJS)\monolib_generic_buttonbar.obj \
$(OBJS)\monolib_choicdgg.obj \
@@ -3837,6 +3993,7 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_notifmsgrt.obj \
$(OBJS)\coredll_uuid.obj \
$(OBJS)\coredll_evtloop.obj \
+ $(OBJS)\coredll_access.obj \
$(OBJS)\coredll_clrpickerg.obj \
$(OBJS)\coredll_collpaneg.obj \
$(OBJS)\coredll_filepickerg.obj \
@@ -3873,7 +4030,6 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_nativdlg.obj \
$(OBJS)\coredll_nativewin.obj \
$(OBJS)\coredll_msw_notebook.obj \
- $(OBJS)\coredll_access.obj \
$(OBJS)\coredll_ownerdrw.obj \
$(OBJS)\coredll_progdlg.obj \
$(OBJS)\coredll_msw_radiobox.obj \
@@ -3896,7 +4052,6 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_treectrl.obj \
$(OBJS)\coredll_systhemectrl.obj \
$(OBJS)\coredll_customdraw.obj \
- $(OBJS)\coredll_animateg.obj \
$(OBJS)\coredll_commandlinkbutton.obj \
$(OBJS)\coredll_bmpcbox.obj \
$(OBJS)\coredll_hyperlink.obj \
@@ -4037,6 +4192,7 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_windowid.obj \
$(OBJS)\coredll_wrapsizer.obj \
$(OBJS)\coredll_xpmdecod.obj \
+ $(OBJS)\coredll_animateg.obj \
$(OBJS)\coredll_busyinfo.obj \
$(OBJS)\coredll_buttonbar.obj \
$(OBJS)\coredll_choicdgg.obj \
@@ -4179,7 +4335,7 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_notifmsgrt.obj \
$(OBJS)\coredll_uuid.obj \
$(OBJS)\coredll_evtloop.obj \
- $(OBJS)\coredll_animateg.obj \
+ $(OBJS)\coredll_access.obj \
$(OBJS)\coredll_generic_accel.obj \
$(OBJS)\coredll_clrpickerg.obj \
$(OBJS)\coredll_collpaneg.obj \
@@ -4363,6 +4519,7 @@ ____CORE_SRC_FILENAMES_2_OBJECTS = \
$(OBJS)\coredll_windowid.obj \
$(OBJS)\coredll_wrapsizer.obj \
$(OBJS)\coredll_xpmdecod.obj \
+ $(OBJS)\coredll_animateg.obj \
$(OBJS)\coredll_busyinfo.obj \
$(OBJS)\coredll_buttonbar.obj \
$(OBJS)\coredll_choicdgg.obj \
@@ -4515,6 +4672,7 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_notifmsgrt.obj \
$(OBJS)\corelib_uuid.obj \
$(OBJS)\corelib_evtloop.obj \
+ $(OBJS)\corelib_access.obj \
$(OBJS)\corelib_clrpickerg.obj \
$(OBJS)\corelib_collpaneg.obj \
$(OBJS)\corelib_filepickerg.obj \
@@ -4551,7 +4709,6 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_nativdlg.obj \
$(OBJS)\corelib_nativewin.obj \
$(OBJS)\corelib_msw_notebook.obj \
- $(OBJS)\corelib_access.obj \
$(OBJS)\corelib_ownerdrw.obj \
$(OBJS)\corelib_progdlg.obj \
$(OBJS)\corelib_msw_radiobox.obj \
@@ -4574,7 +4731,6 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_treectrl.obj \
$(OBJS)\corelib_systhemectrl.obj \
$(OBJS)\corelib_customdraw.obj \
- $(OBJS)\corelib_animateg.obj \
$(OBJS)\corelib_commandlinkbutton.obj \
$(OBJS)\corelib_bmpcbox.obj \
$(OBJS)\corelib_hyperlink.obj \
@@ -4715,6 +4871,7 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_windowid.obj \
$(OBJS)\corelib_wrapsizer.obj \
$(OBJS)\corelib_xpmdecod.obj \
+ $(OBJS)\corelib_animateg.obj \
$(OBJS)\corelib_busyinfo.obj \
$(OBJS)\corelib_buttonbar.obj \
$(OBJS)\corelib_choicdgg.obj \
@@ -4857,7 +5014,7 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_notifmsgrt.obj \
$(OBJS)\corelib_uuid.obj \
$(OBJS)\corelib_evtloop.obj \
- $(OBJS)\corelib_animateg.obj \
+ $(OBJS)\corelib_access.obj \
$(OBJS)\corelib_generic_accel.obj \
$(OBJS)\corelib_clrpickerg.obj \
$(OBJS)\corelib_collpaneg.obj \
@@ -5041,6 +5198,7 @@ ____CORE_SRC_FILENAMES_3_OBJECTS = \
$(OBJS)\corelib_windowid.obj \
$(OBJS)\corelib_wrapsizer.obj \
$(OBJS)\corelib_xpmdecod.obj \
+ $(OBJS)\corelib_animateg.obj \
$(OBJS)\corelib_busyinfo.obj \
$(OBJS)\corelib_buttonbar.obj \
$(OBJS)\corelib_choicdgg.obj \
@@ -5679,6 +5837,15 @@ __NO_VC_CRTDBG_p_72 = /d __NO_VC_CRTDBG__
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
__NO_VC_CRTDBG_p_72 = /d __NO_VC_CRTDBG__
!endif
+!if "$(TARGET_CPU)" == ""
+__TARGET_CPU_COMPFLAG_p_72 = /d TARGET_CPU_COMPFLAG=0
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+__TARGET_CPU_COMPFLAG_p_72 =
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+__TARGET_CPU_COMPFLAG_p_72 =
+!endif
!if "$(WXUNIV)" == "1"
__WXUNIV_DEFINE_p_67 = /d __WXUNIVERSAL__
!endif
@@ -5790,6 +5957,15 @@ __NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
__NO_VC_CRTDBG_p = /D__NO_VC_CRTDBG__
!endif
+!if "$(TARGET_CPU)" == ""
+__TARGET_CPU_COMPFLAG_p = /DTARGET_CPU_COMPFLAG=0
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+__TARGET_CPU_COMPFLAG_p =
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+__TARGET_CPU_COMPFLAG_p =
+!endif
!if "$(WXUNIV)" == "1"
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
!endif
@@ -5989,7 +6165,7 @@ $(LIBDIRNAME)\wxscintilla$(WXDEBUGFLAG).lib: $(WXSCINTILLA_OBJECTS)
!endif
!if "$(MONOLITHIC)" == "1" && "$(SHARED)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\monodll_dummy.obj $(MONODLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\monodll_version.res $(__wxscintilla_library_link_DEP)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\monodll_dummy.obj $(MONODLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\monodll_version.res $(__wxscintilla_library_link_DEP)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_108) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(MONODLL_OBJECTS) $(MONODLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(__wxscintilla) /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
<<
@@ -6004,7 +6180,7 @@ $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXD
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1"
-$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\basedll_dummy.obj $(BASEDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\basedll_version.res
+$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\basedll_dummy.obj $(BASEDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\basedll_version.res
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_139) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(BASEDLL_OBJECTS) $(BASEDLL_RESOURCES) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib /IMPLIB:$(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib
<<
@@ -6023,7 +6199,7 @@ wxbase: $(____wxbase_namedll_DEP) $(____wxbase_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1"
-$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\netdll_dummy.obj $(NETDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\netdll_version.res $(__basedll___depname)
+$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\netdll_dummy.obj $(NETDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\netdll_version.res $(__basedll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_170) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(NETDLL_OBJECTS) $(NETDLL_RESOURCES) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib /IMPLIB:$(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net.lib
<<
@@ -6042,7 +6218,7 @@ wxnet: $(____wxnet_namedll_DEP) $(____wxnet_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_GUI)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\coredll_dummy.obj $(COREDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\coredll_version.res $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\coredll_dummy.obj $(COREDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\coredll_version.res $(__basedll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_201) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(COREDLL_OBJECTS) $(COREDLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib
<<
@@ -6061,7 +6237,7 @@ wxcore: $(____wxcore_namedll_DEP) $(____wxcore_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_GUI)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\advdll_dummy.obj $(ADVDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\advdll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\advdll_dummy.obj $(ADVDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\advdll_version.res $(__coredll___depname) $(__basedll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_232) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(ADVDLL_OBJECTS) $(ADVDLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv.lib
<<
@@ -6080,7 +6256,7 @@ wxadv: $(____wxadv_namedll_DEP) $(____wxadv_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_GUI)" == "1" && "$(USE_MEDIA)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\mediadll_dummy.obj $(MEDIADLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\mediadll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\mediadll_dummy.obj $(MEDIADLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\mediadll_version.res $(__coredll___depname) $(__basedll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_263) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(MEDIADLL_OBJECTS) $(MEDIADLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media.lib
<<
@@ -6099,7 +6275,7 @@ wxmedia: $(____wxmedia_namedll_DEP) $(____wxmedia_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_GUI)" == "1" && "$(USE_HTML)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\htmldll_dummy.obj $(HTMLDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\htmldll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\htmldll_dummy.obj $(HTMLDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\htmldll_version.res $(__coredll___depname) $(__basedll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_294) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(HTMLDLL_OBJECTS) $(HTMLDLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html.lib
<<
@@ -6118,7 +6294,7 @@ wxhtml: $(____wxhtml_namedll_DEP) $(____wxhtml_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_GUI)" == "1" && "$(USE_WEBVIEW)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\webviewdll_dummy.obj $(WEBVIEWDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__coredll___depname) $(__basedll___depname) $(OBJS)\webviewdll_version.res
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\webviewdll_dummy.obj $(WEBVIEWDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(__coredll___depname) $(__basedll___depname) $(OBJS)\webviewdll_version.res
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_325) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(WEBVIEWDLL_OBJECTS) $(WEBVIEWDLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview.lib
<<
@@ -6137,7 +6313,7 @@ wxwebview: $(____wxwebview_namedll_DEP) $(____wxwebview_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_GUI)" == "1" && "$(USE_QA)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\qadll_dummy.obj $(QADLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\qadll_version.res $(__coredll___depname) $(__basedll___depname) $(__xmldll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\qadll_dummy.obj $(QADLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\qadll_version.res $(__coredll___depname) $(__basedll___depname) $(__xmldll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_356) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(QADLL_OBJECTS) $(QADLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa.lib
<<
@@ -6156,7 +6332,7 @@ wxqa: $(____wxqa_namedll_DEP) $(____wxqa_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1"
-$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\xmldll_dummy.obj $(XMLDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\xmldll_version.res $(__basedll___depname)
+$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\xmldll_dummy.obj $(XMLDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\xmldll_version.res $(__basedll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_387) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(XMLDLL_OBJECTS) $(XMLDLL_RESOURCES) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib /IMPLIB:$(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib
<<
@@ -6175,7 +6351,7 @@ wxxml: $(____wxxml_namedll_DEP) $(____wxxml_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_XRC)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\xrcdll_dummy.obj $(XRCDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\xrcdll_version.res $(__htmldll_library_link_DEP) $(__coredll___depname) $(__xmldll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\xrcdll_dummy.obj $(XRCDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\xrcdll_version.res $(__htmldll_library_link_DEP) $(__coredll___depname) $(__xmldll___depname) $(__basedll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_418) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(XRCDLL_OBJECTS) $(XRCDLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(__htmldll_library_link_LIBR) $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc.lib
<<
@@ -6194,7 +6370,7 @@ wxxrc: $(____wxxrc_namedll_DEP) $(____wxxrc_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_AUI)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\auidll_dummy.obj $(AUIDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\auidll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\auidll_dummy.obj $(AUIDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\auidll_version.res $(__coredll___depname) $(__basedll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_449) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(AUIDLL_OBJECTS) $(AUIDLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui.lib
<<
@@ -6213,7 +6389,7 @@ wxaui: $(____wxaui_namedll_DEP) $(____wxaui_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_RIBBON)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\ribbondll_dummy.obj $(RIBBONDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\ribbondll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\ribbondll_dummy.obj $(RIBBONDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\ribbondll_version.res $(__coredll___depname) $(__basedll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_480) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(RIBBONDLL_OBJECTS) $(RIBBONDLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon.lib
<<
@@ -6232,7 +6408,7 @@ wxribbon: $(____wxribbon_namedll_DEP) $(____wxribbon_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_PROPGRID)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\propgriddll_dummy.obj $(PROPGRIDDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\propgriddll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\propgriddll_dummy.obj $(PROPGRIDDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\propgriddll_version.res $(__coredll___depname) $(__basedll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_511) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(PROPGRIDDLL_OBJECTS) $(PROPGRIDDLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid.lib
<<
@@ -6251,7 +6427,7 @@ wxpropgrid: $(____wxpropgrid_namedll_DEP) $(____wxpropgrid_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_RICHTEXT)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\richtextdll_dummy.obj $(RICHTEXTDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\richtextdll_version.res $(__htmldll_library_link_DEP) $(__xmldll___depname) $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\richtextdll_dummy.obj $(RICHTEXTDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\richtextdll_version.res $(__htmldll_library_link_DEP) $(__xmldll___depname) $(__coredll___depname) $(__basedll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_542) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(RICHTEXTDLL_OBJECTS) $(RICHTEXTDLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(__htmldll_library_link_LIBR) $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml.lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext.lib
<<
@@ -6270,7 +6446,7 @@ wxrichtext: $(____wxrichtext_namedll_DEP) $(____wxrichtext_namelib_DEP)
!endif
!if "$(MONOLITHIC)" == "0" && "$(SHARED)" == "1" && "$(USE_STC)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\stcdll_dummy.obj $(STCDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxscintilla) $(OBJS)\stcdll_version.res $(__coredll___depname) $(__basedll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\stcdll_dummy.obj $(STCDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(__wxscintilla) $(OBJS)\stcdll_version.res $(__coredll___depname) $(__basedll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_573) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(STCDLL_OBJECTS) $(STCDLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(LIBDIRNAME)\wxscintilla$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core.lib $(LIBDIRNAME)\wxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR).lib /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc.lib
<<
@@ -6289,7 +6465,7 @@ wxstc: $(____wxstc_namedll_DEP) $(____wxstc_namelib_DEP)
!endif
!if "$(SHARED)" == "1" && "$(USE_GUI)" == "1" && "$(USE_OPENGL)" == "1"
-$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\gldll_dummy.obj $(GLDLL_OBJECTS) $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(OBJS)\gldll_version.res $(__basedll___depname) $(__coredll___depname) $(__monodll___depname)
+$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG).dll: $(OBJS)\gldll_dummy.obj $(GLDLL_OBJECTS) $(LIBDIRNAME)\wxexpat$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxzlib$(WXDEBUGFLAG).lib $(LIBDIRNAME)\wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib $(__wxtiff___depname) $(__wxjpeg___depname) $(__wxpng___depname) $(__wxscintilla) $(OBJS)\gldll_version.res $(__basedll___depname) $(__coredll___depname) $(__monodll___depname)
link /DLL /NOLOGO /OUT:$@ $(__DEBUGINFO_6) /pdb:"$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG).pdb" $(__DEBUGINFO_604) $(WIN32_DPI_LINKFLAG) $(LINK_TARGET_CPU) /LIBPATH:$(LIBDIRNAME) $(____CAIRO_LIBDIR_FILENAMES) $(LDFLAGS) @<<
$(GLDLL_OBJECTS) $(GLDLL_RESOURCES) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) wxzlib$(WXDEBUGFLAG).lib wxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG).lib wxexpat$(WXDEBUGFLAG).lib $(EXTRALIBS_FOR_BASE) $(__CAIRO_LIB_p) kernel32.lib user32.lib gdi32.lib comdlg32.lib winspool.lib winmm.lib shell32.lib shlwapi.lib comctl32.lib ole32.lib oleaut32.lib uuid.lib rpcrt4.lib advapi32.lib version.lib wsock32.lib wininet.lib $(__WXLIBGLDEP_CORE_p) $(__WXLIBGLDEP_BASE_p) $(__WXLIB_MONO_p) opengl32.lib glu32.lib /IMPLIB:$(LIBDIRNAME)\wx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl.lib
<<
@@ -6331,7 +6507,7 @@ $(SETUPHDIR)\wx\msw: $(SETUPHDIR)\wx
if not exist $(SETUPHDIR)\wx\msw mkdir $(SETUPHDIR)\wx\msw
$(SETUPHDIR)\wx\msw\rcdefs.h: $(SETUPHDIR)\wx\msw ..\..\include\wx\msw\genrcdefs.h
- $(CPP) "..\..\include\wx\msw\genrcdefs.h" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
+ $(CPP) $(CPPFLAGS) "..\..\include\wx\msw\genrcdefs.h" > "$(SETUPHDIR)\wx\msw\rcdefs.h"
build_cfg_file: $(SETUPHDIR)
@echo WXVER_MAJOR=3 >$(BUILD_CFG_FILE)
@@ -7646,9 +7822,6 @@ $(OBJS)\monodll_nativewin.obj: ..\..\src\msw\nativewin.cpp
$(OBJS)\monodll_msw_notebook.obj: ..\..\src\msw\notebook.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\msw\notebook.cpp
-$(OBJS)\monodll_access.obj: ..\..\src\msw\ole\access.cpp
- $(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\msw\ole\access.cpp
-
$(OBJS)\monodll_ownerdrw.obj: ..\..\src\msw\ownerdrw.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\msw\ownerdrw.cpp
@@ -8684,6 +8857,11 @@ $(OBJS)\monodll_evtloop.obj: ..\..\src\msw\evtloop.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\msw\evtloop.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\monodll_access.obj: ..\..\src\msw\ole\access.cpp
+ $(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\msw\ole\access.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\monodll_clrpickerg.obj: ..\..\src\generic\clrpickerg.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\generic\clrpickerg.cpp
@@ -8709,11 +8887,6 @@ $(OBJS)\monodll_prntdlgg.obj: ..\..\src\generic\prntdlgg.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\generic\prntdlgg.cpp
!endif
-!if "$(USE_GUI)" == "1"
-$(OBJS)\monodll_animateg.obj: ..\..\src\generic\animateg.cpp
- $(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\generic\animateg.cpp
-!endif
-
!if "$(USE_GUI)" == "1"
$(OBJS)\monodll_activityindicator.obj: ..\..\src\generic\activityindicator.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\generic\activityindicator.cpp
@@ -9359,6 +9532,11 @@ $(OBJS)\monodll_xpmdecod.obj: ..\..\src\common\xpmdecod.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\common\xpmdecod.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\monodll_animateg.obj: ..\..\src\generic\animateg.cpp
+ $(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\generic\animateg.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\monodll_busyinfo.obj: ..\..\src\generic\busyinfo.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONODLL_CXXFLAGS) ..\..\src\generic\busyinfo.cpp
@@ -9725,7 +9903,7 @@ $(OBJS)\monodll_rowheightcache.obj: ..\..\src\generic\rowheightcache.cpp
!endif
$(OBJS)\monodll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /i ..\..\src\stc\scintilla\include /i ..\..\src\stc\scintilla\lexlib /i ..\..\src\stc\scintilla\src /d __WX__ /d SCI_LEXER /d NO_CXX11_REGEX /d LINK_LEXERS /d wxUSE_BASE=1 /d WXMAKINGDLL ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\stc\scintilla\include /i ..\..\src\stc\scintilla\lexlib /i ..\..\src\stc\scintilla\src /d __WX__ /d SCI_LEXER /d NO_CXX11_REGEX /d LINK_LEXERS /d wxUSE_BASE=1 /d WXMAKINGDLL ..\..\src\msw\version.rc
$(OBJS)\monolib_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
@@ -10201,9 +10379,6 @@ $(OBJS)\monolib_nativewin.obj: ..\..\src\msw\nativewin.cpp
$(OBJS)\monolib_msw_notebook.obj: ..\..\src\msw\notebook.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\msw\notebook.cpp
-$(OBJS)\monolib_access.obj: ..\..\src\msw\ole\access.cpp
- $(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\msw\ole\access.cpp
-
$(OBJS)\monolib_ownerdrw.obj: ..\..\src\msw\ownerdrw.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\msw\ownerdrw.cpp
@@ -11239,6 +11414,11 @@ $(OBJS)\monolib_evtloop.obj: ..\..\src\msw\evtloop.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\msw\evtloop.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\monolib_access.obj: ..\..\src\msw\ole\access.cpp
+ $(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\msw\ole\access.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\monolib_clrpickerg.obj: ..\..\src\generic\clrpickerg.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\generic\clrpickerg.cpp
@@ -11264,11 +11444,6 @@ $(OBJS)\monolib_prntdlgg.obj: ..\..\src\generic\prntdlgg.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\generic\prntdlgg.cpp
!endif
-!if "$(USE_GUI)" == "1"
-$(OBJS)\monolib_animateg.obj: ..\..\src\generic\animateg.cpp
- $(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\generic\animateg.cpp
-!endif
-
!if "$(USE_GUI)" == "1"
$(OBJS)\monolib_activityindicator.obj: ..\..\src\generic\activityindicator.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\generic\activityindicator.cpp
@@ -11914,6 +12089,11 @@ $(OBJS)\monolib_xpmdecod.obj: ..\..\src\common\xpmdecod.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\common\xpmdecod.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\monolib_animateg.obj: ..\..\src\generic\animateg.cpp
+ $(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\generic\animateg.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\monolib_busyinfo.obj: ..\..\src\generic\busyinfo.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MONOLIB_CXXFLAGS) ..\..\src\generic\busyinfo.cpp
@@ -12283,7 +12463,7 @@ $(OBJS)\basedll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(BASEDLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\basedll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d wxUSE_GUI=0 /d WXMAKINGDLL_BASE /d wxUSE_BASE=1 ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)$(WXCOMPILER)$(VENDORTAG) /d wxUSE_GUI=0 /d WXMAKINGDLL_BASE /d wxUSE_BASE=1 ..\..\src\msw\version.rc
$(OBJS)\basedll_any.obj: ..\..\src\common\any.cpp
$(CXX) /c /nologo /TP /Fo$@ $(BASEDLL_CXXFLAGS) ..\..\src\common\any.cpp
@@ -12976,7 +13156,7 @@ $(OBJS)\netdll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(NETDLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\netdll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d wxUSE_GUI=0 /d WXUSINGDLL /d WXMAKINGDLL_NET ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_net$(WXCOMPILER)$(VENDORTAG) /d wxUSE_GUI=0 /d WXUSINGDLL /d WXMAKINGDLL_NET ..\..\src\msw\version.rc
$(OBJS)\netdll_fs_inet.obj: ..\..\src\common\fs_inet.cpp
$(CXX) /c /nologo /TP /Fo$@ $(NETDLL_CXXFLAGS) ..\..\src\common\fs_inet.cpp
@@ -13057,7 +13237,7 @@ $(OBJS)\coredll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\coredll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d WXUSINGDLL /d WXMAKINGDLL_CORE /d wxUSE_BASE=0 ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core$(WXCOMPILER)$(VENDORTAG) /d WXUSINGDLL /d WXMAKINGDLL_CORE /d wxUSE_BASE=0 ..\..\src\msw\version.rc
$(OBJS)\coredll_event.obj: ..\..\src\common\event.cpp
$(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) ..\..\src\common\event.cpp
@@ -13170,9 +13350,6 @@ $(OBJS)\coredll_nativewin.obj: ..\..\src\msw\nativewin.cpp
$(OBJS)\coredll_msw_notebook.obj: ..\..\src\msw\notebook.cpp
$(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) ..\..\src\msw\notebook.cpp
-$(OBJS)\coredll_access.obj: ..\..\src\msw\ole\access.cpp
- $(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) ..\..\src\msw\ole\access.cpp
-
$(OBJS)\coredll_ownerdrw.obj: ..\..\src\msw\ownerdrw.cpp
$(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) ..\..\src\msw\ownerdrw.cpp
@@ -13749,6 +13926,11 @@ $(OBJS)\coredll_evtloop.obj: ..\..\src\msw\evtloop.cpp
$(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) ..\..\src\msw\evtloop.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\coredll_access.obj: ..\..\src\msw\ole\access.cpp
+ $(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) ..\..\src\msw\ole\access.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\coredll_clrpickerg.obj: ..\..\src\generic\clrpickerg.cpp
$(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) ..\..\src\generic\clrpickerg.cpp
@@ -13774,11 +13956,6 @@ $(OBJS)\coredll_prntdlgg.obj: ..\..\src\generic\prntdlgg.cpp
$(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) ..\..\src\generic\prntdlgg.cpp
!endif
-!if "$(USE_GUI)" == "1"
-$(OBJS)\coredll_animateg.obj: ..\..\src\generic\animateg.cpp
- $(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) ..\..\src\generic\animateg.cpp
-!endif
-
!if "$(USE_GUI)" == "1"
$(OBJS)\coredll_activityindicator.obj: ..\..\src\generic\activityindicator.cpp
$(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) ..\..\src\generic\activityindicator.cpp
@@ -14424,6 +14601,11 @@ $(OBJS)\coredll_xpmdecod.obj: ..\..\src\common\xpmdecod.cpp
$(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) ..\..\src\common\xpmdecod.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\coredll_animateg.obj: ..\..\src\generic\animateg.cpp
+ $(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) ..\..\src\generic\animateg.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\coredll_busyinfo.obj: ..\..\src\generic\busyinfo.cpp
$(CXX) /c /nologo /TP /Fo$@ $(COREDLL_CXXFLAGS) ..\..\src\generic\busyinfo.cpp
@@ -14903,9 +15085,6 @@ $(OBJS)\corelib_nativewin.obj: ..\..\src\msw\nativewin.cpp
$(OBJS)\corelib_msw_notebook.obj: ..\..\src\msw\notebook.cpp
$(CXX) /c /nologo /TP /Fo$@ $(CORELIB_CXXFLAGS) ..\..\src\msw\notebook.cpp
-$(OBJS)\corelib_access.obj: ..\..\src\msw\ole\access.cpp
- $(CXX) /c /nologo /TP /Fo$@ $(CORELIB_CXXFLAGS) ..\..\src\msw\ole\access.cpp
-
$(OBJS)\corelib_ownerdrw.obj: ..\..\src\msw\ownerdrw.cpp
$(CXX) /c /nologo /TP /Fo$@ $(CORELIB_CXXFLAGS) ..\..\src\msw\ownerdrw.cpp
@@ -15482,6 +15661,11 @@ $(OBJS)\corelib_evtloop.obj: ..\..\src\msw\evtloop.cpp
$(CXX) /c /nologo /TP /Fo$@ $(CORELIB_CXXFLAGS) ..\..\src\msw\evtloop.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\corelib_access.obj: ..\..\src\msw\ole\access.cpp
+ $(CXX) /c /nologo /TP /Fo$@ $(CORELIB_CXXFLAGS) ..\..\src\msw\ole\access.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\corelib_clrpickerg.obj: ..\..\src\generic\clrpickerg.cpp
$(CXX) /c /nologo /TP /Fo$@ $(CORELIB_CXXFLAGS) ..\..\src\generic\clrpickerg.cpp
@@ -15507,11 +15691,6 @@ $(OBJS)\corelib_prntdlgg.obj: ..\..\src\generic\prntdlgg.cpp
$(CXX) /c /nologo /TP /Fo$@ $(CORELIB_CXXFLAGS) ..\..\src\generic\prntdlgg.cpp
!endif
-!if "$(USE_GUI)" == "1"
-$(OBJS)\corelib_animateg.obj: ..\..\src\generic\animateg.cpp
- $(CXX) /c /nologo /TP /Fo$@ $(CORELIB_CXXFLAGS) ..\..\src\generic\animateg.cpp
-!endif
-
!if "$(USE_GUI)" == "1"
$(OBJS)\corelib_activityindicator.obj: ..\..\src\generic\activityindicator.cpp
$(CXX) /c /nologo /TP /Fo$@ $(CORELIB_CXXFLAGS) ..\..\src\generic\activityindicator.cpp
@@ -16157,6 +16336,11 @@ $(OBJS)\corelib_xpmdecod.obj: ..\..\src\common\xpmdecod.cpp
$(CXX) /c /nologo /TP /Fo$@ $(CORELIB_CXXFLAGS) ..\..\src\common\xpmdecod.cpp
!endif
+!if "$(USE_GUI)" == "1"
+$(OBJS)\corelib_animateg.obj: ..\..\src\generic\animateg.cpp
+ $(CXX) /c /nologo /TP /Fo$@ $(CORELIB_CXXFLAGS) ..\..\src\generic\animateg.cpp
+!endif
+
!if "$(USE_GUI)" == "1"
$(OBJS)\corelib_busyinfo.obj: ..\..\src\generic\busyinfo.cpp
$(CXX) /c /nologo /TP /Fo$@ $(CORELIB_CXXFLAGS) ..\..\src\generic\busyinfo.cpp
@@ -16526,7 +16710,7 @@ $(OBJS)\advdll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(ADVDLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\advdll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d WXUSINGDLL /d WXMAKINGDLL_ADV ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_adv$(WXCOMPILER)$(VENDORTAG) /d WXUSINGDLL /d WXMAKINGDLL_ADV ..\..\src\msw\version.rc
$(OBJS)\advlib_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(ADVLIB_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
@@ -16535,7 +16719,7 @@ $(OBJS)\mediadll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MEDIADLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\mediadll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d WXUSINGDLL /d WXMAKINGDLL_MEDIA ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_media$(WXCOMPILER)$(VENDORTAG) /d WXUSINGDLL /d WXMAKINGDLL_MEDIA ..\..\src\msw\version.rc
$(OBJS)\mediadll_mediactrlcmn.obj: ..\..\src\common\mediactrlcmn.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MEDIADLL_CXXFLAGS) ..\..\src\common\mediactrlcmn.cpp
@@ -16568,7 +16752,7 @@ $(OBJS)\htmldll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(HTMLDLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\htmldll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d WXUSINGDLL /d WXMAKINGDLL_HTML ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_html$(WXCOMPILER)$(VENDORTAG) /d WXUSINGDLL /d WXMAKINGDLL_HTML ..\..\src\msw\version.rc
$(OBJS)\htmldll_helpbest.obj: ..\..\src\msw\helpbest.cpp
$(CXX) /c /nologo /TP /Fo$@ $(HTMLDLL_CXXFLAGS) ..\..\src\msw\helpbest.cpp
@@ -16754,7 +16938,7 @@ $(OBJS)\webviewdll_webviewfshandler.obj: ..\..\src\common\webviewfshandler.cpp
$(CXX) /c /nologo /TP /Fo$@ $(WEBVIEWDLL_CXXFLAGS) ..\..\src\common\webviewfshandler.cpp
$(OBJS)\webviewdll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d WXUSINGDLL /d WXMAKINGDLL_WEBVIEW /i ..\..\3rdparty\webview2\build\native\include ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_webview$(WXCOMPILER)$(VENDORTAG) /d WXUSINGDLL /d WXMAKINGDLL_WEBVIEW /i ..\..\3rdparty\webview2\build\native\include ..\..\src\msw\version.rc
$(OBJS)\webviewlib_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(WEBVIEWLIB_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
@@ -16778,7 +16962,7 @@ $(OBJS)\qadll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(QADLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\qadll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d WXUSINGDLL /d WXMAKINGDLL_QA ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_qa$(WXCOMPILER)$(VENDORTAG) /d WXUSINGDLL /d WXMAKINGDLL_QA ..\..\src\msw\version.rc
$(OBJS)\qadll_debugrpt.obj: ..\..\src\common\debugrpt.cpp
$(CXX) /c /nologo /TP /Fo$@ $(QADLL_CXXFLAGS) ..\..\src\common\debugrpt.cpp
@@ -16799,7 +16983,7 @@ $(OBJS)\xmldll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(XMLDLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\xmldll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d wxUSE_GUI=0 /d WXUSINGDLL /d WXMAKINGDLL_XML ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wxbase$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xml$(WXCOMPILER)$(VENDORTAG) /d wxUSE_GUI=0 /d WXUSINGDLL /d WXMAKINGDLL_XML ..\..\src\msw\version.rc
$(OBJS)\xmldll_xml.obj: ..\..\src\xml\xml.cpp
$(CXX) /c /nologo /TP /Fo$@ $(XMLDLL_CXXFLAGS) ..\..\src\xml\xml.cpp
@@ -16820,7 +17004,7 @@ $(OBJS)\xrcdll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(XRCDLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\xrcdll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d WXUSINGDLL /d WXMAKINGDLL_XRC ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_xrc$(WXCOMPILER)$(VENDORTAG) /d WXUSINGDLL /d WXMAKINGDLL_XRC ..\..\src\msw\version.rc
$(OBJS)\xrcdll_xh_activityindicator.obj: ..\..\src\xrc\xh_activityindicator.cpp
$(CXX) /c /nologo /TP /Fo$@ $(XRCDLL_CXXFLAGS) ..\..\src\xrc\xh_activityindicator.cpp
@@ -17243,7 +17427,7 @@ $(OBJS)\auidll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(AUIDLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\auidll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d WXUSINGDLL /d WXMAKINGDLL_AUI ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_aui$(WXCOMPILER)$(VENDORTAG) /d WXUSINGDLL /d WXMAKINGDLL_AUI ..\..\src\msw\version.rc
$(OBJS)\auidll_framemanager.obj: ..\..\src\aui\framemanager.cpp
$(CXX) /c /nologo /TP /Fo$@ $(AUIDLL_CXXFLAGS) ..\..\src\aui\framemanager.cpp
@@ -17318,7 +17502,7 @@ $(OBJS)\ribbondll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(RIBBONDLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\ribbondll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d WXUSINGDLL /d WXMAKINGDLL_RIBBON ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_ribbon$(WXCOMPILER)$(VENDORTAG) /d WXUSINGDLL /d WXMAKINGDLL_RIBBON ..\..\src\msw\version.rc
$(OBJS)\ribbondll_art_internal.obj: ..\..\src\ribbon\art_internal.cpp
$(CXX) /c /nologo /TP /Fo$@ $(RIBBONDLL_CXXFLAGS) ..\..\src\ribbon\art_internal.cpp
@@ -17393,7 +17577,7 @@ $(OBJS)\propgriddll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRIDDLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\propgriddll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d WXUSINGDLL /d WXMAKINGDLL_PROPGRID ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_propgrid$(WXCOMPILER)$(VENDORTAG) /d WXUSINGDLL /d WXMAKINGDLL_PROPGRID ..\..\src\msw\version.rc
$(OBJS)\propgriddll_advprops.obj: ..\..\src\propgrid\advprops.cpp
$(CXX) /c /nologo /TP /Fo$@ $(PROPGRIDDLL_CXXFLAGS) ..\..\src\propgrid\advprops.cpp
@@ -17450,7 +17634,7 @@ $(OBJS)\richtextdll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(RICHTEXTDLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\richtextdll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d WXUSINGDLL /d WXMAKINGDLL_RICHTEXT ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_richtext$(WXCOMPILER)$(VENDORTAG) /d WXUSINGDLL /d WXMAKINGDLL_RICHTEXT ..\..\src\msw\version.rc
$(OBJS)\richtextdll_richtextbuffer.obj: ..\..\src\richtext\richtextbuffer.cpp
$(CXX) /c /nologo /TP /Fo$@ $(RICHTEXTDLL_CXXFLAGS) ..\..\src\richtext\richtextbuffer.cpp
@@ -17525,7 +17709,7 @@ $(OBJS)\stcdll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(STCDLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\stcdll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /i ..\..\src\stc\scintilla\include /i ..\..\src\stc\scintilla\lexlib /i ..\..\src\stc\scintilla\src /d __WX__ /d SCI_LEXER /d NO_CXX11_REGEX /d LINK_LEXERS /d WXUSINGDLL /d WXMAKINGDLL_STC ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_stc$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\stc\scintilla\include /i ..\..\src\stc\scintilla\lexlib /i ..\..\src\stc\scintilla\src /d __WX__ /d SCI_LEXER /d NO_CXX11_REGEX /d LINK_LEXERS /d WXUSINGDLL /d WXMAKINGDLL_STC ..\..\src\msw\version.rc
$(OBJS)\stcdll_stc.obj: ..\..\src\stc\stc.cpp
$(CXX) /c /nologo /TP /Fo$@ $(STCDLL_CXXFLAGS) ..\..\src\stc\stc.cpp
@@ -17552,7 +17736,7 @@ $(OBJS)\gldll_dummy.obj: ..\..\src\common\dummy.cpp
$(CXX) /c /nologo /TP /Fo$@ $(GLDLL_CXXFLAGS) /Ycwx/wxprec.h ..\..\src\common\dummy.cpp
$(OBJS)\gldll_version.res: ..\..\src\msw\version.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG) /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib /d WXUSINGDLL /d WXMAKINGDLL_GL ..\..\src\msw\version.rc
+ rc /fo$@ /d WIN32 /i ..\..\src\tiff\libtiff /i ..\..\src\jpeg /i ..\..\src\png /i ..\..\src\zlib /i ..\..\src\regex /i ..\..\src\expat\expat\lib $(____DEBUGRUNTIME_6) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_72) $(__TARGET_CPU_COMPFLAG_p_72) /d __WXMSW__ $(__WXUNIV_DEFINE_p_67) $(__DEBUG_DEFINE_p_66) $(__NDEBUG_DEFINE_p_65) $(__EXCEPTIONS_DEFINE_p_65) $(__RTTI_DEFINE_p_65) $(__THREAD_DEFINE_p_65) $(__UNICODE_DEFINE_p_67) /i $(SETUPHDIR) /i ..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_4) /d WXBUILDING /d WXDLLNAME=wx$(PORTNAME)$(WXUNIVNAME)$(WX_VERSION_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_gl$(WXCOMPILER)$(VENDORTAG) /d WXUSINGDLL /d WXMAKINGDLL_GL ..\..\src\msw\version.rc
$(OBJS)\gldll_glcmn.obj: ..\..\src\common\glcmn.cpp
$(CXX) /c /nologo /TP /Fo$@ $(GLDLL_CXXFLAGS) ..\..\src\common\glcmn.cpp
diff --git a/build/msw/wx_vc7_adv.vcproj b/build/msw/wx_vc7_adv.vcproj
index ceaeb1d96e..82f6a4ae90 100644
--- a/build/msw/wx_vc7_adv.vcproj
+++ b/build/msw/wx_vc7_adv.vcproj
@@ -27,7 +27,7 @@
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include;..\..\src\stc\scintilla\include;..\..\src\stc\scintilla\lexlib;..\..\src\stc\scintilla\src"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include;..\..\src\stc\scintilla\include;..\..\src\stc\scintilla\lexlib;..\..\src\stc\scintilla\src"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include;..\..\src\stc\scintilla\include;..\..\src\stc\scintilla\lexlib;..\..\src\stc\scintilla\src"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include;..\..\src\stc\scintilla\include;..\..\src\stc\scintilla\lexlib;..\..\src\stc\scintilla\src"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include;..\..\src\stc\scintilla\include;..\..\src\stc\scintilla\lexlib;..\..\src\stc\scintilla\src"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include;..\..\src\stc\scintilla\include;..\..\src\stc\scintilla\lexlib;..\..\src\stc\scintilla\src"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include;..\..\src\stc\scintilla\include;..\..\src\stc\scintilla\lexlib;..\..\src\stc\scintilla\src"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include;..\..\src\stc\scintilla\include;..\..\src\stc\scintilla\lexlib;..\..\src\stc\scintilla\src"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include;..\..\3rdparty\webview2\build\native\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include;..\..\3rdparty\webview2\build\native\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include;..\..\3rdparty\webview2\build\native\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include;..\..\3rdparty\webview2\build\native\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include;..\..\3rdparty\webview2\build\native\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include;..\..\3rdparty\webview2\build\native\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include;..\..\3rdparty\webview2\build\native\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include;..\..\3rdparty\webview2\build\native\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_lib\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswud;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
+ AdditionalIncludeDirectories="..\..\src\tiff\libtiff;..\..\src\jpeg;..\..\src\png;..\..\src\zlib;..\..\src\regex;..\..\src\expat\expat\lib;..\..\lib\vc_dll\mswu;..\..\include"/>
&5
$as_echo_n "checking for $ac_word... " >&6; }
if ${ac_cv_path_PKG_CONFIG+:} false; then :
@@ -22983,7 +22981,6 @@ done
done
IFS=$as_save_IFS
- test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no"
;;
esac
fi
@@ -22997,23 +22994,87 @@ $as_echo "no" >&6; }
fi
+fi
+if test -z "$ac_cv_path_PKG_CONFIG"; then
+ ac_pt_PKG_CONFIG=$PKG_CONFIG
+ # Extract the first word of "pkg-config", so it can be a program name with args.
+set dummy pkg-config; ac_word=$2
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
+$as_echo_n "checking for $ac_word... " >&6; }
+if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
+ $as_echo_n "(cached) " >&6
+else
+ case $ac_pt_PKG_CONFIG in
+ [\\/]* | ?:[\\/]*)
+ ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
+ ;;
+ *)
+ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
+for as_dir in $PATH
+do
+ IFS=$as_save_IFS
+ test -z "$as_dir" && as_dir=.
+ for ac_exec_ext in '' $ac_executable_extensions; do
+ if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
+ ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
+ break 2
+ fi
+done
+ done
+IFS=$as_save_IFS
- if test x$PKG_CONFIG != xno ; then
- if $PKG_CONFIG --atleast-pkgconfig-version 0.7 ; then
- :
- else
- echo "*** pkg-config too old; version 0.7 or better required."
- no_gtk=yes
- PKG_CONFIG=no
- fi
+ ;;
+esac
+fi
+ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
+if test -n "$ac_pt_PKG_CONFIG"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
+$as_echo "$ac_pt_PKG_CONFIG" >&6; }
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+ if test "x$ac_pt_PKG_CONFIG" = x; then
+ PKG_CONFIG=""
else
+ case $cross_compiling:$ac_tool_warned in
+yes:)
+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
+ac_tool_warned=yes ;;
+esac
+ PKG_CONFIG=$ac_pt_PKG_CONFIG
+ fi
+else
+ PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
+fi
+
+fi
+if test -n "$PKG_CONFIG"; then
+ _pkg_min_version=0.16
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
+$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
+ if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
+ else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+ PKG_CONFIG=""
+ fi
+
+fi
+
+ if test -z "$PKG_CONFIG"; then
no_gtk=yes
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GTK+ - version >= $min_gtk_version" >&5
$as_echo_n "checking for GTK+ - version >= $min_gtk_version... " >&6; }
- if test x$PKG_CONFIG != xno ; then
+ if test -n "$PKG_CONFIG"; then
## don't try to run the test against uninstalled libtool libs
if $PKG_CONFIG --uninstalled $pkg_config_args; then
echo "Will use uninstalled version of GTK+ found in PKG_CONFIG_PATH"
@@ -23137,7 +23198,7 @@ $as_echo "yes (version $gtk_config_major_version.$gtk_config_minor_version.$gtk_
else
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
- if test "$PKG_CONFIG" = "no" ; then
+ if test -z "$PKG_CONFIG"; then
echo "*** A new enough version of pkg-config was not found."
echo "*** See http://pkgconfig.sourceforge.net"
else
@@ -28671,8 +28732,6 @@ EOF
esac
fi
- WXCONFIG_ONLY_CPPFLAGS="$WXCONFIG_ONLY_CPPFLAGS -DWXUSINGDLL"
-
if test $wxUSE_RPATH = "no"; then
SAMPLES_RPATH_FLAG=''
DYLIB_PATH_POSTLINK=''
@@ -36147,8 +36206,8 @@ if test "$wxUSE_TOOLTIPS" = "yes"; then
$as_echo "$as_me: WARNING: wxTooltip not supported yet under Motif... disabled" >&2;}
else
if test "$wxUSE_UNIVERSAL" = "yes"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: wxTooltip not supported yet in $TOOLKIT... disabled" >&5
-$as_echo "$as_me: WARNING: wxTooltip not supported yet in $TOOLKIT... disabled" >&2;}
+ { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: wxTooltip not supported yet in wxUniversal... disabled" >&5
+$as_echo "$as_me: WARNING: wxTooltip not supported yet in wxUniversal... disabled" >&2;}
else
$as_echo "#define wxUSE_TOOLTIPS 1" >>confdefs.h
@@ -37722,12 +37781,13 @@ CPPFLAGS=`echo $WXCONFIG_CPPFLAGS \
C_AND_CXX_FLAGS="$DEBUG_CFLAGS $PROFILE_FLAGS $OPTIMISE_CFLAGS"
CFLAGS=`echo $WXCONFIG_CFLAGS $CWARNINGS $C_AND_CXX_FLAGS $CFLAGS `
-CXXFLAGS=`echo $WXCONFIG_CXXFLAGS $C_AND_CXX_FLAGS $CXXFLAGS `
+CXXFLAGS=`echo $WXCONFIG_CXXFLAGS $CXXWARNINGS $C_AND_CXX_FLAGS $CXXFLAGS `
OBJCFLAGS=`echo $WXCONFIG_CFLAGS $CWARNINGS $C_AND_CXX_FLAGS $OBJCFLAGS `
OBJCXXFLAGS=`echo $WXCONFIG_CXXFLAGS $C_AND_CXX_FLAGS $OBJCXXFLAGS `
-WXCONFIG_CPPFLAGS=`echo $WXCONFIG_CPPFLAGS $WXCONFIG_ONLY_CPPFLAGS`
-
+if test "SHARED" = 1; then
+ WXCONFIG_CPPFLAGS="$WXCONFIG_CPPFLAGS -DWXUSINGDLL"
+fi
LIBS=`echo $LIBS`
EXTRALIBS="$LDFLAGS $LDFLAGS_VERSIONING $LIBS $DMALLOC_LIBS"
@@ -37877,7 +37937,6 @@ fi
-
TOOLKIT_LOWERCASE=`echo $TOOLKIT | tr '[A-Z]' '[a-z]'`
@@ -39958,11 +40017,6 @@ EOF
COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_0=""
fi
- COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1="#"
- if test "x$TOOLKIT" = "xGTK" -a "x$TOOLKIT_VERSION" = "x2" -a "x$USE_GUI" = "x1" -a "x$WXUNIV" = "x1" ; then
- COND_TOOLKIT_GTK_TOOLKIT_VERSION_2_USE_GUI_1_WXUNIV_1=""
- fi
-
COND_TOOLKIT_GTK_TOOLKIT_VERSION_3="#"
if test "x$TOOLKIT" = "xGTK" -a "x$TOOLKIT_VERSION" = "x3" ; then
COND_TOOLKIT_GTK_TOOLKIT_VERSION_3=""
@@ -40103,11 +40157,6 @@ EOF
COND_TOOLKIT_X11_USE_GUI_1=""
fi
- COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1="#"
- if test "x$TOOLKIT" = "xX11" -a "x$USE_GUI" = "x1" -a "x$WXUNIV" = "x1" ; then
- COND_TOOLKIT_X11_USE_GUI_1_WXUNIV_1=""
- fi
-
COND_UNICODE_1="#"
if test "x$UNICODE" = "x1" ; then
COND_UNICODE_1=""
@@ -40367,8 +40416,22 @@ case "${host}" in
;;
esac
-CFLAGS="$CFLAGS $CFLAGS_VISIBILITY"
-CXXFLAGS="$CXXFLAGS $CXXFLAGS_VISIBILITY"
+dedup_flags () { printf %s "$@" | awk -v RS=' +' -v ORS=' ' '!seen[$0]++'; }
+
+WX_CPPFLAGS=`dedup_flags "$CPPFLAGS"`
+WX_CFLAGS=`dedup_flags "$CFLAGS"`
+WX_CXXFLAGS=`dedup_flags "$CXXFLAGS"`
+
+LDFLAGS=`printf %s "$LDFLAGS" | sed 's/-framework */-framework_/g'`
+WX_LDFLAGS=`dedup_flags "$LDFLAGS" | sed 's/-framework_/-framework /g'`
+
+CPPFLAGS=$USER_CPPFLAGS
+CFLAGS=$USER_CFLAGS
+CXXFLAGS=$USER_CXXFLAGS
+LDFLAGS=$USER_LDFLAGS
+
+WX_CFLAGS="$WX_CFLAGS $CFLAGS_VISIBILITY"
+WX_CXXFLAGS="$WX_CXXFLAGS $CXXFLAGS_VISIBILITY"
OBJCFLAGS="$OBJCFLAGS $CFLAGS_VISIBILITY"
OBJCXXFLAGS="$OBJCXXFLAGS $CXXFLAGS_VISIBILITY"
@@ -40416,6 +40479,9 @@ SAMPLES_SUBDIRS="`echo $SAMPLES_SUBDIRS | tr -s ' ' | tr ' ' '\n' | sort | uniq
+
+
+
diff --git a/configure.in b/configure.in
index d9579458db..76039da63c 100644
--- a/configure.in
+++ b/configure.in
@@ -56,6 +56,17 @@ wx_top_builddir="`pwd -W 2> /dev/null || pwd`"
AC_SUBST(wx_top_builddir)
+dnl Save the values of various standard flags that we modify below in order to
+dnl restore them at the very end. This is ugly, but changing the existing code
+dnl is non-trivial as sometimes we really need to set them, as we want them to
+dnl apply to the tests run by configure, and it gets the job done in the sense
+dnl that the generated makefile will only contain user-specified flags values,
+dnl just as it should.
+USER_CPPFLAGS=$CPPFLAGS
+USER_CFLAGS=$CFLAGS
+USER_CXXFLAGS=$CXXFLAGS
+USER_LDFLAGS=$LDFLAGS
+
dnl ------------------------------------------------------------------------
dnl Check platform (host system)
dnl ------------------------------------------------------------------------
@@ -3785,10 +3796,6 @@ EOF
esac
fi
- dnl this one shouldn't be used for the library build so put it in a
- dnl separate variable from WXCONFIG_CPPFLAGS
- WXCONFIG_ONLY_CPPFLAGS="$WXCONFIG_ONLY_CPPFLAGS -DWXUSINGDLL"
-
if test $wxUSE_RPATH = "no"; then
SAMPLES_RPATH_FLAG=''
DYLIB_PATH_POSTLINK=''
@@ -7017,7 +7024,7 @@ if test "$wxUSE_TOOLTIPS" = "yes"; then
AC_MSG_WARN([wxTooltip not supported yet under Motif... disabled])
else
if test "$wxUSE_UNIVERSAL" = "yes"; then
- AC_MSG_WARN([wxTooltip not supported yet in $TOOLKIT... disabled])
+ AC_MSG_WARN([wxTooltip not supported yet in wxUniversal... disabled])
else
AC_DEFINE(wxUSE_TOOLTIPS)
fi
@@ -7948,14 +7955,15 @@ CPPFLAGS=`echo $WXCONFIG_CPPFLAGS \
C_AND_CXX_FLAGS="$DEBUG_CFLAGS $PROFILE_FLAGS $OPTIMISE_CFLAGS"
CFLAGS=`echo $WXCONFIG_CFLAGS $CWARNINGS $C_AND_CXX_FLAGS $CFLAGS `
-CXXFLAGS=`echo $WXCONFIG_CXXFLAGS $C_AND_CXX_FLAGS $CXXFLAGS `
+CXXFLAGS=`echo $WXCONFIG_CXXFLAGS $CXXWARNINGS $C_AND_CXX_FLAGS $CXXFLAGS `
OBJCFLAGS=`echo $WXCONFIG_CFLAGS $CWARNINGS $C_AND_CXX_FLAGS $OBJCFLAGS `
OBJCXXFLAGS=`echo $WXCONFIG_CXXFLAGS $C_AND_CXX_FLAGS $OBJCXXFLAGS `
dnl now that we added WXCONFIG_CPPFLAGS to CPPFLAGS we can add the wx-config
dnl only stuff to it
-WXCONFIG_CPPFLAGS=`echo $WXCONFIG_CPPFLAGS $WXCONFIG_ONLY_CPPFLAGS`
-
+if test "SHARED" = 1; then
+ WXCONFIG_CPPFLAGS="$WXCONFIG_CPPFLAGS -DWXUSINGDLL"
+fi
LIBS=`echo $LIBS`
EXTRALIBS="$LDFLAGS $LDFLAGS_VERSIONING $LIBS $DMALLOC_LIBS"
@@ -8099,7 +8107,6 @@ AC_SUBST(WXUNIV)
AC_SUBST(MONOLITHIC)
AC_SUBST(USE_PLUGINS)
AC_SUBST(LIBS)
-AC_SUBST(CXXWARNINGS)
AC_SUBST(EXTRALIBS)
AC_SUBST(EXTRALIBS_XML)
AC_SUBST(EXTRALIBS_HTML)
@@ -8260,10 +8267,32 @@ case "${host}" in
;;
esac
-dnl Add visibility support flags to CFLAGS/CXXFLAGS - do it this late so that
-dnl it doesn't affect compilation checks above
-CFLAGS="$CFLAGS $CFLAGS_VISIBILITY"
-CXXFLAGS="$CXXFLAGS $CXXFLAGS_VISIBILITY"
+dnl Set the flags to be used for the library build itself using the flag names
+dnl used everywhere above.
+dnl
+dnl Also get rid of duplicates in the flags, which results in dramatically
+dnl shorter build logs and so is well worth it.
+dedup_flags () { printf %s "$@" | awk -v RS=' +' -v ORS=' ' '!seen[[$0]]++'; }
+
+WX_CPPFLAGS=`dedup_flags "$CPPFLAGS"`
+WX_CFLAGS=`dedup_flags "$CFLAGS"`
+WX_CXXFLAGS=`dedup_flags "$CXXFLAGS"`
+
+dnl For link flags we can use "-framework" multiple times and all of their
+dnl occurrences need to be preserved, so add extra pre/post-processing.
+LDFLAGS=`printf %s "$LDFLAGS" | sed 's/-framework */-framework_/g'`
+WX_LDFLAGS=`dedup_flags "$LDFLAGS" | sed 's/-framework_/-framework /g'`
+
+dnl Restore the original user-specified flags values, we won't run any tests
+dnl using them any more.
+CPPFLAGS=$USER_CPPFLAGS
+CFLAGS=$USER_CFLAGS
+CXXFLAGS=$USER_CXXFLAGS
+LDFLAGS=$USER_LDFLAGS
+
+dnl Add visibility support flags.
+WX_CFLAGS="$WX_CFLAGS $CFLAGS_VISIBILITY"
+WX_CXXFLAGS="$WX_CXXFLAGS $CXXFLAGS_VISIBILITY"
OBJCFLAGS="$OBJCFLAGS $CFLAGS_VISIBILITY"
OBJCXXFLAGS="$OBJCXXFLAGS $CXXFLAGS_VISIBILITY"
@@ -8303,22 +8332,24 @@ AC_SUBST(WX_VERSION)
AC_SUBST(WX_SUBVERSION)
AC_SUBST(WX_CHARTYPE)
-dnl note that in addition to the usual CPP/C/CXXFLAGS which are used for
-dnl building the library itself, we also have WXCONFIG_-prefixed variants which
+dnl both versions of all the usual flags variables: WX_FLAGS which are used for
+dnl building the library itself, and WXCONFIG_-prefixed variants which
dnl are used when building the libraries using the library
dnl
dnl so put anything which should be used only during the library build in, e.g.
-dnl CXXFLAGS, but put everything else (by default) into WXCONFIG_CXXFLAGS
-dnl
-dnl and, finally, for some things which should be only used by wx-config but
-dnl not during the library compilation, use WXCONFIG_ONLY_CPPFLAGS which is
-dnl added to WXCONFIG_CPPFLAGS after adding the latter to CPPFLAGS
+dnl CXXFLAGS, which ends up in WX_CXXFLAGS, but put everything which should be
+dnl used when building both the library and the applications using it into
+dnl WXCONFIG_CXXFLAGS
+AC_SUBST(WX_CPPFLAGS)
AC_SUBST(WXCONFIG_CPPFLAGS)
+AC_SUBST(WX_CFLAGS)
AC_SUBST(WXCONFIG_CFLAGS)
+AC_SUBST(WX_CXXFLAGS)
AC_SUBST(WXCONFIG_CXXFLAGS)
AC_SUBST(WXCONFIG_LIBS)
AC_SUBST(WXCONFIG_RPATH)
+AC_SUBST(WX_LDFLAGS)
AC_SUBST(WXCONFIG_LDFLAGS)
AC_SUBST(WXCONFIG_LDFLAGS_GUI)
AC_SUBST(WXCONFIG_RESFLAGS)
@@ -8331,7 +8362,6 @@ dnl additional subdirectories where we will build
AC_SUBST(SAMPLES_SUBDIRS)
dnl additional libraries and linker settings
-AC_SUBST(LDFLAGS)
AC_SUBST(LDFLAGS_GL)
AC_SUBST(OPENGL_LIBS)
AC_SUBST(DMALLOC_LIBS)
diff --git a/demos/bombs/Makefile.in b/demos/bombs/Makefile.in
index 454c4aaa63..0d60c7d5ab 100644
--- a/demos/bombs/Makefile.in
+++ b/demos/bombs/Makefile.in
@@ -32,7 +32,9 @@ TOOLCHAIN_FULLNAME = @TOOLCHAIN_FULLNAME@
EXTRALIBS = @EXTRALIBS@
EXTRALIBS_XML = @EXTRALIBS_XML@
EXTRALIBS_GUI = @EXTRALIBS_GUI@
-CXXWARNINGS = @CXXWARNINGS@
+WX_CPPFLAGS = @WX_CPPFLAGS@
+WX_CXXFLAGS = @WX_CXXFLAGS@
+WX_LDFLAGS = @WX_LDFLAGS@
HOST_SUFFIX = @HOST_SUFFIX@
SAMPLES_RPATH_FLAG = @SAMPLES_RPATH_FLAG@
SAMPLES_CXXFLAGS = @SAMPLES_CXXFLAGS@
@@ -44,10 +46,10 @@ DESTDIR =
WX_RELEASE = 3.1
WX_VERSION = $(WX_RELEASE).4
LIBDIRNAME = $(wx_top_builddir)/lib
-BOMBS_CXXFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
- -I$(srcdir) $(__DLLFLAG_p) -I$(srcdir)/../../samples $(CXXWARNINGS) \
- $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+BOMBS_CXXFLAGS = $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -I$(srcdir) $(__DLLFLAG_p) -I$(srcdir)/../../samples \
+ $(WX_CXXFLAGS) $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
BOMBS_OBJECTS = \
bombs_bombs.o \
bombs_bombs1.o \
@@ -152,7 +154,7 @@ distclean: clean
rm -f config.cache config.log config.status bk-deps bk-make-pch shared-ld-sh Makefile
bombs$(EXEEXT): $(BOMBS_OBJECTS) $(__bombs___win32rc)
- $(CXX) -o $@ $(BOMBS_OBJECTS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
+ $(CXX) -o $@ $(BOMBS_OBJECTS) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
$(__bombs___os2_emxbindcmd)
@COND_PLATFORM_MACOSX_1@bombs.app/Contents/PkgInfo: bombs$(EXEEXT) $(top_srcdir)/src/osx/carbon/Info.plist.in $(top_srcdir)/src/osx/carbon/wxmac.icns
diff --git a/demos/bombs/bombs_vc7.vcproj b/demos/bombs/bombs_vc7.vcproj
index 7aa808544e..17d5881890 100644
--- a/demos/bombs/bombs_vc7.vcproj
+++ b/demos/bombs/bombs_vc7.vcproj
@@ -45,7 +45,7 @@
Name="VCCustomBuildTool"/>
long and long long
types.}
@itemdef{wxHAS_MULTIPLE_FILEDLG_FILTERS, Defined if wxFileDialog supports multiple ('|'-separated) filters.}
+@itemdef{wxHAS_NATIVE_ANIMATIONCTRL, Defined if native wxAnimationCtrl class is being used (this symbol only exists in wxWidgets 3.1.4 and later).}
@itemdef{wxHAS_NATIVE_DATAVIEWCTRL, Defined if native wxDataViewCtrl class is being used (this symbol only exists in wxWidgets 3.1.4 and later).}
@itemdef{wxHAS_NATIVE_WINDOW, Defined if wxNativeWindow class is available.}
+@itemdef{wxHAS_NOEXCEPT, Defined if the currently used compiler supports C++11 @c noexcept. @c wxNOEXCEPT is defined as this keyword in this case, and as nothing otherwise.}
+@itemdef{wxHAS_NULLPTR_T, Defined if the currently used compiler supports C++11 @c nullptr.}
@itemdef{wxHAS_IMAGES_IN_RESOURCES, Defined if
Windows resource files or OS/2 resource files are available on the current platform.}
@itemdef{wxHAS_POWER_EVENTS, Defined if wxPowerEvent are ever generated on the current platform.}
diff --git a/docs/doxygen/mainpages/copyright.h b/docs/doxygen/mainpages/copyright.h
index 531e4c2b4c..79d2b6c727 100644
--- a/docs/doxygen/mainpages/copyright.h
+++ b/docs/doxygen/mainpages/copyright.h
@@ -11,7 +11,7 @@
@section section_copyright wxWidgets Copyrights and Licenses
-Copyright (c) 1992-2019 Julian Smart, Vadim Zeitlin, Stefan Csomor, Robert
+Copyright (c) 1992-2020 Julian Smart, Vadim Zeitlin, Stefan Csomor, Robert
Roebling, and other members of the wxWidgets team, please see the
acknowledgements section below.
diff --git a/docs/doxygen/mainpages/introduction.h b/docs/doxygen/mainpages/introduction.h
index 587d40dc74..659b3394d8 100644
--- a/docs/doxygen/mainpages/introduction.h
+++ b/docs/doxygen/mainpages/introduction.h
@@ -41,8 +41,9 @@ Compared to the other similar libraries, wxWidgets is:
3. Open source and free for use in both open source and commercial projects.
-wxWidgets provides a simple, easy to learn, yet very rich API. It is also
-mature and stable, and the applications written using wxWidgets 2.0
+wxWidgets provides a simple, easy to learn, yet very rich API, while also
+proposing a simple way to define application UI in the external XML files.
+It is also mature and stable, and the applications written using wxWidgets 2.0
pre-releases almost 20 years ago can still be built today with wxWidgets 3
almost unchanged. wxWidgets has a large, active and friendly community of
people, including both the users and developers of the library. It is also
@@ -59,7 +60,7 @@ paragraphs, but here are some of the benefits:
@li Extensive documentation (almost 200,000 lines of it).
@li Straightforward API.
@li Simple but powerful layout system.
-@li Run-time loadable or compile-time embeddable resources.
+@li Run-time loadable or compile-time embeddable resources for UI definition.
@li Flexible event system.
@li All the usual and quite a few of more rare GUI controls.
@li And also all the standard dialogs.
diff --git a/docs/doxygen/overviews/helloworld.h b/docs/doxygen/overviews/helloworld.h
index ddb6c344ab..fa6dea6405 100644
--- a/docs/doxygen/overviews/helloworld.h
+++ b/docs/doxygen/overviews/helloworld.h
@@ -15,6 +15,10 @@ This page shows a very simple wxWidgets program that can be used as a skeleton
for your own code. While it does nothing very useful, it introduces a couple of
important concepts and explains how to write a working wxWidgets application.
+Note that this simple example creates the UI entirely from C++ code which is
+fine for a simple example, but more realistic examples will typically define
+their UI at least partially in @ref overview_xrc "XRC resource files".
+
First, you have to include wxWidgets' header files, of course. This can be done
on a file by file basis (such as @c wx/window.h) or using one global include
(@c wx/wx.h) which includes most of the commonly needed headers (although not
diff --git a/docs/doxygen/overviews/roughguide.h b/docs/doxygen/overviews/roughguide.h
index 3f804ff0d2..a0669750f0 100644
--- a/docs/doxygen/overviews/roughguide.h
+++ b/docs/doxygen/overviews/roughguide.h
@@ -19,7 +19,8 @@ main top-level window.
This window can be a wxFrame or a wxDialog and may contain one or more
instances of classes such as wxPanel, wxSplitterWindow or other windows and
-controls.
+controls. These windows can be created from C++ code or loaded from resource
+definitions in @ref overview_xrc "XRC format".
A frame can have a wxMenuBar, a wxToolBar, a wxStatusBar, and a wxIcon for when
the frame is iconized.
diff --git a/docs/doxygen/regen.sh b/docs/doxygen/regen.sh
index 97029043c6..16da10339a 100755
--- a/docs/doxygen/regen.sh
+++ b/docs/doxygen/regen.sh
@@ -198,7 +198,7 @@ if [[ "$1" = "docset" ]]; then
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetFeedURL $ATOMDIR/$ATOM
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetFallbackURL https://docs.wxwidgets.org
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetDescription "API reference and conceptual documentation for wxWidgets 3.0"
- $PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info NSHumanReadableCopyright "Copyright 1992-2019 wxWidgets team, Portions 1996 Artificial Intelligence Applications Institute"
+ $PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info NSHumanReadableCopyright "Copyright 1992-2020 wxWidgets team, Portions 1996 Artificial Intelligence Applications Institute"
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info isJavaScriptEnabled true
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info dashIndexFilePath index.html
$PLIST_WRITE_CMD $DESTINATIONDIR/$DOCSETNAME/Contents/Info DocSetPlatformFamily wx
diff --git a/docs/gpl.txt b/docs/gpl.txt
index b8cf3a1ab2..d159169d10 100644
--- a/docs/gpl.txt
+++ b/docs/gpl.txt
@@ -1,12 +1,12 @@
- GNU GENERAL PUBLIC LICENSE
- Version 2, June 1991
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
- 675 Mass Ave, Cambridge, MA 02139, USA
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
- Preamble
+ Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
@@ -15,7 +15,7 @@ software--to make sure the software is free for all its users. This
General Public License applies to most of the Free Software
Foundation's software and to any other program whose authors commit to
using it. (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.) You can apply it to
+the GNU Lesser General Public License instead.) You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
@@ -56,7 +56,7 @@ patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and
modification follow.
- GNU GENERAL PUBLIC LICENSE
+ GNU GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains
@@ -255,7 +255,7 @@ make exceptions for this. Our decision will be guided by the two goals
of preserving the free status of all derivatives of our free software and
of promoting the sharing and reuse of software generally.
- NO WARRANTY
+ NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
@@ -277,9 +277,9 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES.
- END OF TERMS AND CONDITIONS
+ END OF TERMS AND CONDITIONS
- Appendix: How to Apply These Terms to Your New Programs
+ How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
@@ -291,7 +291,7 @@ convey the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
- Copyright (C) 19yy
+ Copyright (C)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -303,16 +303,16 @@ the "copyright" line and a pointer to where the full notice is found.
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this
when it starts in an interactive mode:
- Gnomovision version 69, Copyright (C) 19yy name of author
+ Gnomovision version 69, Copyright (C) year name of author
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
@@ -335,5 +335,5 @@ necessary. Here is a sample; alter the names:
This General Public License does not permit incorporating your program into
proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
-library. If this is what you want to do, use the GNU Library General
+library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License.
diff --git a/docs/lgpl.txt b/docs/lgpl.txt
index 12e440211e..5bc8fb2c8f 100644
--- a/docs/lgpl.txt
+++ b/docs/lgpl.txt
@@ -1,171 +1,155 @@
-
- GNU LIBRARY GENERAL PUBLIC LICENSE
- ==================================
- Version 2, June 1991
+ GNU LIBRARY GENERAL PUBLIC LICENSE
+ Version 2, June 1991
Copyright (C) 1991 Free Software Foundation, Inc.
- 675 Mass Ave, Cambridge, MA 02139, USA
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
[This is the first released version of the library GPL. It is
numbered 2 because it goes with version 2 of the ordinary GPL.]
- Preamble
+ Preamble
-The licenses for most software are designed to take away your
-freedom to share and change it. By contrast, the GNU General
-Public Licenses are intended to guarantee your freedom to share
-and change free software--to make sure the software is free for
-all its users.
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+Licenses are intended to guarantee your freedom to share and change
+free software--to make sure the software is free for all its users.
-This license, the Library General Public License, applies to
-some specially designated Free Software Foundation software, and
-to any other libraries whose authors decide to use it. You can
-use it for your libraries, too.
+ This license, the Library General Public License, applies to some
+specially designated Free Software Foundation software, and to any
+other libraries whose authors decide to use it. You can use it for
+your libraries, too.
-When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure
-that you have the freedom to distribute copies of free software
-(and charge for this service if you wish), that you receive
-source code or can get it if you want it, that you can change
-the software or use pieces of it in new free programs; and that
-you know you can do these things.
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
-To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the
-rights. These restrictions translate to certain responsibilities
-for you if you distribute copies of the library, or if you
-modify it.
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if
+you distribute copies of the library, or if you modify it.
-For example, if you distribute copies of the library, whether
-gratis or for a fee, you must give the recipients all the rights
-that we gave you. You must make sure that they, too, receive or
-can get the source code. If you link a program with the
-library, you must provide complete object files to the
-recipients so that they can relink them with the library, after
-making changes to the library and recompiling it. And you must
-show them these terms so they know their rights.
+ For example, if you distribute copies of the library, whether gratis
+or for a fee, you must give the recipients all the rights that we gave
+you. You must make sure that they, too, receive or can get the source
+code. If you link a program with the library, you must provide
+complete object files to the recipients so that they can relink them
+with the library, after making changes to the library and recompiling
+it. And you must show them these terms so they know their rights.
-Our method of protecting your rights has two steps: (1)
-copyright the library, and (2) offer you this license which
-gives you legal permission to copy, distribute and/or modify the
-library.
+ Our method of protecting your rights has two steps: (1) copyright
+the library, and (2) offer you this license which gives you legal
+permission to copy, distribute and/or modify the library.
-Also, for each distributor's protection, we want to make certain
-that everyone understands that there is no warranty for this
-free library. If the library is modified by someone else and
-passed on, we want its recipients to know that what they have is
-not the original version, so that any problems introduced by
-others will not reflect on the original authors' reputations.
+ Also, for each distributor's protection, we want to make certain
+that everyone understands that there is no warranty for this free
+library. If the library is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original
+version, so that any problems introduced by others will not reflect on
+the original authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that companies distributing free
+software will individually obtain patent licenses, thus in effect
+transforming the program into proprietary software. To prevent this,
+we have made it clear that any patent must be licensed for everyone's
+free use or not licensed at all.
-Finally, any free program is threatened constantly by software
-patents. We wish to avoid the danger that companies
-distributing free software will individually obtain patent
-licenses, thus in effect transforming the program into
-proprietary software. To prevent this, we have made it clear
-that any patent must be licensed for everyone's free use or not
-licensed at all.
+ Most GNU software, including some libraries, is covered by the ordinary
+GNU General Public License, which was designed for utility programs. This
+license, the GNU Library General Public License, applies to certain
+designated libraries. This license is quite different from the ordinary
+one; be sure to read it in full, and don't assume that anything in it is
+the same as in the ordinary license.
-Most GNU software, including some libraries, is covered by the
-ordinary GNU General Public License, which was designed for
-utility programs. This license, the GNU Library General Public
-License, applies to certain designated libraries. This license
-is quite different from the ordinary one; be sure to read it in
-full, and don't assume that anything in it is the same as in the
-ordinary license.
+ The reason we have a separate public license for some libraries is that
+they blur the distinction we usually make between modifying or adding to a
+program and simply using it. Linking a program with a library, without
+changing the library, is in some sense simply using the library, and is
+analogous to running a utility program or application program. However, in
+a textual and legal sense, the linked executable is a combined work, a
+derivative of the original library, and the ordinary General Public License
+treats it as such.
-The reason we have a separate public license for some libraries
-is that they blur the distinction we usually make between
-modifying or adding to a program and simply using it. Linking a
-program with a library, without changing the library, is in some
-sense simply using the library, and is analogous to running a
-utility program or application program. However, in a textual
-and legal sense, the linked executable is a combined work, a
-derivative of the original library, and the ordinary General
-Public License treats it as such.
+ Because of this blurred distinction, using the ordinary General
+Public License for libraries did not effectively promote software
+sharing, because most developers did not use the libraries. We
+concluded that weaker conditions might promote sharing better.
-Because of this blurred distinction, using the ordinary General
-Public License for libraries did not effectively promote
-software sharing, because most developers did not use the
-libraries. We concluded that weaker conditions might promote
-sharing better.
+ However, unrestricted linking of non-free programs would deprive the
+users of those programs of all benefit from the free status of the
+libraries themselves. This Library General Public License is intended to
+permit developers of non-free programs to use free libraries, while
+preserving your freedom as a user of such programs to change the free
+libraries that are incorporated in them. (We have not seen how to achieve
+this as regards changes in header files, but we have achieved it as regards
+changes in the actual functions of the Library.) The hope is that this
+will lead to faster development of free libraries.
-However, unrestricted linking of non-free programs would deprive
-the users of those programs of all benefit from the free status
-of the libraries themselves. This Library General Public
-License is intended to permit developers of non-free programs to
-use free libraries, while preserving your freedom as a user of
-such programs to change the free libraries that are incorporated
-in them. (We have not seen how to achieve this as regards
-changes in header files, but we have achieved it as regards
-changes in the actual functions of the Library.) The hope is
-that this will lead to faster development of free libraries.
+ The precise terms and conditions for copying, distribution and
+modification follow. Pay close attention to the difference between a
+"work based on the library" and a "work that uses the library". The
+former contains code derived from the library, while the latter only
+works together with the library.
-The precise terms and conditions for copying, distribution and
-modification follow. Pay close attention to the difference
-between a "work based on the library" and a "work that uses the
-library". The former contains code derived from the library,
-while the latter only works together with the library.
+ Note that it is possible for a library to be covered by the ordinary
+General Public License rather than by this special one.
+
+ GNU LIBRARY GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-Note that it is possible for a library to be covered by the
-ordinary General Public License rather than by this special one.
+ 0. This License Agreement applies to any software library which
+contains a notice placed by the copyright holder or other authorized
+party saying it may be distributed under the terms of this Library
+General Public License (also called "this License"). Each licensee is
+addressed as "you".
- GNU LIBRARY GENERAL PUBLIC LICENSE
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+ A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application programs
+(which use some of those functions and data) to form executables.
-0. This License Agreement applies to any software library which
-contains a notice placed by the copyright holder or other
-authorized party saying it may be distributed under the terms of
-this Library General Public License (also called "this
-License"). Each licensee is addressed as "you".
+ The "Library", below, refers to any such software library or work
+which has been distributed under these terms. A "work based on the
+Library" means either the Library or any derivative work under
+copyright law: that is to say, a work containing the Library or a
+portion of it, either verbatim or with modifications and/or translated
+straightforwardly into another language. (Hereinafter, translation is
+included without limitation in the term "modification".)
-A "library" means a collection of software functions and/or data
-prepared so as to be conveniently linked with application
-programs (which use some of those functions and data) to form
-executables.
+ "Source code" for a work means the preferred form of the work for
+making modifications to it. For a library, complete source code means
+all the source code for all modules it contains, plus any associated
+interface definition files, plus the scripts used to control compilation
+and installation of the library.
-The "Library", below, refers to any such software library or
-work which has been distributed under these terms. A "work
-based on the Library" means either the Library or any derivative
-work under copyright law: that is to say, a work containing the
-Library or a portion of it, either verbatim or with
-modifications and/or translated straightforwardly into another
-language. (Hereinafter, translation is included without
-limitation in the term "modification".)
+ Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running a program using the Library is not restricted, and output from
+such a program is covered only if its contents constitute a work based
+on the Library (independent of the use of the Library in a tool for
+writing it). Whether that is true depends on what the Library does
+and what the program that uses the Library does.
+
+ 1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided that
+you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any
+warranty; and distribute a copy of this License along with the
+Library.
-"Source code" for a work means the preferred form of the work
-for making modifications to it. For a library, complete source
-code means all the source code for all modules it contains, plus
-any associated interface definition files, plus the scripts used
-to control compilation and installation of the library.
-
-Activities other than copying, distribution and modification are
-not covered by this License; they are outside its scope. The
-act of running a program using the Library is not restricted,
-and output from such a program is covered only if its contents
-constitute a work based on the Library (independent of the use
-of the Library in a tool for writing it). Whether that is true
-depends on what the Library does and what the program that uses
-the Library does.
-
-1. You may copy and distribute verbatim copies of the Library's
-complete source code as you receive it, in any medium, provided
-that you conspicuously and appropriately publish on each copy an
-appropriate copyright notice and disclaimer of warranty; keep
-intact all the notices that refer to this License and to the
-absence of any warranty; and distribute a copy of this License
-along with the Library.
-
-You may charge a fee for the physical act of transferring a
-copy, and you may at your option offer warranty protection in
-exchange for a fee.
-
-2. You may modify your copy or copies of the Library or any
-portion of it, thus forming a work based on the Library, and
-copy and distribute such modifications or work under the terms
-of Section 1 above, provided that you also meet all of these
-conditions:
+ You may charge a fee for the physical act of transferring a copy,
+and you may at your option offer warranty protection in exchange for a
+fee.
+
+ 2. You may modify your copy or copies of the Library or any portion
+of it, thus forming a work based on the Library, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
a) The modified work must itself be a software library.
@@ -191,108 +175,100 @@ conditions:
root function must still compute square roots.)
These requirements apply to the modified work as a whole. If
-identifiable sections of that work are not derived from the
-Library, and can be reasonably considered independent and
-separate works in themselves, then this License, and its terms,
-do not apply to those sections when you distribute them as
-separate works. But when you distribute the same sections as
-part of a whole which is a work based on the Library, the
-distribution of the whole must be on the terms of this License,
-whose permissions for other licensees extend to the entire
-whole, and thus to each and every part regardless of who wrote
+identifiable sections of that work are not derived from the Library,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote
it.
-Thus, it is not the intent of this section to claim rights or
-contest your rights to work written entirely by you; rather, the
-intent is to exercise the right to control the distribution of
-derivative or collective works based on the Library.
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Library.
-In addition, mere aggregation of another work not based on the
-Library with the Library (or with a work based on the Library)
-on a volume of a storage or distribution medium does not bring
-the other work under the scope of this License.
+In addition, mere aggregation of another work not based on the Library
+with the Library (or with a work based on the Library) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
-3. You may opt to apply the terms of the ordinary GNU General
-Public License instead of this License to a given copy of the
-Library. To do this, you must alter all the notices that refer
-to this License, so that they refer to the ordinary GNU General
-Public License, version 2, instead of to this License. (If a
-newer version than version 2 of the ordinary GNU General Public
-License has appeared, then you can specify that version instead
-if you wish.) Do not make any other change in these notices.
+ 3. You may opt to apply the terms of the ordinary GNU General Public
+License instead of this License to a given copy of the Library. To do
+this, you must alter all the notices that refer to this License, so
+that they refer to the ordinary GNU General Public License, version 2,
+instead of to this License. (If a newer version than version 2 of the
+ordinary GNU General Public License has appeared, then you can specify
+that version instead if you wish.) Do not make any other change in
+these notices.
+
+ Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to all
+subsequent copies and derivative works made from that copy.
-Once this change is made in a given copy, it is irreversible for
-that copy, so the ordinary GNU General Public License applies to
-all subsequent copies and derivative works made from that copy.
-
-This option is useful when you wish to copy part of the code of
+ This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.
-4. You may copy and distribute the Library (or a portion or
-derivative of it, under Section 2) in object code or executable
-form under the terms of Sections 1 and 2 above provided that you
-accompany it with the complete corresponding machine-readable
-source code, which must be distributed under the terms of
-Sections 1 and 2 above on a medium customarily used for software
-interchange.
+ 4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable form
+under the terms of Sections 1 and 2 above provided that you accompany
+it with the complete corresponding machine-readable source code, which
+must be distributed under the terms of Sections 1 and 2 above on a
+medium customarily used for software interchange.
-If distribution of object code is made by offering access to
-copy from a designated place, then offering equivalent access to
-copy the source code from the same place satisfies the
-requirement to distribute the source code, even though third
-parties are not compelled to copy the source along with the
-object code.
+ If distribution of object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the
+source code from the same place satisfies the requirement to
+distribute the source code, even though third parties are not
+compelled to copy the source along with the object code.
-5. A program that contains no derivative of any portion of the
-Library, but is designed to work with the Library by being
-compiled or linked with it, is called a "work that uses the
-Library". Such a work, in isolation, is not a derivative work
-of the Library, and therefore falls outside the scope of this
-License.
+ 5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being compiled or
+linked with it, is called a "work that uses the Library". Such a
+work, in isolation, is not a derivative work of the Library, and
+therefore falls outside the scope of this License.
-However, linking a "work that uses the Library" with the Library
-creates an executable that is a derivative of the Library
-(because it contains portions of the Library), rather than a
-"work that uses the library". The executable is therefore
-covered by this License. Section 6 states terms for distribution
-of such executables.
+ However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library (because it
+contains portions of the Library), rather than a "work that uses the
+library". The executable is therefore covered by this License.
+Section 6 states terms for distribution of such executables.
-When a "work that uses the Library" uses material from a header
-file that is part of the Library, the object code for the work
-may be a derivative work of the Library even though the source
-code is not. Whether this is true is especially significant if
-the work can be linked without the Library, or if the work is
-itself a library. The threshold for this to be true is not
-precisely defined by law.
+ When a "work that uses the Library" uses material from a header file
+that is part of the Library, the object code for the work may be a
+derivative work of the Library even though the source code is not.
+Whether this is true is especially significant if the work can be
+linked without the Library, or if the work is itself a library. The
+threshold for this to be true is not precisely defined by law.
-If such an object file uses only numerical parameters, data
-structure layouts and accessors, and small macros and small
-inline functions (ten lines or less in length), then the use of
-the object file is unrestricted, regardless of whether it is
-legally a derivative work. (Executables containing this object
-code plus portions of the Library will still fall under Section
-6.)
+ If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small inline
+functions (ten lines or less in length), then the use of the object
+file is unrestricted, regardless of whether it is legally a derivative
+work. (Executables containing this object code plus portions of the
+Library will still fall under Section 6.)
-Otherwise, if the work is a derivative of the Library, you may
-distribute the object code for the work under the terms of
-Section 6. Any executables containing that work also fall under
-Section 6, whether or not they are linked directly with the
-Library itself.
+ Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of Section 6.
+Any executables containing that work also fall under Section 6,
+whether or not they are linked directly with the Library itself.
+
+ 6. As an exception to the Sections above, you may also compile or
+link a "work that uses the Library" with the Library to produce a
+work containing portions of the Library, and distribute that work
+under terms of your choice, provided that the terms permit
+modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
-6. As an exception to the Sections above, you may also compile
-or link a "work that uses the Library" with the Library to
-produce a work containing portions of the Library, and
-distribute that work under terms of your choice, provided that
-the terms permit modification of the work for the customer's own
-use and reverse engineering for debugging such modifications.
-
-You must give prominent notice with each copy of the work that
-the Library is used in it and that the Library and its use are
-covered by this License. You must supply a copy of this
-License. If the work during execution displays copyright
-notices, you must include the copyright notice for the Library
-among them, as well as a reference directing the user to the
-copy of this License. Also, you must do one of these things:
+ You must give prominent notice with each copy of the work that the
+Library is used in it and that the Library and its use are covered by
+this License. You must supply a copy of this License. If the work
+during execution displays copyright notices, you must include the
+copyright notice for the Library among them, as well as a reference
+directing the user to the copy of this License. Also, you must do one
+of these things:
a) Accompany the work with the complete corresponding
machine-readable source code for the Library including whatever
@@ -318,28 +294,27 @@ copy of this License. Also, you must do one of these things:
d) Verify that the user has already received a copy of these
materials or that you have already sent this user a copy.
-For an executable, the required form of the "work that uses the
+ For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
-reproducing the executable from it. However, as a special
-exception, the source code distributed need not include anything
-that is normally distributed (in either source or binary form)
-with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that
-component itself accompanies the executable.
+reproducing the executable from it. However, as a special exception,
+the source code distributed need not include anything that is normally
+distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on
+which the executable runs, unless that component itself accompanies
+the executable.
-It may happen that this requirement contradicts the license
+ It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
-accompany the operating system. Such a contradiction means you
-cannot use both them and the Library together in an executable
-that you distribute.
-
-7. You may place library facilities that are a work based on the
-Library side-by-side in a single library together with other
-library facilities not covered by this License, and distribute
-such a combined library, provided that the separate distribution
-of the work based on the Library and of the other library
-facilities is otherwise permitted, and provided that you do
-these two things:
+accompany the operating system. Such a contradiction means you cannot
+use both them and the Library together in an executable that you
+distribute.
+
+ 7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other library
+facilities not covered by this License, and distribute such a combined
+library, provided that the separate distribution of the work based on
+the Library and of the other library facilities is otherwise
+permitted, and provided that you do these two things:
a) Accompany the combined library with a copy of the same work
based on the Library, uncombined with any other library
@@ -350,108 +325,99 @@ these two things:
that part of it is a work based on the Library, and explaining
where to find the accompanying uncombined form of the same work.
-8. You may not copy, modify, sublicense, link with, or
-distribute the Library except as expressly provided under this
-License. Any attempt otherwise to copy, modify, sublicense,
-link with, or distribute the Library is void, and will
-automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you
-under this License will not have their licenses terminated so
-long as such parties remain in full compliance.
+ 8. You may not copy, modify, sublicense, link with, or distribute
+the Library except as expressly provided under this License. Any
+attempt otherwise to copy, modify, sublicense, link with, or
+distribute the Library is void, and will automatically terminate your
+rights under this License. However, parties who have received copies,
+or rights, from you under this License will not have their licenses
+terminated so long as such parties remain in full compliance.
-9. You are not required to accept this License, since you have
-not signed it. However, nothing else grants you permission to
-modify or distribute the Library or its derivative works. These
-actions are prohibited by law if you do not accept this
-License. Therefore, by modifying or distributing the Library
-(or any work based on the Library), you indicate your acceptance
-of this License to do so, and all its terms and conditions for
-copying, distributing or modifying the Library or works based on
-it.
+ 9. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Library or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Library (or any work based on the
+Library), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
-10. Each time you redistribute the Library (or any work based on
-the Library), the recipient automatically receives a license
-from the original licensor to copy, distribute, link with or
-modify the Library subject to these terms and conditions. You
-may not impose any further restrictions on the recipients'
-exercise of the rights granted herein. You are not responsible
-for enforcing compliance by third parties to this License.
+ 10. Each time you redistribute the Library (or any work based on the
+Library), the recipient automatically receives a license from the
+original licensor to copy, distribute, link with or modify the Library
+subject to these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 11. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Library at all. For example, if a patent
+license would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Library.
-11. If, as a consequence of a court judgment or allegation of
-patent infringement or for any other reason (not limited to
-patent issues), conditions are imposed on you (whether by court
-order, agreement or otherwise) that contradict the conditions of
-this License, they do not excuse you from the conditions of this
-License. If you cannot distribute so as to satisfy
-simultaneously your obligations under this License and any other
-pertinent obligations, then as a consequence you may not
-distribute the Library at all. For example, if a patent license
-would not permit royalty-free redistribution of the Library by
-all those who receive copies directly or indirectly through you,
-then the only way you could satisfy both it and this License
-would be to refrain entirely from distribution of the Library.
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply,
+and the section as a whole is intended to apply in other circumstances.
-If any portion of this section is held invalid or unenforceable
-under any particular circumstance, the balance of the section is
-intended to apply, and the section as a whole is intended to
-apply in other circumstances.
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
-It is not the purpose of this section to induce you to infringe
-any patents or other property right claims or to contest
-validity of any such claims; this section has the sole purpose
-of protecting the integrity of the free software distribution
-system which is implemented by public license practices. Many
-people have made generous contributions to the wide range of
-software distributed through that system in reliance on
-consistent application of that system; it is up to the
-author/donor to decide if he or she is willing to distribute
-software through any other system and a licensee cannot impose
-that choice.
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
-This section is intended to make thoroughly clear what is
-believed to be a consequence of the rest of this License.
+ 12. If the distribution and/or use of the Library is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Library under this License may add
+an explicit geographical distribution limitation excluding those countries,
+so that distribution is permitted only in or among countries not thus
+excluded. In such case, this License incorporates the limitation as if
+written in the body of this License.
-12. If the distribution and/or use of the Library is restricted
-in certain countries either by patents or by copyrighted
-interfaces, the original copyright holder who places the Library
-under this License may add an explicit geographical distribution
-limitation excluding those countries, so that distribution is
-permitted only in or among countries not thus excluded. In such
-case, this License incorporates the limitation as if written in
-the body of this License.
+ 13. The Free Software Foundation may publish revised and/or new
+versions of the Library General Public License from time to time.
+Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
-13. The Free Software Foundation may publish revised and/or new
-versions of the Library General Public License from time to
-time. Such new versions will be similar in spirit to the present
-version, but may differ in detail to address new problems or
-concerns.
+Each version is given a distinguishing version number. If the Library
+specifies a version number of this License which applies to it and
+"any later version", you have the option of following the terms and
+conditions either of that version or of any later version published by
+the Free Software Foundation. If the Library does not specify a
+license version number, you may choose any version ever published by
+the Free Software Foundation.
+
+ 14. If you wish to incorporate parts of the Library into other free
+programs whose distribution conditions are incompatible with these,
+write to the author to ask for permission. For software which is
+copyrighted by the Free Software Foundation, write to the Free
+Software Foundation; we sometimes make exceptions for this. Our
+decision will be guided by the two goals of preserving the free status
+of all derivatives of our free software and of promoting the sharing
+and reuse of software generally.
-Each version is given a distinguishing version number. If the
-Library specifies a version number of this License which applies
-to it and "any later version", you have the option of following
-the terms and conditions either of that version or of any later
-version published by the Free Software Foundation. If the
-Library does not specify a license version number, you may
-choose any version ever published by the Free Software
-Foundation.
-
-14. If you wish to incorporate parts of the Library into other
-free programs whose distribution conditions are incompatible
-with these, write to the author to ask for permission. For
-software which is copyrighted by the Free Software Foundation,
-write to the Free Software Foundation; we sometimes make
-exceptions for this. Our decision will be guided by the two
-goals of preserving the free status of all derivatives of our
-free software and of promoting the sharing and reuse of software
-generally.
-
- NO WARRANTY
+ NO WARRANTY
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
-OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY KIND,
-EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
+KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
@@ -460,29 +426,28 @@ THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
-FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL
-DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
-SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES.
- END OF TERMS AND CONDITIONS
+ END OF TERMS AND CONDITIONS
+
+ How to Apply These Terms to Your New Libraries
- Appendix: How to Apply These Terms to Your New Libraries
+ If you develop a new library, and you want it to be of the greatest
+possible use to the public, we recommend making it free software that
+everyone can redistribute and change. You can do so by permitting
+redistribution under these terms (or, alternatively, under the terms of the
+ordinary General Public License).
-If you develop a new library, and you want it to be of the
-greatest possible use to the public, we recommend making it free
-software that everyone can redistribute and change. You can do
-so by permitting redistribution under these terms (or,
-alternatively, under the terms of the ordinary General Public
-License).
-
-To apply these terms, attach the following notices to the
-library. It is safest to attach them to the start of each
-source file to most effectively convey the exclusion of
-warranty; and each file should have at least the "copyright"
-line and a pointer to where the full notice is found.
+ To apply these terms, attach the following notices to the library. It is
+safest to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least the
+"copyright" line and a pointer to where the full notice is found.
Copyright (C)
@@ -498,8 +463,8 @@ line and a pointer to where the full notice is found.
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
- License along with this library; if not, write to the Free
- Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Also add information on how to contact you by electronic and paper mail.
@@ -514,4 +479,3 @@ necessary. Here is a sample; alter the names:
Ty Coon, President of Vice
That's all there is to it!
-
diff --git a/docs/msw/install.md b/docs/msw/install.md
index 9b54f0babd..1ec18d7943 100644
--- a/docs/msw/install.md
+++ b/docs/msw/install.md
@@ -34,16 +34,21 @@ variable containing the full path to this directory. While this is not
actually required, this makes using the library more convenient and
this environment variable is used in the examples below.
-NB: If you checked your sources from version control repository and
-didn't obtain them from a release file, you also need to copy
-`include/wx/msw/setup0.h` to `include/wx/msw/setup.h` and to remember
-to update the latter whenever the former changes, otherwise you
-will get compilation errors if any new symbols are added to
-setup0.h file in the repository.
+Upgrading Existing Git Checkout {#msw_update_setup_h}
+-------------------------------
-If you have no intention of modifying setup.h, you may avoid this
-problem by creating a symbolic link to setup0.h instead of making
-a copy of it using mklink, from an admin command prompt:
+If you checked your sources from version control repository and didn't
+obtain them from a release file, you may need to update your
+`include/wx/msw/setup.h` file to add any new options from
+`include/wx/msw/setup0.h` to it. If you hadn't edited `setup.h` file
+manually, you can just delete it to force recreating it by copying
+`setup0.h` to `setup.h` during the next build. If you forget to do it,
+you may get errors during the build due to new options being
+undefined.
+
+If you have no intention of ever modifying `setup.h`, you may avoid this
+problem entirely by creating a symbolic link to `setup0.h` before
+building, e.g. using mklink, from an admin command prompt:
cd %WXWIN%\include\wx\msw\
mklink setup.h setup0.h
@@ -325,6 +330,24 @@ more details)
+Installing and building wxWidgets using vcpkg {#msw_install_and_build}
+=============================================
+
+You can download and install wxWidgets using the [vcpkg](https://github.com/Microsoft/vcpkg)
+dependency manager:
+
+ > git clone https://github.com/Microsoft/vcpkg.git
+ > cd vcpkg
+ > bootstrap-vcpkg.bat
+ > vcpkg integrate install
+ > vcpkg install wxwidgets
+
+The wxWidgets port in vcpkg is kept up to date by Microsoft team members and community
+contributors. If the version is out of date, please [create an issue or pull request]
+(https://github.com/Microsoft/vcpkg) on the vcpkg repository.
+
+
+
Configuring the Build {#msw_build_config}
================================================================
@@ -580,3 +603,5 @@ backends are avaiable here.
@subpage plat_msw_msys2_gtk "Building with Win32 MSys2 GDK backend"
@subpage plat_msw_gtk "Building wxGTK port with Win32 GDK backend"
+
+@subpage plat_msw_msys2_qt "Building with Win32 MSys2 Qt backend"
diff --git a/docs/msw/msys2-gtk.md b/docs/msw/msys2-gtk.md
index e6cb03567a..40a3057d2d 100644
--- a/docs/msw/msys2-gtk.md
+++ b/docs/msw/msys2-gtk.md
@@ -18,43 +18,37 @@ For the MSys2 way please see
Building steps:
-**Warning**: At the time these directions were written the GTK version 3
- was NOT able to create wxGTK/Win32 libraries that were usable.
-
-1. Install the mingw32 packages needed to build wxGTK/Win32 using the
+A. Install the MSys2 mingw packages needed to build wxGTK/Win32 using the
configure/make build method.
- From the MSys2 prompt or MSys2 MinGW prompt:
-
- The 32 bit Mingw packages are prefixed with "mingw-w64-i686-";
- Change the prefix to "mingw-w64-x86_64-" if you wish to do 64 bit.
+ From the MSys2 MinGW prompt:
pacman -S --needed --noconfirm make
- pacman -S --needed --noconfirm mingw-w64-i686-libjpeg-turbo
- pacman -S --needed --noconfirm mingw-w64-i686-libpng
- pacman -S --needed --noconfirm mingw-w64-i686-libtiff
- pacman -S --needed --noconfirm mingw-w64-i686-gcc
- pacman -S --needed --noconfirm mingw-w64-i686-pkg-config
- ## gtk2 can take a long time to update/find fonts
- pacman -S --needed --noconfirm mingw-w64-i686-gtk2
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-libjpeg-turbo
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-libpng
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-libtiff
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-gcc
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-pkg-config
+ ## gtk3 can take a long time to update/find fonts
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-gtk3
Packages that are needed but are normally installed already.
- pacman -S --needed --noconfirm mingw-w64-i686-gcc-libs
- pacman -S --needed --noconfirm mingw-w64-i686-expat
- pacman -S --needed --noconfirm mingw-w64-i686-xz
- pacman -S --needed --noconfirm mingw-w64-i686-zlib
- pacman -S --needed --noconfirm mingw-w64-i686-gdk-pixbuf2
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-gcc-libs
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-expat
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-xz
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-zlib
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-gdk-pixbuf2
-2. Build the wxGTK/Win32 static library
+B. Build the wxGTK/Win32 static library
1. Open MSys2 MinGW Prompt
- (These steps were tested on MinGW32; but, should work under MinGW64)
+ (These steps were tested on MinGW64; but, should work under MinGW32)
2. Use the cd command to change directory to the wxWidgets top folder.
- 3. Create the "build-gtk2-static" folder to build the static libraries
+ 3. Create the "build-${MSYSTEM_CARCH}-gtk3-static" folder to build the static libraries
- mkdir -p build-gtk2-static
+ mkdir -p build-${MSYSTEM_CARCH}-gtk3-static
4. Configure wxWidgets
Option "--disable-precomp-headers" is NOT needed.
@@ -63,8 +57,8 @@ Building steps:
Remove configure option "--disable-wxdib" to set wxUSE_WXDIB to 1.
The directions docs/msw/gtk.txt results in wxUSE_WXDIB set to 1.
- cd build-gtk2-static && \
- ../configure --with-gtk=2 \
+ cd build-${MSYSTEM_CARCH}-gtk3-static && \
+ ../configure --with-gtk=3 \
--disable-wxdib \
--disable-shared \
--disable-precomp-headers \
@@ -72,53 +66,53 @@ Building steps:
5. clean the wxGTK static libraries
- cd build-gtk2-static && make clean && cd ..
+ cd build-${MSYSTEM_CARCH}-gtk3-static && make clean && cd ..
6. make the wxGTK static libraries
- cd build-gtk2-static && make && cd ..
+ cd build-${MSYSTEM_CARCH}-gtk3-static && make && cd ..
-3. Build and run the minimal static sample
+C. Build and run the minimal static sample
1. Clean the minimal sample
- cd build-gtk2-static/samples/minimal && make clean && cd ../../..
+ cd build-${MSYSTEM_CARCH}-gtk3-static/samples/minimal && make clean && cd ../../..
2. Build the minimal sample
- cd build-gtk2-static/samples/minimal && make && cd ../../..
+ cd build-${MSYSTEM_CARCH}-gtk3-static/samples/minimal && make && cd ../../..
3. Run the minimal sample
- ./build-gtk2-static/samples/minimal/minimal.exe
+ ./build-${MSYSTEM_CARCH}-gtk3-static/samples/minimal/minimal.exe
-4. Build most of the static samples
+D. Build most of the static samples
1. Clean most of the static samples
- cd build-gtk2-static/samples && make clean && cd ../..
+ cd build-${MSYSTEM_CARCH}-gtk3-static/samples && make clean && cd ../..
2. Build most of the static samples
- cd build-gtk2-static/samples && make && cd ../..
+ cd build-${MSYSTEM_CARCH}-gtk3-static/samples && make && cd ../..
-5. Run the drawing static sample
+E. Run the drawing static sample
- cd samples/drawing && ../../build-gtk2-static/samples/drawing/drawing.exe && cd ../..
+ cd samples/drawing && ../../build-${MSYSTEM_CARCH}-gtk3-static/samples/drawing/drawing.exe && cd ../..
-6. Run the splash static sample
+F. Run the splash static sample
- cd samples/splash && ../../build-gtk2-static/samples/splash/splash.exe && cd ../..
+ cd samples/splash && ../../build-${MSYSTEM_CARCH}-gtk3-static/samples/splash/splash.exe && cd ../..
-7. Run the widgets static sample
+G. Run the widgets static sample
- cd samples/widgets && ../../build-gtk2-static/samples/widgets/widgets.exe && cd ../..
+ cd samples/widgets && ../../build-${MSYSTEM_CARCH}-gtk3-static/samples/widgets/widgets.exe && cd ../..
-8. Run the toolbar static sample
+H. Run the toolbar static sample
- cd samples/toolbar && ../../build-gtk2-static/samples/toolbar/toolbar.exe && cd ../..
+ cd samples/toolbar && ../../build-${MSYSTEM_CARCH}-gtk3-static/samples/toolbar/toolbar.exe && cd ../..
-9. Run the image static sample
+I. Run the image static sample
- cd samples/image && ../../build-gtk2-static/samples/image/image.exe && cd ../..
+ cd samples/image && ../../build-${MSYSTEM_CARCH}-gtk3-static/samples/image/image.exe && cd ../..
diff --git a/docs/msw/msys2-msw.md b/docs/msw/msys2-msw.md
index a0bdedd853..3b8aafe66e 100644
--- a/docs/msw/msys2-msw.md
+++ b/docs/msw/msys2-msw.md
@@ -11,35 +11,32 @@ For the MSys2 way please see https://github.com/Alexpux/MINGW-packages
Building steps:
-1. Install the mingw32 packages needed to build wxMSW using the
+A. Install the mingw32 packages needed to build wxMSW using the
configure/make build method.
- From the MSys2 prompt or MSys2 MinGW prompt:
-
- The 32 bit Mingw packages are prefixed with "mingw-w64-i686-";
- Change the prefix to "mingw-w64-x86_64-" if you wish to do 64 bit.
+ From the MSys2 MinGW prompt:
pacman -S --needed --noconfirm make
- pacman -S --needed --noconfirm mingw-w64-i686-libjpeg-turbo
- pacman -S --needed --noconfirm mingw-w64-i686-libpng
- pacman -S --needed --noconfirm mingw-w64-i686-libtiff
- pacman -S --needed --noconfirm mingw-w64-i686-gcc
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-libjpeg-turbo
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-libpng
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-libtiff
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-gcc
Packages that are needed but are normally installed already.
- pacman -S --needed --noconfirm mingw-w64-i686-gcc-libs
- pacman -S --needed --noconfirm mingw-w64-i686-expat
- pacman -S --needed --noconfirm mingw-w64-i686-xz
- pacman -S --needed --noconfirm mingw-w64-i686-zlib
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-gcc-libs
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-expat
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-xz
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-zlib
-2. Build the wxMSW static library
+B. Build the wxMSW static library
1. Open MSys2 MinGW Prompt
- (These steps were tested on MinGW32; but, should work under MinGW64)
+ (These steps were tested on MinGW64; but, should work under MinGW32)
2. Use the cd command to change directory to the wxWidgets top folder.
- 3. Create the "build-msw-static" folder to build the static libraries
+ 3. Create the "build-${MSYSTEM_CARCH}-msw-static" folder to build the static libraries
- mkdir -p build-msw-static
+ mkdir -p build-${MSYSTEM_CARCH}-msw-static
4. Configure wxWidgets
@@ -48,7 +45,7 @@ Building steps:
And, I think my old 32 bit Windows machine
works best with it disabled.
- cd build-msw-static && \
+ cd build-${MSYSTEM_CARCH}-msw-static && \
../configure --with-msw \
--disable-shared \
--disable-precomp-headers \
@@ -56,46 +53,46 @@ Building steps:
5. make the wxMSW static libraries
- cd build-msw-static && make && cd ..
+ cd build-${MSYSTEM_CARCH}-msw-static && make && cd ..
-3. Build and run the minimal static sample
+C. Build and run the minimal static sample
1. Clean the minimal sample
- cd build-msw-static/samples/minimal && make clean && cd ../../..
+ cd build-${MSYSTEM_CARCH}-msw-static/samples/minimal && make clean && cd ../../..
2. Build the minimal sample
- cd build-msw-static/samples/minimal && make && cd ../../..
+ cd build-${MSYSTEM_CARCH}-msw-static/samples/minimal && make && cd ../../..
3. Run the minimal sample
- ./build-msw-static/samples/minimal/minimal.exe
+ ./build-${MSYSTEM_CARCH}-msw-static/samples/minimal/minimal.exe
-4. Clean the static samples
+D. Clean the static samples
- cd build-msw-static/samples && make clean && cd ../..
+ cd build-${MSYSTEM_CARCH}-msw-static/samples && make clean && cd ../..
-5. Build and run the typetest static sample to verify MIME database works
+E. Build and run the typetest static sample to verify MIME database works
- cd build-msw-static/samples/typetest && make && cd ../../..
- ./build-msw-static/samples/typetest/typetest.exe
+ cd build-${MSYSTEM_CARCH}-msw-static/samples/typetest && make && cd ../../..
+ ./build-${MSYSTEM_CARCH}-msw-static/samples/typetest/typetest.exe
-6. Build and run the drawing static sample
+F. Build and run the drawing static sample
- cd build-msw-static/samples/drawing && make && cd ../../..
- cd samples/drawing && ../../build-msw-static/samples/drawing/drawing.exe && cd ../..
+ cd build-${MSYSTEM_CARCH}-msw-static/samples/drawing && make && cd ../../..
+ cd samples/drawing && ../../build-${MSYSTEM_CARCH}-msw-static/samples/drawing/drawing.exe && cd ../..
-7. Build and run the splash static sample
+G. Build and run the splash static sample
- cd build-msw-static/samples/splash && make && cd ../../..
- cd samples/splash && ../../build-msw-static/samples/splash/splash.exe && cd ../..
+ cd build-${MSYSTEM_CARCH}-msw-static/samples/splash && make && cd ../../..
+ cd samples/splash && ../../build-${MSYSTEM_CARCH}-msw-static/samples/splash/splash.exe && cd ../..
-8. Build and run the widgets static sample
+H. Build and run the widgets static sample
- cd build-msw-static/samples/widgets && make && cd ../../..
- cd samples/widgets && ../../build-msw-static/samples/widgets/widgets.exe && cd ../..
+ cd build-${MSYSTEM_CARCH}-msw-static/samples/widgets && make && cd ../../..
+ cd samples/widgets && ../../build-${MSYSTEM_CARCH}-msw-static/samples/widgets/widgets.exe && cd ../..
-9. Build all the rest of the static samples
+I. Build all the rest of the static samples
- cd build-msw-static/samples && make && cd ../..
+ cd build-${MSYSTEM_CARCH}-msw-static/samples && make && cd ../..
diff --git a/docs/msw/msys2-qt.md b/docs/msw/msys2-qt.md
new file mode 100644
index 0000000000..16ab817143
--- /dev/null
+++ b/docs/msw/msys2-qt.md
@@ -0,0 +1,118 @@
+Building wxQT port with Win32 MSys2 Qt5 backend {#plat_msw_msys2_qt}
+------------------------------------------------
+
+The MSys2 website is http://www.msys2.org/
+
+These building steps are NOT the normal way to build MSys2 MinGW packages.
+But, they are a way the wxWidgets developers can test that wxWidgets
+can build the wxQT/Win32 libraries under MSys2 MinGW.
+
+For the MSys2 way please see
+ https://github.com/Alexpux/MINGW-packages and
+ https://github.com/msys2/msys2/wiki/Creating-packages
+
+Building steps:
+
+A. Install the MSys2 mingw packages needed to build wxQT/Win32 using the
+ configure/make build method.
+ From the MSys2 MinGW prompt:
+
+ pacman -S --needed --noconfirm make
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-libjpeg-turbo
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-libpng
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-libtiff
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-gcc
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-pkg-config
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-qt5
+
+
+ Packages that are needed but are normally installed already.
+
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-gcc-libs
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-expat
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-xz
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-zlib
+ pacman -S --needed --noconfirm ${MINGW_PACKAGE_PREFIX}-gdk-pixbuf2
+
+
+B. Build the wxQT/Win32 static library
+ 1. Open MSys2 MinGW Prompt
+ (These steps were tested on MinGW64; but, should work under MinGW32)
+ 2. Use the cd command to change directory to the wxWidgets top folder.
+
+ 3. Create the "build-${MSYSTEM_CARCH}-qt-static" folder to build the static libraries
+
+ mkdir -p build-${MSYSTEM_CARCH}-qt-static
+
+ 4. Configure wxWidgets
+ Option "--disable-precomp-headers" is NOT needed.
+ It is being used to test for compile issues.
+
+ Remove configure option "--disable-wxdib" to set wxUSE_WXDIB to 1.
+ At the time these directions where written wxUSE_WXDIB set to 1
+ resulted in build error in dnd sample and run-time errors in
+ other samples.
+
+ cd build-${MSYSTEM_CARCH}-qt-static && \
+ ../configure --with-qt \
+ --disable-wxdib \
+ --disable-shared \
+ --disable-precomp-headers \
+ && cd ..
+
+ 5. clean the wxQT static libraries
+
+ cd build-${MSYSTEM_CARCH}-qt-static && make clean && cd ..
+
+ 6. make the wxQT static libraries
+
+ cd build-${MSYSTEM_CARCH}-qt-static && make && cd ..
+
+
+C. Build and run the minimal static sample
+ 1. Clean the minimal sample
+
+ cd build-${MSYSTEM_CARCH}-qt-static/samples/minimal && make clean && cd ../../..
+
+ 2. Build the minimal sample
+
+ cd build-${MSYSTEM_CARCH}-qt-static/samples/minimal && make && cd ../../..
+
+ 3. Run the minimal sample
+
+ ./build-${MSYSTEM_CARCH}-qt-static/samples/minimal/minimal.exe
+
+
+D. Build most of the static samples
+ 1. Clean most of the static samples
+
+ cd build-${MSYSTEM_CARCH}-qt-static/samples && make clean && cd ../..
+
+ 2. Build most of the static samples
+
+ cd build-${MSYSTEM_CARCH}-qt-static/samples && make && cd ../..
+
+
+E. Run the drawing static sample
+
+ cd samples/drawing && ../../build-${MSYSTEM_CARCH}-qt-static/samples/drawing/drawing.exe && cd ../..
+
+F. Run the splash static sample
+
+ cd samples/splash && ../../build-${MSYSTEM_CARCH}-qt-static/samples/splash/splash.exe && cd ../..
+
+G. Run the widgets static sample
+
+ cd samples/widgets && ../../build-${MSYSTEM_CARCH}-qt-static/samples/widgets/widgets.exe && cd ../..
+
+H. Run the toolbar static sample
+
+ cd samples/toolbar && ../../build-${MSYSTEM_CARCH}-qt-static/samples/toolbar/toolbar.exe && cd ../..
+
+I. Run the image static sample
+
+ cd samples/image && ../../build-${MSYSTEM_CARCH}-qt-static/samples/image/image.exe && cd ../..
+
+J. Run the dnd static sample
+
+ cd samples/dnd && ../../build-${MSYSTEM_CARCH}-qt-static/samples/dnd/dnd.exe && cd ../..
diff --git a/include/wx/anidecod.h b/include/wx/anidecod.h
index 4a112410c8..bc24dd57ca 100644
--- a/include/wx/anidecod.h
+++ b/include/wx/anidecod.h
@@ -53,11 +53,12 @@ public:
wxAnimationType GetType() const wxOVERRIDE
{ return wxANIMATION_TYPE_ANI; }
-private:
+protected:
// wxAnimationDecoder pure virtual:
virtual bool DoCanRead( wxInputStream& stream ) const wxOVERRIDE;
// modifies current stream position (see wxAnimationDecoder::CanRead)
+private:
// frames stored as wxImage(s): ANI files are meant to be used mostly for animated
// cursors and thus they do not use any optimization to encode differences between
// two frames: they are just a list of images to display sequentially.
diff --git a/include/wx/animate.h b/include/wx/animate.h
index 63e188b863..f2db61fc12 100644
--- a/include/wx/animate.h
+++ b/include/wx/animate.h
@@ -21,38 +21,63 @@
#include "wx/bitmap.h"
class WXDLLIMPEXP_FWD_CORE wxAnimation;
+class wxAnimationImpl;
extern WXDLLIMPEXP_DATA_CORE(wxAnimation) wxNullAnimation;
extern WXDLLIMPEXP_DATA_CORE(const char) wxAnimationCtrlNameStr[];
+WX_DECLARE_LIST_WITH_DECL(wxAnimationDecoder, wxAnimationDecoderList, class WXDLLIMPEXP_CORE);
// ----------------------------------------------------------------------------
-// wxAnimationBase
+// wxAnimation
// ----------------------------------------------------------------------------
-class WXDLLIMPEXP_CORE wxAnimationBase : public wxObject
+class WXDLLIMPEXP_CORE wxAnimation : public wxObject
{
public:
- wxAnimationBase() {}
+ wxAnimation();
+ explicit wxAnimation(const wxString &name, wxAnimationType type = wxANIMATION_TYPE_ANY);
- virtual bool IsOk() const = 0;
+#ifdef wxHAS_MEMBER_DEFAULT
+ wxAnimation(const wxAnimation&) wxMEMBER_DEFAULT;
+ wxAnimation& operator=(const wxAnimation&) wxMEMBER_DEFAULT;
+#endif
- // can be -1
- virtual int GetDelay(unsigned int frame) const = 0;
+ bool IsOk() const;
+ bool IsCompatibleWith(wxClassInfo* ci) const;
- virtual unsigned int GetFrameCount() const = 0;
- virtual wxImage GetFrame(unsigned int frame) const = 0;
- virtual wxSize GetSize() const = 0;
+ int GetDelay(unsigned int frame) const;
+ unsigned int GetFrameCount() const;
+ wxImage GetFrame(unsigned int frame) const;
+ wxSize GetSize() const;
- virtual bool LoadFile(const wxString& name,
- wxAnimationType type = wxANIMATION_TYPE_ANY) = 0;
- virtual bool Load(wxInputStream& stream,
- wxAnimationType type = wxANIMATION_TYPE_ANY) = 0;
+ bool LoadFile(const wxString& name, wxAnimationType type = wxANIMATION_TYPE_ANY);
+ bool Load(wxInputStream& stream, wxAnimationType type = wxANIMATION_TYPE_ANY);
+
+ // Methods for managing the list of decoders
+ static inline wxAnimationDecoderList& GetHandlers() { return sm_handlers; }
+ static void AddHandler(wxAnimationDecoder *handler);
+ static void InsertHandler(wxAnimationDecoder *handler);
+ static const wxAnimationDecoder *FindHandler( wxAnimationType animType );
+
+ static void CleanUpHandlers();
+ static void InitStandardHandlers();
protected:
- wxDECLARE_ABSTRACT_CLASS(wxAnimationBase);
-};
+ wxAnimationImpl* GetImpl() const;
+private:
+ static wxAnimationDecoderList sm_handlers;
+
+ // Ctor used by wxAnimationCtrl::CreateAnimation() only.
+ explicit wxAnimation(wxAnimationImpl* impl);
+
+ // Give it permission to create objects of this class using specific impl
+ // and access our GetImpl().
+ friend class wxAnimationCtrlBase;
+
+ wxDECLARE_DYNAMIC_CLASS(wxAnimation);
+};
// ----------------------------------------------------------------------------
@@ -78,7 +103,7 @@ public:
wxAnimationType type = wxANIMATION_TYPE_ANY) = 0;
virtual void SetAnimation(const wxAnimation &anim) = 0;
- virtual wxAnimation GetAnimation() const = 0;
+ wxAnimation GetAnimation() const { return m_animation; }
virtual bool Play() = 0;
virtual void Stop() = 0;
@@ -91,7 +116,23 @@ public:
wxBitmap GetInactiveBitmap() const
{ return m_bmpStatic; }
+ wxAnimation CreateAnimation() const
+ { return MakeAnimFromImpl(DoCreateAnimationImpl()); }
+
protected:
+ virtual wxAnimationImpl* DoCreateAnimationImpl() const = 0;
+
+ // These methods allow derived classes access to private wxAnimation ctor
+ // and wxAnimation::GetImpl(), respectively.
+ static wxAnimation MakeAnimFromImpl(wxAnimationImpl* impl)
+ { return wxAnimation(impl); }
+
+ wxAnimationImpl* GetAnimImpl() const
+ { return m_animation.GetImpl(); }
+
+ // The associated animation, possibly invalid/empty.
+ wxAnimation m_animation;
+
// the inactive bitmap as it was set by the user
wxBitmap m_bmpStatic;
@@ -104,9 +145,6 @@ protected:
// called by SetInactiveBitmap
virtual void DisplayStaticImage() = 0;
-
-private:
- wxDECLARE_ABSTRACT_CLASS(wxAnimationCtrlBase);
};
@@ -116,9 +154,31 @@ private:
#if defined(__WXGTK20__) && !defined(__WXUNIVERSAL__)
#include "wx/gtk/animate.h"
+
+ #define wxHAS_NATIVE_ANIMATIONCTRL
#else
#include "wx/generic/animate.h"
-#endif
+
+ class WXDLLIMPEXP_ADV wxAnimationCtrl : public wxGenericAnimationCtrl
+ {
+ public:
+ wxAnimationCtrl()
+ : wxGenericAnimationCtrl()
+ {}
+ wxAnimationCtrl(wxWindow *parent,
+ wxWindowID id,
+ const wxAnimation& anim = wxNullAnimation,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxAC_DEFAULT_STYLE,
+ const wxString& name = wxAnimationCtrlNameStr)
+ : wxGenericAnimationCtrl(parent, id, anim, pos, size, style, name)
+ {}
+
+ private:
+ wxDECLARE_DYNAMIC_CLASS(wxAnimationCtrl);
+ };
+#endif // defined(__WXGTK20__)
#endif // wxUSE_ANIMATIONCTRL
diff --git a/include/wx/aui/auibar.h b/include/wx/aui/auibar.h
index 05b841983a..6b612b545a 100644
--- a/include/wx/aui/auibar.h
+++ b/include/wx/aui/auibar.h
@@ -525,6 +525,12 @@ public:
void ClearTools() { Clear() ; }
void Clear();
+
+ bool DestroyTool(int toolId);
+ bool DestroyToolByIndex(int idx);
+
+ // Note that these methods do _not_ delete the associated control, if any.
+ // Use DestroyTool() or DestroyToolByIndex() if this is wanted.
bool DeleteTool(int toolId);
bool DeleteByIndex(int toolId);
diff --git a/include/wx/aui/framemanager.h b/include/wx/aui/framemanager.h
index e091465375..644663d64e 100644
--- a/include/wx/aui/framemanager.h
+++ b/include/wx/aui/framemanager.h
@@ -123,7 +123,6 @@ enum wxAuiPaneInsertLevel
// forwards and array declarations
class wxAuiDockUIPart;
-class wxAuiPaneButton;
class wxAuiPaneInfo;
class wxAuiDockInfo;
class wxAuiDockArt;
@@ -132,7 +131,6 @@ class wxAuiManagerEvent;
#ifndef SWIG
WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiDockInfo, wxAuiDockInfoArray, WXDLLIMPEXP_AUI);
WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiDockUIPart, wxAuiDockUIPartArray, WXDLLIMPEXP_AUI);
-WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiPaneButton, wxAuiPaneButtonArray, WXDLLIMPEXP_AUI);
WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiPaneInfo, wxAuiPaneInfoArray, WXDLLIMPEXP_AUI);
WX_DEFINE_USER_EXPORTED_ARRAY_PTR(wxAuiPaneInfo*, wxAuiPaneInfoPtrArray, class WXDLLIMPEXP_AUI);
WX_DEFINE_USER_EXPORTED_ARRAY_PTR(wxAuiDockInfo*, wxAuiDockInfoPtrArray, class WXDLLIMPEXP_AUI);
@@ -176,7 +174,6 @@ public:
// unsafe bits of "dest"
source.window = window;
source.frame = frame;
- source.buttons = buttons;
wxCHECK_RET(source.IsValid(),
"window settings and pane settings are incompatible");
// now assign
@@ -393,9 +390,6 @@ public:
wxSize floating_size; // size while floating
int dock_proportion; // proportion while docked
- wxAuiPaneButtonArray buttons; // buttons on the pane
-
-
wxRect rect; // current rectangle (populated by wxAUI)
bool IsValid() const;
@@ -730,19 +724,13 @@ public:
int orientation; // orientation (either wxHORIZONTAL or wxVERTICAL)
wxAuiDockInfo* dock; // which dock the item is associated with
wxAuiPaneInfo* pane; // which pane the item is associated with
- wxAuiPaneButton* button; // which pane button the item is associated with
+ int button; // which pane button the item is associated with
wxSizer* cont_sizer; // the part's containing sizer
wxSizerItem* sizer_item; // the sizer item of the part
wxRect rect; // client coord rectangle of the part itself
};
-class WXDLLIMPEXP_AUI wxAuiPaneButton
-{
-public:
- int button_id; // id of the button (e.g. buttonClose)
-};
-
#ifndef SWIG
diff --git a/include/wx/aui/tabmdi.h b/include/wx/aui/tabmdi.h
index bd98406353..af0a100ef6 100644
--- a/include/wx/aui/tabmdi.h
+++ b/include/wx/aui/tabmdi.h
@@ -108,6 +108,11 @@ protected:
virtual void DoGetClientSize(int *width, int *height) const wxOVERRIDE;
private:
+ void OnClose(wxCloseEvent& event);
+
+ // close all children, return false if any of them vetoed it
+ bool CloseAll();
+
wxDECLARE_EVENT_TABLE();
wxDECLARE_DYNAMIC_CLASS(wxAuiMDIParentFrame);
};
diff --git a/include/wx/confbase.h b/include/wx/confbase.h
index 714e3d0092..7188f50790 100644
--- a/include/wx/confbase.h
+++ b/include/wx/confbase.h
@@ -211,7 +211,7 @@ public:
if ( !found )
{
if (IsRecordingDefaults())
- ((wxConfigBase *)this)->Write(key, defVal);
+ const_cast(this)->Write(key, defVal);
*value = defVal;
}
return found;
diff --git a/include/wx/cpp.h b/include/wx/cpp.h
index c25c91fe1c..422ab032e9 100644
--- a/include/wx/cpp.h
+++ b/include/wx/cpp.h
@@ -96,6 +96,27 @@
#define wxSTATEMENT_MACRO_BEGIN do {
#define wxSTATEMENT_MACRO_END } while ( (void)0, 0 )
+/*
+ Helper for executing the following statement conditionally without using
+ conditional statements.
+
+ This strange macro is needed in the first place to avoid the problems due
+ to nested if/else inside macros. E.g. if some MACRO started with "if", then
+
+ if ( cond )
+ MACRO();
+ else
+ ...
+
+ would be broken because "..." would bind to the wrong "if" inside the macro
+ rather than the visible one. So we use wxDO_IF() inside the macro instead
+ to avoid this problem.
+ */
+#define wxDO_IF_HELPER(loopvar, condition) \
+ for ( bool loopvar = false; !loopvar && condition; loopvar = true )
+
+#define wxDO_IF(condition) wxDO_IF_HELPER(wxMAKE_UNIQUE_NAME(wxdoif), condition)
+
/*
Define __WXFUNCTION__ which is like standard __FUNCTION__ but defined as
NULL for the compilers which don't support the latter.
diff --git a/include/wx/dataview.h b/include/wx/dataview.h
index 6558cd05c2..99b620d84d 100644
--- a/include/wx/dataview.h
+++ b/include/wx/dataview.h
@@ -709,7 +709,7 @@ public:
wxDataViewItem GetCurrentItem() const;
void SetCurrentItem(const wxDataViewItem& item);
- virtual wxDataViewItem GetTopItem() const { return wxDataViewItem(0); }
+ virtual wxDataViewItem GetTopItem() const { return wxDataViewItem(NULL); }
virtual int GetCountPerPage() const { return wxNOT_FOUND; }
// Currently focused column of the current item or NULL if no column has focus
@@ -1213,12 +1213,12 @@ public:
const wxIcon &GetIcon() const
{ return m_icon; }
void SetData( wxClientData *data )
- { if (m_data) delete m_data; m_data = data; }
+ { delete m_data; m_data = data; }
wxClientData *GetData() const
{ return m_data; }
wxDataViewItem GetItem() const
- { return wxDataViewItem( (void*) this ); }
+ { return wxDataViewItem(const_cast(static_cast(this))); }
virtual bool IsContainer()
{ return false; }
diff --git a/include/wx/dc.h b/include/wx/dc.h
index cc0a48238e..088c22c683 100644
--- a/include/wx/dc.h
+++ b/include/wx/dc.h
@@ -1327,7 +1327,7 @@ public:
: m_dc(thdc.m_dc),
m_hdc(thdc.m_hdc)
{
- const_cast(thdc).m_hdc = 0;
+ const_cast(thdc).m_hdc = NULL;
}
~TempHDC()
diff --git a/include/wx/defs.h b/include/wx/defs.h
index 2bb24814fd..347d622ee7 100644
--- a/include/wx/defs.h
+++ b/include/wx/defs.h
@@ -285,6 +285,29 @@ typedef short int WXTYPE;
#define wxOVERRIDE
#endif /* HAVE_OVERRIDE */
+/* same for more C++11 keywords which don't have such historic baggage as
+ override and so can be detected by just testing for C++11 support (which
+ still requires handling MSVS specially, unfortunately) */
+#if __cplusplus >= 201103L || wxCHECK_VISUALC_VERSION(14)
+ #define wxHAS_MEMBER_DEFAULT
+ #define wxMEMBER_DEFAULT = default
+
+ #define wxHAS_NOEXCEPT
+ #define wxNOEXCEPT noexcept
+#else
+ #define wxMEMBER_DEFAULT
+
+ #define wxNOEXCEPT
+#endif
+
+/*
+ Support for nullptr is available since MSVS 2010, even though it doesn't
+ define __cplusplus as a C++11 compiler.
+ */
+#if __cplusplus >= 201103 || wxCHECK_VISUALC_VERSION(10)
+ #define wxHAS_NULLPTR_T
+#endif
+
/* wxFALLTHROUGH is used to notate explicit fallthroughs in switch statements */
#if __cplusplus >= 201703L
@@ -2986,7 +3009,7 @@ typedef const void* WXWidget;
/* macros to define a class without copy ctor nor assignment operator */
/* --------------------------------------------------------------------------- */
-#if defined(__cplusplus) && __cplusplus >= 201103L
+#if defined(__cplusplus) && (__cplusplus >= 201103L || wxCHECK_VISUALC_VERSION(14))
#define wxMEMBER_DELETE = delete
#else
#define wxMEMBER_DELETE
diff --git a/include/wx/dnd.h b/include/wx/dnd.h
index 2f3f333329..cb158927d2 100644
--- a/include/wx/dnd.h
+++ b/include/wx/dnd.h
@@ -144,7 +144,7 @@ public:
wxDataObject *GetDataObject() const
{ return m_dataObject; }
void SetDataObject(wxDataObject *dataObject)
- { if (m_dataObject) delete m_dataObject;
+ { delete m_dataObject;
m_dataObject = dataObject; }
// these functions are called when data is moved over position (x, y) and
diff --git a/include/wx/docview.h b/include/wx/docview.h
index 64378d574f..1770170c09 100644
--- a/include/wx/docview.h
+++ b/include/wx/docview.h
@@ -737,7 +737,7 @@ private:
void OnCloseWindow(wxCloseEvent& event)
{
if ( CloseView(event) )
- BaseClass::Destroy();
+ this->Destroy();
//else: vetoed
}
diff --git a/include/wx/dynarray.h b/include/wx/dynarray.h
index c5cb138e64..67dc5e6f5e 100644
--- a/include/wx/dynarray.h
+++ b/include/wx/dynarray.h
@@ -391,7 +391,7 @@ public:
void Insert(const T* pItem, size_t uiIndex)
{
- base::insert(this->begin() + uiIndex, (T*)pItem);
+ base::insert(this->begin() + uiIndex, const_cast(pItem));
}
void Empty() { DoEmpty(); base::clear(); }
diff --git a/include/wx/dynlib.h b/include/wx/dynlib.h
index 0f035d904f..4ea6b8a60c 100644
--- a/include/wx/dynlib.h
+++ b/include/wx/dynlib.h
@@ -231,9 +231,9 @@ public:
// return the platform standard DLL extension (with leading dot)
static wxString GetDllExt(wxDynamicLibraryCategory cat = wxDL_LIBRARY);
- wxDynamicLibrary() : m_handle(0) { }
+ wxDynamicLibrary() : m_handle(NULL) { }
wxDynamicLibrary(const wxString& libname, int flags = wxDL_DEFAULT)
- : m_handle(0)
+ : m_handle(NULL)
{
Load(libname, flags);
}
@@ -243,7 +243,7 @@ public:
~wxDynamicLibrary() { Unload(); }
// return true if the library was loaded successfully
- bool IsLoaded() const { return m_handle != 0; }
+ bool IsLoaded() const { return m_handle != NULL; }
// load the library with the given name (full or not), return true if ok
bool Load(const wxString& libname, int flags = wxDL_DEFAULT);
@@ -256,13 +256,13 @@ public:
// detach the library object from its handle, i.e. prevent the object from
// unloading the library in its dtor -- the caller is now responsible for
// doing this
- wxDllType Detach() { wxDllType h = m_handle; m_handle = 0; return h; }
+ wxDllType Detach() { wxDllType h = m_handle; m_handle = NULL; return h; }
// unload the given library handle (presumably returned by Detach() before)
static void Unload(wxDllType handle);
// unload the library, also done automatically in dtor
- void Unload() { if ( IsLoaded() ) { Unload(m_handle); m_handle = 0; } }
+ void Unload() { if ( IsLoaded() ) { Unload(m_handle); m_handle = NULL; } }
// Return the raw handle from dlopen and friends.
wxDllType GetLibHandle() const { return m_handle; }
@@ -363,7 +363,7 @@ public:
protected:
// common part of GetSymbol() and HasSymbol()
- void *DoGetSymbol(const wxString& name, bool *success = 0) const;
+ void* DoGetSymbol(const wxString& name, bool* success = NULL) const;
#ifdef wxHAVE_DYNLIB_ERROR
// log the error after a dlxxx() function failure
diff --git a/include/wx/dynload.h b/include/wx/dynload.h
index 7cb4d25bac..79239cbf11 100644
--- a/include/wx/dynload.h
+++ b/include/wx/dynload.h
@@ -123,7 +123,7 @@ public:
void Unload();
bool IsLoaded() const { return m_entry && m_entry->IsLoaded(); }
- void *GetSymbol(const wxString &symbol, bool *success = 0)
+ void* GetSymbol(const wxString& symbol, bool* success = NULL)
{
return m_entry->GetSymbol( symbol, success );
}
diff --git a/include/wx/encconv.h b/include/wx/encconv.h
index 7c49465f51..cf1360ec07 100644
--- a/include/wx/encconv.h
+++ b/include/wx/encconv.h
@@ -53,7 +53,7 @@ class WXDLLIMPEXP_BASE wxEncodingConverter : public wxObject
public:
wxEncodingConverter();
- virtual ~wxEncodingConverter() { if (m_Table) delete[] m_Table; }
+ virtual ~wxEncodingConverter() { delete[] m_Table; }
// Initialize conversion. Both output or input encoding may
// be wxFONTENCODING_UNICODE.
diff --git a/include/wx/event.h b/include/wx/event.h
index fd25c7a1ca..1c9b794fd9 100644
--- a/include/wx/event.h
+++ b/include/wx/event.h
@@ -91,7 +91,7 @@ typedef int wxEventType;
wxEventTableEntry(type, winid, idLast, wxNewEventTableFunctor(type, fn), obj)
#define wxDECLARE_EVENT_TABLE_TERMINATOR() \
- wxEventTableEntry(wxEVT_NULL, 0, 0, 0, 0)
+ wxEventTableEntry(wxEVT_NULL, 0, 0, NULL, NULL)
// generate a new unique event type
extern WXDLLIMPEXP_BASE wxEventType wxNewEventType();
@@ -144,9 +144,43 @@ inline wxEventFunction wxEventFunctionCast(void (wxEvtHandler::*func)(T&))
wxGCC_WARNING_RESTORE_CAST_FUNCTION_TYPE()
}
+// Special hack to remove "noexcept" from the function type when using C++17 or
+// later: static_cast<> below would fail to cast a member function pointer to a
+// member of a derived class to the base class if noexcept is specified for the
+// former, so remove it first if necessary.
+#if __cplusplus >= 201703L
+
+namespace wxPrivate
+{
+
+// Generic template version, doing nothing.
+template
+struct RemoveNoexceptEventHandler
+{
+ using type = T;
+};
+
+// Specialization removing noexcept when it's specified.
+//
+// Note that this doesn't pretend to be generally suitable, this is just enough
+// to work in our particular case.
+template
+struct RemoveNoexceptEventHandler
+{
+ using type = R (C::*)(E&);
+};
+
+} // namespace wxPrivate
+
+#define wxREMOVE_NOEXCEPT_EVENT_HANDLER(pmf) \
+ static_cast::type>(pmf)
+#else
+#define wxREMOVE_NOEXCEPT_EVENT_HANDLER(pmf) pmf
+#endif
+
// Try to cast the given event handler to the correct handler type:
#define wxEVENT_HANDLER_CAST( functype, func ) \
- wxEventFunctionCast(static_cast(&func))
+ wxEventFunctionCast(static_cast(wxREMOVE_NOEXCEPT_EVENT_HANDLER(&func)))
// The tag is a type associated to the event type (which is an integer itself,
@@ -2335,39 +2369,17 @@ private:
wxEVT_NC_PAINT
*/
-#if wxDEBUG_LEVEL && defined(__WXMSW__)
- #define wxHAS_PAINT_DEBUG
-
- // see comments in src/msw/dcclient.cpp where g_isPainting is defined
- extern WXDLLIMPEXP_CORE int g_isPainting;
-#endif // debug
-
class WXDLLIMPEXP_CORE wxPaintEvent : public wxEvent
{
+ // This ctor is only intended to be used by wxWidgets itself, so it's
+ // intentionally declared as private when not building the library itself.
+#ifdef WXBUILDING
public:
- wxPaintEvent(int Id = 0)
- : wxEvent(Id, wxEVT_PAINT)
- {
-#ifdef wxHAS_PAINT_DEBUG
- // set the internal flag for the duration of redrawing
- g_isPainting++;
-#endif // debug
- }
+#endif // WXBUILDING
+ explicit wxPaintEvent(wxWindowBase* window = NULL);
- // default copy ctor and dtor are normally fine, we only need them to keep
- // g_isPainting updated in debug build
-#ifdef wxHAS_PAINT_DEBUG
- wxPaintEvent(const wxPaintEvent& event)
- : wxEvent(event)
- {
- g_isPainting++;
- }
-
- virtual ~wxPaintEvent()
- {
- g_isPainting--;
- }
-#endif // debug
+public:
+ // default copy ctor and dtor are fine
virtual wxEvent *Clone() const wxOVERRIDE { return new wxPaintEvent(*this); }
@@ -2377,11 +2389,14 @@ private:
class WXDLLIMPEXP_CORE wxNcPaintEvent : public wxEvent
{
+ // This ctor is only intended to be used by wxWidgets itself, so it's
+ // intentionally declared as private when not building the library itself.
+#ifdef WXBUILDING
public:
- wxNcPaintEvent(int winid = 0)
- : wxEvent(winid, wxEVT_NC_PAINT)
- { }
+#endif // WXBUILDING
+ explicit wxNcPaintEvent(wxWindowBase* window = NULL);
+public:
virtual wxEvent *Clone() const wxOVERRIDE { return new wxNcPaintEvent(*this); }
private:
diff --git a/include/wx/ffile.h b/include/wx/ffile.h
index 98041fcac1..954a700387 100644
--- a/include/wx/ffile.h
+++ b/include/wx/ffile.h
@@ -103,6 +103,64 @@ private:
wxString m_name; // the name of the file (for diagnostic messages)
};
+// ----------------------------------------------------------------------------
+// class wxTempFFile: if you want to replace another file, create an instance
+// of wxTempFFile passing the name of the file to be replaced to the ctor. Then
+// you can write to wxTempFFile and call Commit() function to replace the old
+// file (and close this one) or call Discard() to cancel the modification. If
+// you call neither of them, dtor will call Discard().
+// ----------------------------------------------------------------------------
+
+class WXDLLIMPEXP_BASE wxTempFFile
+{
+public:
+ // ctors
+ // default
+ wxTempFFile() { }
+ // associates the temp file with the file to be replaced and opens it
+ explicit wxTempFFile(const wxString& strName);
+
+ // open the temp file (strName is the name of file to be replaced)
+ bool Open(const wxString& strName);
+
+ // is the file opened?
+ bool IsOpened() const { return m_file.IsOpened(); }
+ // get current file length
+ wxFileOffset Length() const { return m_file.Length(); }
+ // move ptr ofs bytes related to start/current pos/end of file
+ bool Seek(wxFileOffset ofs, wxSeekMode mode = wxFromStart)
+ { return m_file.Seek(ofs, mode); }
+ // get current position in the file
+ wxFileOffset Tell() const { return m_file.Tell(); }
+
+ // I/O (both functions return true on success, false on failure)
+ bool Write(const void *p, size_t n) { return m_file.Write(p, n) == n; }
+ bool Write(const wxString& str, const wxMBConv& conv = wxMBConvUTF8())
+ { return m_file.Write(str, conv); }
+
+ // flush data: can be called before closing file to ensure that data was
+ // correctly written out
+ bool Flush() { return m_file.Flush(); }
+
+ // different ways to close the file
+ // validate changes and delete the old file of name m_strName
+ bool Commit();
+ // discard changes
+ void Discard();
+
+ // dtor calls Discard() if file is still opened
+ ~wxTempFFile();
+
+private:
+ // no copy ctor/assignment operator
+ wxTempFFile(const wxTempFFile&);
+ wxTempFFile& operator=(const wxTempFFile&);
+
+ wxString m_strName, // name of the file to replace in Commit()
+ m_strTemp; // temporary file name
+ wxFFile m_file; // the temporary file
+};
+
#endif // wxUSE_FFILE
#endif // _WX_FFILE_H_
diff --git a/include/wx/file.h b/include/wx/file.h
index 282994c87e..8a6faba06e 100644
--- a/include/wx/file.h
+++ b/include/wx/file.h
@@ -147,7 +147,7 @@ public:
// default
wxTempFile() { }
// associates the temp file with the file to be replaced and opens it
- wxTempFile(const wxString& strName);
+ explicit wxTempFile(const wxString& strName);
// open the temp file (strName is the name of file to be replaced)
bool Open(const wxString& strName);
diff --git a/include/wx/gdiobj.h b/include/wx/gdiobj.h
index 81d1f46a6b..d8e7956006 100644
--- a/include/wx/gdiobj.h
+++ b/include/wx/gdiobj.h
@@ -66,7 +66,7 @@ public:
virtual bool IsFree() const { return false; }
// Returns handle.
- virtual WXHANDLE GetResourceHandle() const { return 0; }
+ virtual WXHANDLE GetResourceHandle() const { return NULL; }
#endif // defined(__WXMSW__)
protected:
diff --git a/include/wx/generic/animate.h b/include/wx/generic/animate.h
index 80157f59fa..54487b21ee 100644
--- a/include/wx/generic/animate.h
+++ b/include/wx/generic/animate.h
@@ -1,6 +1,6 @@
/////////////////////////////////////////////////////////////////////////////
// Name: wx/generic/animate.h
-// Purpose: wxAnimation and wxAnimationCtrl
+// Purpose: wxGenericAnimationCtrl
// Author: Julian Smart and Guillermo Rodriguez Garcia
// Modified by: Francesco Montorsi
// Created: 13/8/99
@@ -13,70 +13,22 @@
#include "wx/bitmap.h"
+
// ----------------------------------------------------------------------------
-// wxAnimation
+// wxGenericAnimationCtrl
// ----------------------------------------------------------------------------
-WX_DECLARE_LIST_WITH_DECL(wxAnimationDecoder, wxAnimationDecoderList, class WXDLLIMPEXP_ADV);
-
-class WXDLLIMPEXP_ADV wxAnimation : public wxAnimationBase
+class WXDLLIMPEXP_ADV wxGenericAnimationCtrl: public wxAnimationCtrlBase
{
public:
- wxAnimation() {}
- wxAnimation(const wxString &name, wxAnimationType type = wxANIMATION_TYPE_ANY)
- { LoadFile(name, type); }
-
- virtual bool IsOk() const wxOVERRIDE
- { return m_refData != NULL; }
-
- virtual unsigned int GetFrameCount() const wxOVERRIDE;
- virtual int GetDelay(unsigned int i) const wxOVERRIDE;
- virtual wxImage GetFrame(unsigned int i) const wxOVERRIDE;
- virtual wxSize GetSize() const wxOVERRIDE;
-
- virtual bool LoadFile(const wxString& filename,
- wxAnimationType type = wxANIMATION_TYPE_ANY) wxOVERRIDE;
- virtual bool Load(wxInputStream& stream,
- wxAnimationType type = wxANIMATION_TYPE_ANY) wxOVERRIDE;
-
- // extended interface used by the generic implementation of wxAnimationCtrl
- wxPoint GetFramePosition(unsigned int frame) const;
- wxSize GetFrameSize(unsigned int frame) const;
- wxAnimationDisposal GetDisposalMethod(unsigned int frame) const;
- wxColour GetTransparentColour(unsigned int frame) const;
- wxColour GetBackgroundColour() const;
-
-protected:
- static wxAnimationDecoderList sm_handlers;
-
-public:
- static inline wxAnimationDecoderList& GetHandlers() { return sm_handlers; }
- static void AddHandler(wxAnimationDecoder *handler);
- static void InsertHandler(wxAnimationDecoder *handler);
- static const wxAnimationDecoder *FindHandler( wxAnimationType animType );
-
- static void CleanUpHandlers();
- static void InitStandardHandlers();
-
- wxDECLARE_DYNAMIC_CLASS(wxAnimation);
-};
-
-
-// ----------------------------------------------------------------------------
-// wxAnimationCtrl
-// ----------------------------------------------------------------------------
-
-class WXDLLIMPEXP_ADV wxAnimationCtrl: public wxAnimationCtrlBase
-{
-public:
- wxAnimationCtrl() { Init(); }
- wxAnimationCtrl(wxWindow *parent,
- wxWindowID id,
- const wxAnimation& anim = wxNullAnimation,
- const wxPoint& pos = wxDefaultPosition,
- const wxSize& size = wxDefaultSize,
- long style = wxAC_DEFAULT_STYLE,
- const wxString& name = wxAnimationCtrlNameStr)
+ wxGenericAnimationCtrl() { Init(); }
+ wxGenericAnimationCtrl(wxWindow *parent,
+ wxWindowID id,
+ const wxAnimation& anim = wxNullAnimation,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxAC_DEFAULT_STYLE,
+ const wxString& name = wxAnimationCtrlNameStr)
{
Init();
@@ -92,7 +44,8 @@ public:
long style = wxAC_DEFAULT_STYLE,
const wxString& name = wxAnimationCtrlNameStr);
- ~wxAnimationCtrl();
+ ~wxGenericAnimationCtrl();
+
public:
virtual bool LoadFile(const wxString& filename, wxAnimationType type = wxANIMATION_TYPE_ANY) wxOVERRIDE;
@@ -105,14 +58,14 @@ public:
{ return m_isPlaying; }
void SetAnimation(const wxAnimation &animation) wxOVERRIDE;
- wxAnimation GetAnimation() const wxOVERRIDE
- { return m_animation; }
virtual void SetInactiveBitmap(const wxBitmap &bmp) wxOVERRIDE;
// override base class method
virtual bool SetBackgroundColour(const wxColour& col) wxOVERRIDE;
+ static wxAnimation CreateCompatibleAnimation();
+
public: // event handlers
void OnPaint(wxPaintEvent& event);
@@ -140,6 +93,7 @@ public: // extended API specific to this implementation of wxAnimateCtrl
{ return m_backingStore; }
protected: // internal utilities
+ virtual wxAnimationImpl* DoCreateAnimationImpl() const wxOVERRIDE;
// resize this control to fit m_animation
void FitToAnimation();
@@ -156,11 +110,19 @@ protected: // internal utilities
virtual void DisplayStaticImage() wxOVERRIDE;
virtual wxSize DoGetBestSize() const wxOVERRIDE;
+ // Helpers to safely access methods in the wxAnimationGenericImpl that are
+ // specific to the generic implementation
+ wxPoint AnimationImplGetFramePosition(unsigned int frame) const;
+ wxSize AnimationImplGetFrameSize(unsigned int frame) const;
+ wxAnimationDisposal AnimationImplGetDisposalMethod(unsigned int frame) const;
+ wxColour AnimationImplGetTransparentColour(unsigned int frame) const;
+ wxColour AnimationImplGetBackgroundColour() const;
+
+
protected:
unsigned int m_currentFrame; // Current frame
bool m_looped; // Looped, or not
wxTimer m_timer; // The timer
- wxAnimation m_animation; // The animation
bool m_isPlaying; // Is the animation playing?
bool m_useWinBackgroundColour; // Use animation bg colour or window bg colour?
@@ -170,7 +132,7 @@ protected:
private:
typedef wxAnimationCtrlBase base_type;
- wxDECLARE_DYNAMIC_CLASS(wxAnimationCtrl);
+ wxDECLARE_DYNAMIC_CLASS(wxGenericAnimationCtrl);
wxDECLARE_EVENT_TABLE();
};
diff --git a/include/wx/generic/dcpsg.h b/include/wx/generic/dcpsg.h
index 84f9e6690e..b26cde59f7 100644
--- a/include/wx/generic/dcpsg.h
+++ b/include/wx/generic/dcpsg.h
@@ -152,8 +152,8 @@ protected:
unsigned char m_currentBlue;
int m_pageNumber;
bool m_clipping;
- double m_underlinePosition;
- double m_underlineThickness;
+ mutable double m_underlinePosition;
+ mutable double m_underlineThickness;
wxPrintData m_printData;
double m_pageHeight;
wxArrayString m_definedPSFonts;
diff --git a/include/wx/generic/grid.h b/include/wx/generic/grid.h
index d4e403e8eb..c88b2a6122 100644
--- a/include/wx/generic/grid.h
+++ b/include/wx/generic/grid.h
@@ -25,8 +25,8 @@
extern WXDLLIMPEXP_DATA_CORE(const char) wxGridNameStr[];
-// Default parameters for wxGrid
-//
+// Obsolete constants not used by wxWidgets itself any longer, preserved only
+// for compatibility.
#define WXGRID_DEFAULT_NUMBER_ROWS 10
#define WXGRID_DEFAULT_NUMBER_COLS 10
#if defined(__WXMSW__) || defined(__WXGTK20__)
@@ -34,13 +34,18 @@ extern WXDLLIMPEXP_DATA_CORE(const char) wxGridNameStr[];
#else
#define WXGRID_DEFAULT_ROW_HEIGHT 30
#endif // __WXMSW__
+#define WXGRID_DEFAULT_SCROLLBAR_WIDTH 16
+
+// Various constants used in wxGrid code.
+//
+// Note that all the values are in DIPs, not pixels, i.e. you must use
+// FromDIP() when using them in your code.
#define WXGRID_DEFAULT_COL_WIDTH 80
#define WXGRID_DEFAULT_COL_LABEL_HEIGHT 32
#define WXGRID_DEFAULT_ROW_LABEL_WIDTH 82
#define WXGRID_LABEL_EDGE_ZONE 2
#define WXGRID_MIN_ROW_HEIGHT 15
#define WXGRID_MIN_COL_WIDTH 15
-#define WXGRID_DEFAULT_SCROLLBAR_WIDTH 16
// type names for grid table values
#define wxGRID_VALUE_STRING wxT("string")
@@ -206,6 +211,9 @@ public:
virtual wxGridCellRenderer *Clone() const = 0;
};
+// Smart pointer to wxGridCellRenderer, calling DecRef() on it automatically.
+typedef wxObjectDataPtr wxGridCellRendererPtr;
+
// ----------------------------------------------------------------------------
// wxGridCellEditor: This class is responsible for providing and manipulating
// the in-place edit controls for the grid. Instances of wxGridCellEditor
@@ -333,6 +341,9 @@ protected:
wxDECLARE_NO_COPY_CLASS(wxGridCellEditor);
};
+// Smart pointer to wxGridCellEditor, calling DecRef() on it automatically.
+typedef wxObjectDataPtr wxGridCellEditorPtr;
+
// ----------------------------------------------------------------------------
// wxGridHeaderRenderer and company: like wxGridCellRenderer but for headers
// ----------------------------------------------------------------------------
@@ -570,8 +581,21 @@ public:
void GetSize(int *num_rows, int *num_cols) const;
wxGridFitMode GetFitMode() const;
bool GetOverflow() const { return GetFitMode().IsOverflow(); }
+ // whether the cell will draw the overflowed text to neighbour cells
+ // currently only left aligned cells can overflow
+ bool CanOverflow() const;
+
wxGridCellRenderer *GetRenderer(const wxGrid* grid, int row, int col) const;
+ wxGridCellRendererPtr GetRendererPtr(const wxGrid* grid, int row, int col) const
+ {
+ return wxGridCellRendererPtr(GetRenderer(grid, row, col));
+ }
+
wxGridCellEditor *GetEditor(const wxGrid* grid, int row, int col) const;
+ wxGridCellEditorPtr GetEditorPtr(const wxGrid* grid, int row, int col) const
+ {
+ return wxGridCellEditorPtr(GetEditor(grid, row, col));
+ }
bool IsReadOnly() const { return m_isReadOnly == wxGridCellAttr::ReadOnly; }
@@ -625,6 +649,9 @@ private:
friend class wxGridCellAttrDummyFriend;
};
+// Smart pointer to wxGridCellAttr, calling DecRef() on it automatically.
+typedef wxObjectDataPtr wxGridCellAttrPtr;
+
// ----------------------------------------------------------------------------
// wxGridCellAttrProvider: class used by wxGridTableBase to retrieve/store the
// cell attributes.
@@ -647,6 +674,13 @@ public:
virtual wxGridCellAttr *GetAttr(int row, int col,
wxGridCellAttr::wxAttrKind kind ) const;
+ // Helper returning smart pointer calling DecRef() automatically.
+ wxGridCellAttrPtr GetAttrPtr(int row, int col,
+ wxGridCellAttr::wxAttrKind kind ) const
+ {
+ return wxGridCellAttrPtr(GetAttr(row, col, kind));
+ }
+
// all these functions take ownership of the pointer, don't call DecRef()
// on it
virtual void SetAttr(wxGridCellAttr *attr, int row, int col);
@@ -821,6 +855,11 @@ public:
virtual wxGridCellAttr *GetAttr( int row, int col,
wxGridCellAttr::wxAttrKind kind );
+ wxGridCellAttrPtr GetAttrPtr(int row, int col,
+ wxGridCellAttr::wxAttrKind kind)
+ {
+ return wxGridCellAttrPtr(GetAttr(row, col, kind));
+ }
// these functions take ownership of the pointer
virtual void SetAttr(wxGridCellAttr* attr, int row, int col);
@@ -1041,12 +1080,13 @@ public:
virtual ~wxGrid();
- // however to initialize grid data either CreateGrid() or SetTable() must
+ // however to initialize grid data either CreateGrid() (to use a simple
+ // default table class) or {Set,Assign}Table() (to use a custom table) must
// be also called
// this is basically equivalent to
//
- // SetTable(new wxGridStringTable(numRows, numCols), true, selmode)
+ // AssignTable(new wxGridStringTable(numRows, numCols), selmode)
//
bool CreateGrid( int numRows, int numCols,
wxGridSelectionModes selmode = wxGridSelectCells );
@@ -1055,6 +1095,9 @@ public:
bool takeOwnership = false,
wxGridSelectionModes selmode = wxGridSelectCells );
+ void AssignTable( wxGridTableBase *table,
+ wxGridSelectionModes selmode = wxGridSelectCells );
+
bool ProcessTableMessage(wxGridTableMessage&);
wxGridTableBase *GetTable() const { return m_table; }
@@ -1201,7 +1244,7 @@ public:
void BeginBatch() { m_batchCount++; }
void EndBatch();
- int GetBatchCount() { return m_batchCount; }
+ int GetBatchCount() const { return m_batchCount; }
virtual void Refresh(bool eraseb = true, const wxRect* rect = NULL) wxOVERRIDE;
@@ -1334,9 +1377,9 @@ public:
// ------ label and gridline formatting
//
- int GetDefaultRowLabelSize() const { return WXGRID_DEFAULT_ROW_LABEL_WIDTH; }
+ int GetDefaultRowLabelSize() const { return FromDIP(WXGRID_DEFAULT_ROW_LABEL_WIDTH); }
int GetRowLabelSize() const { return m_rowLabelWidth; }
- int GetDefaultColLabelSize() const { return WXGRID_DEFAULT_COL_LABEL_HEIGHT; }
+ int GetDefaultColLabelSize() const { return FromDIP(WXGRID_DEFAULT_COL_LABEL_HEIGHT); }
int GetColLabelSize() const { return m_colLabelHeight; }
wxColour GetLabelBackgroundColour() const { return m_labelBackgroundColour; }
wxColour GetLabelTextColour() const { return m_labelTextColour; }
@@ -1475,6 +1518,11 @@ public:
// DecRef() must be called on the returned pointer, as usual
wxGridCellAttr *GetOrCreateCellAttr(int row, int col) const;
+ wxGridCellAttrPtr GetOrCreateCellAttrPtr(int row, int col) const
+ {
+ return wxGridCellAttrPtr(GetOrCreateCellAttr(row, col));
+ }
+
// shortcuts for setting the column parameters
@@ -1798,6 +1846,9 @@ public:
wxWindow* GetGridColLabelWindow() const { return m_colLabelWin; }
wxWindow* GetGridCornerLabelWindow() const { return (wxWindow*)m_cornerLabelWin; }
+ // Return true if native header is used by the grid.
+ bool IsUsingNativeHeader() const { return m_useNativeHeader; }
+
// This one can only be called if we are using the native header window
wxHeaderCtrl *GetGridColHeader() const
{
@@ -2193,6 +2244,16 @@ protected:
wxGridCellAttr *GetCellAttr(const wxGridCellCoords& coords ) const
{ return GetCellAttr( coords.GetRow(), coords.GetCol() ); }
+ wxGridCellAttrPtr GetCellAttrPtr(int row, int col) const
+ {
+ return wxGridCellAttrPtr(GetCellAttr(row, col));
+ }
+ wxGridCellAttrPtr GetCellAttrPtr(const wxGridCellCoords& coords) const
+ {
+ return wxGridCellAttrPtr(GetCellAttr(coords));
+ }
+
+
// the default cell attr object for cells that don't have their own
wxGridCellAttr* m_defaultCellAttr;
@@ -2246,10 +2307,15 @@ protected:
bool m_canDragGridSize;
bool m_canDragCell;
- // the last position (horizontal or vertical depending on whether the user
- // is resizing a column or a row) where a row or column separator line was
- // dragged by the user or -1 of there is no drag operation in progress
+ // Index of the column being drag-moved or -1 if there is no move operation
+ // in progress.
+ int m_dragMoveCol;
+
+ // Last horizontal mouse position while drag-moving a column.
int m_dragLastPos;
+
+ // Row or column (depending on m_cursorMode value) currently being resized
+ // or -1 if there is no resize operation in progress.
int m_dragRowOrCol;
// true if a drag operation is in progress; when this is true,
@@ -2309,12 +2375,10 @@ protected:
int row, int col,
const wxMouseEvent& mouseEv);
- void OnPaint( wxPaintEvent& );
void OnSize( wxSizeEvent& );
void OnKeyDown( wxKeyEvent& );
void OnKeyUp( wxKeyEvent& );
void OnChar( wxKeyEvent& );
- void OnEraseBackground( wxEraseEvent& );
void OnHideEditor( wxCommandEvent& );
@@ -2325,13 +2389,13 @@ protected:
// this function is called to extend the block being currently selected
// from mouse and keyboard event handlers
- void UpdateBlockBeingSelected(int topRow, int leftCol,
- int bottomRow, int rightCol);
+ void UpdateBlockBeingSelected(int blockStartRow, int blockStartCol,
+ int blockEndRow, int blockEndCol);
- void UpdateBlockBeingSelected(const wxGridCellCoords& topLeft,
- const wxGridCellCoords& bottomRight)
- { UpdateBlockBeingSelected(topLeft.GetRow(), topLeft.GetCol(),
- bottomRight.GetRow(), bottomRight.GetCol()); }
+ void UpdateBlockBeingSelected(const wxGridCellCoords& blockStart,
+ const wxGridCellCoords& blockEnd)
+ { UpdateBlockBeingSelected(blockStart.GetRow(), blockStart.GetCol(),
+ blockEnd.GetRow(), blockEnd.GetCol()); }
virtual bool ShouldScrollToChildOnFocus(wxWindow* WXUNUSED(win)) wxOVERRIDE
{ return false; }
@@ -2351,6 +2415,13 @@ protected:
friend class wxGridHeaderCtrl;
private:
+ // This is called from both Create() and OnDPIChanged() to (re)initialize
+ // the values in pixels, which depend on the current DPI.
+ void InitPixelFields();
+
+ // Event handler for DPI change event recomputes pixel values and relays
+ // out the grid.
+ void OnDPIChanged(wxDPIChangedEvent& event);
// implement wxScrolledCanvas method to return m_gridWin size
virtual wxSize GetSizeAvailableForScrollTarget(const wxSize& size) wxOVERRIDE;
@@ -2404,6 +2475,12 @@ private:
// release the mouse capture if it's currently captured
void EndDraggingIfNecessary();
+ // return true if the grid should be refreshed right now
+ bool ShouldRefresh() const
+ {
+ return !GetBatchCount() && IsShownOnScreen();
+ }
+
// return the position (not index) of the column at the given logical pixel
// position
@@ -2420,11 +2497,6 @@ private:
const wxGridCellCoords& coords,
bool isFirstDrag);
- // process row/column resizing drag event
- void DoGridLineDrag(int pos,
- const wxGridOperations& oper,
- wxGridWindow* gridWindow);
-
// process mouse drag event in the grid window, return false if starting
// dragging was vetoed by the user-defined wxEVT_GRID_CELL_BEGIN_DRAG
// handler
@@ -2433,16 +2505,11 @@ private:
bool isFirstDrag,
wxGridWindow* gridWindow);
- void DrawGridDragLine(wxPoint position,
+ // Update the width/height of the column/row being drag-resized.
+ void DoGridDragResize(const wxPoint& position,
const wxGridOperations& oper,
wxGridWindow* gridWindow);
- // return the current grid windows involved in the drag process
- void GetDragGridWindows(int pos,
- const wxGridOperations& oper,
- wxGridWindow*& firstGridWindow,
- wxGridWindow*& secondGridWindow);
-
// process different clicks on grid cells
void DoGridCellLeftDown(wxMouseEvent& event,
const wxGridCellCoords& coords,
@@ -2474,18 +2541,27 @@ private:
void DoColHeaderClick(int col);
- void DoStartResizeCol(int col);
- void DoUpdateResizeColWidth(int w);
+ void DoStartResizeRowOrCol(int col);
void DoStartMoveCol(int col);
void DoEndDragResizeRow(const wxMouseEvent& event, wxGridWindow *gridWindow);
void DoEndDragResizeCol(const wxMouseEvent& event, wxGridWindow *gridWindow);
- void DoEndDragResizeCol(const wxMouseEvent& event)
- {
- DoEndDragResizeCol(event, m_gridWin);
- }
void DoEndMoveCol(int pos);
+ // Helper function returning the position (only the horizontal component
+ // really counts) corresponding to the given column drag-resize event.
+ //
+ // It's a bit ugly to create a phantom mouse position when we really only
+ // need the column width anyhow, but wxGrid code was originally written to
+ // expect the position and not the width and it's simpler to keep it happy
+ // by giving it the position than to change it.
+ wxPoint GetPositionForResizeEvent(int width) const;
+
+ // functions called by wxGridHeaderCtrl while resizing m_dragRowOrCol
+ void DoHeaderStartDragResizeCol(int col);
+ void DoHeaderDragResizeCol(int width);
+ void DoHeaderEndDragResizeCol(int width);
+
// process a TAB keypress
void DoGridProcessTab(wxKeyboardState& kbdState);
diff --git a/include/wx/generic/gridctrl.h b/include/wx/generic/gridctrl.h
index 28249fae88..c06937f0b2 100644
--- a/include/wx/generic/gridctrl.h
+++ b/include/wx/generic/gridctrl.h
@@ -143,9 +143,6 @@ public:
virtual wxGridCellRenderer *Clone() const wxOVERRIDE
{ return new wxGridCellBoolRenderer; }
-
-private:
- static wxSize ms_sizeCheckMark;
};
diff --git a/include/wx/generic/private/animate.h b/include/wx/generic/private/animate.h
new file mode 100644
index 0000000000..9906b0c893
--- /dev/null
+++ b/include/wx/generic/private/animate.h
@@ -0,0 +1,56 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name: wx/generic/private/animate.h
+// Purpose: wxAnimationGenericImpl
+// Author: Julian Smart and Guillermo Rodriguez Garcia
+// Modified by: Francesco Montorsi
+// Created: 13/8/99
+// Copyright: (c) Julian Smart and Guillermo Rodriguez Garcia
+// Licence: wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+#ifndef _WX_GENERIC_PRIVATE_ANIMATEH__
+#define _WX_GENERIC_PRIVATE_ANIMATEH__
+
+#include "wx/private/animate.h"
+
+// ----------------------------------------------------------------------------
+// wxAnimationGenericImpl
+// ----------------------------------------------------------------------------
+
+class WXDLLIMPEXP_ADV wxAnimationGenericImpl : public wxAnimationImpl
+{
+public:
+ wxAnimationGenericImpl() : m_decoder(NULL) {}
+ virtual ~wxAnimationGenericImpl() { UnRef(); }
+
+ virtual bool IsOk() const wxOVERRIDE
+ { return m_decoder != NULL; }
+ virtual bool IsCompatibleWith(wxClassInfo* ci) const wxOVERRIDE;
+
+ virtual unsigned int GetFrameCount() const wxOVERRIDE;
+ virtual int GetDelay(unsigned int i) const wxOVERRIDE;
+ virtual wxImage GetFrame(unsigned int i) const wxOVERRIDE;
+ virtual wxSize GetSize() const wxOVERRIDE;
+
+ virtual bool LoadFile(const wxString& filename,
+ wxAnimationType type = wxANIMATION_TYPE_ANY) wxOVERRIDE;
+ virtual bool Load(wxInputStream& stream,
+ wxAnimationType type = wxANIMATION_TYPE_ANY) wxOVERRIDE;
+
+ // extended interface used only by the generic implementation of wxAnimationCtrl
+ virtual wxPoint GetFramePosition(unsigned int frame) const;
+ virtual wxSize GetFrameSize(unsigned int frame) const;
+ virtual wxAnimationDisposal GetDisposalMethod(unsigned int frame) const;
+ virtual wxColour GetTransparentColour(unsigned int frame) const;
+ virtual wxColour GetBackgroundColour() const;
+
+private:
+ void UnRef();
+
+ wxAnimationDecoder* m_decoder;
+
+ wxDECLARE_NO_COPY_CLASS(wxAnimationGenericImpl);
+};
+
+
+#endif // _WX_GENERIC_PRIVATE_ANIMATEH__
diff --git a/include/wx/generic/private/grid.h b/include/wx/generic/private/grid.h
index 172738df55..216491fa89 100644
--- a/include/wx/generic/private/grid.h
+++ b/include/wx/generic/private/grid.h
@@ -163,12 +163,13 @@ protected:
wxGrid *GetOwner() const { return static_cast(GetParent()); }
private:
- static wxMouseEvent GetDummyMouseEvent()
+ wxMouseEvent GetDummyMouseEvent() const
{
// make up a dummy event for the grid event to use -- unfortunately we
// can't do anything else here
wxMouseEvent e;
e.SetState(wxGetMouseState());
+ GetOwner()->ScreenToClient(&e.m_x, &e.m_y);
return e;
}
@@ -251,24 +252,19 @@ private:
void OnBeginResize(wxHeaderCtrlEvent& event)
{
- GetOwner()->DoStartResizeCol(event.GetColumn());
+ GetOwner()->DoHeaderStartDragResizeCol(event.GetColumn());
event.Skip();
}
void OnResizing(wxHeaderCtrlEvent& event)
{
- GetOwner()->DoUpdateResizeColWidth(event.GetWidth());
+ GetOwner()->DoHeaderDragResizeCol(event.GetWidth());
}
void OnEndResize(wxHeaderCtrlEvent& event)
{
- // we again need to pass a mouse event to be used for the grid event
- // generation but we don't have it here so use a dummy one as in
- // UpdateColumnVisibility()
- wxMouseEvent e;
- e.SetState(wxGetMouseState());
- GetOwner()->DoEndDragResizeCol(e);
+ GetOwner()->DoHeaderEndDragResizeCol(event.GetWidth());
event.Skip();
}
@@ -419,6 +415,7 @@ public:
"GridWindow"),
m_type(type)
{
+ SetBackgroundStyle(wxBG_STYLE_PAINT);
}
@@ -437,7 +434,6 @@ private:
void OnKeyDown( wxKeyEvent& );
void OnKeyUp( wxKeyEvent& );
void OnChar( wxKeyEvent& );
- void OnEraseBackground( wxEraseEvent& );
void OnFocus( wxFocusEvent& );
wxDECLARE_EVENT_TABLE();
diff --git a/include/wx/gifdecod.h b/include/wx/gifdecod.h
index b0de4669e6..5dee4caf24 100644
--- a/include/wx/gifdecod.h
+++ b/include/wx/gifdecod.h
@@ -85,11 +85,12 @@ public:
wxAnimationType GetType() const wxOVERRIDE
{ return wxANIMATION_TYPE_GIF; }
-private:
+protected:
// wxAnimationDecoder pure virtual
virtual bool DoCanRead( wxInputStream& stream ) const wxOVERRIDE;
// modifies current stream position (see wxAnimationDecoder::CanRead)
+private:
int getcode(wxInputStream& stream, int bits, int abfin);
wxGIFErrorCode dgif(wxInputStream& stream,
GIFImage *img, int interl, int bits);
diff --git a/include/wx/graphics.h b/include/wx/graphics.h
index 415b8c9e83..b2d26c386a 100644
--- a/include/wx/graphics.h
+++ b/include/wx/graphics.h
@@ -371,11 +371,11 @@ public:
wxGraphicsPenInfo& Width(wxDouble width)
{ m_width = width; return *this; }
- wxGraphicsPenInfo&
+ wxGraphicsPenInfo&
LinearGradient(wxDouble x1, wxDouble y1, wxDouble x2, wxDouble y2,
const wxColour& c1, const wxColour& c2,
const wxGraphicsMatrix& matrix = wxNullGraphicsMatrix)
- {
+ {
m_gradientType = wxGRADIENT_LINEAR;
m_x1 = x1;
m_y1 = y1;
@@ -384,14 +384,14 @@ public:
m_stops.SetStartColour(c1);
m_stops.SetEndColour(c2);
m_matrix = matrix;
- return *this;
- }
+ return *this;
+ }
- wxGraphicsPenInfo&
+ wxGraphicsPenInfo&
LinearGradient(wxDouble x1, wxDouble y1, wxDouble x2, wxDouble y2,
const wxGraphicsGradientStops& stops,
const wxGraphicsMatrix& matrix = wxNullGraphicsMatrix)
- {
+ {
m_gradientType = wxGRADIENT_LINEAR;
m_x1 = x1;
m_y1 = y1;
@@ -399,42 +399,42 @@ public:
m_y2 = y2;
m_stops = stops;
m_matrix = matrix;
- return *this;
+ return *this;
}
- wxGraphicsPenInfo&
+ wxGraphicsPenInfo&
RadialGradient(wxDouble startX, wxDouble startY,
- wxDouble endX, wxDouble endY, wxDouble radius,
+ wxDouble endX, wxDouble endY, wxDouble radius,
const wxColour& oColor, const wxColour& cColor,
const wxGraphicsMatrix& matrix = wxNullGraphicsMatrix)
- {
+ {
m_gradientType = wxGRADIENT_RADIAL;
m_x1 = startX;
- m_y1 = startY;
- m_x2 = endX;
+ m_y1 = startY;
+ m_x2 = endX;
m_y2 = endY;
m_radius = radius;
m_stops.SetStartColour(oColor);
m_stops.SetEndColour(cColor);
m_matrix = matrix;
- return *this;
- }
+ return *this;
+ }
- wxGraphicsPenInfo&
+ wxGraphicsPenInfo&
RadialGradient(wxDouble startX, wxDouble startY,
- wxDouble endX, wxDouble endY,
+ wxDouble endX, wxDouble endY,
wxDouble radius, const wxGraphicsGradientStops& stops,
const wxGraphicsMatrix& matrix = wxNullGraphicsMatrix)
- {
+ {
m_gradientType = wxGRADIENT_RADIAL;
- m_x1 = startX;
- m_y1 = startY;
- m_x2 = endX;
+ m_x1 = startX;
+ m_y1 = startY;
+ m_x2 = endX;
m_y2 = endY;
m_radius = radius;
m_stops = stops;
m_matrix = matrix;
- return *this;
+ return *this;
}
// Accessors
diff --git a/include/wx/gtk/animate.h b/include/wx/gtk/animate.h
index f07fdea939..6b8ab3ac9b 100644
--- a/include/wx/gtk/animate.h
+++ b/include/wx/gtk/animate.h
@@ -14,62 +14,6 @@
typedef struct _GdkPixbufAnimation GdkPixbufAnimation;
typedef struct _GdkPixbufAnimationIter GdkPixbufAnimationIter;
-// ----------------------------------------------------------------------------
-// wxAnimation
-// Unlike the generic wxAnimation object (see generic\animate.cpp), we won't
-// use directly wxAnimationHandlers as gdk-pixbuf already provides the
-// concept of handler and will automatically use the available handlers.
-// Like generic wxAnimation object, this implementation of wxAnimation is
-// refcounted so that assignment is very fast
-// ----------------------------------------------------------------------------
-
-class WXDLLIMPEXP_ADV wxAnimation : public wxAnimationBase
-{
-public:
- wxAnimation(const wxString &name, wxAnimationType type = wxANIMATION_TYPE_ANY)
- : m_pixbuf(NULL) { LoadFile(name, type); }
- wxAnimation(GdkPixbufAnimation *p = NULL);
- wxAnimation(const wxAnimation&);
- ~wxAnimation() { UnRef(); }
-
- wxAnimation& operator= (const wxAnimation&);
-
- virtual bool IsOk() const wxOVERRIDE
- { return m_pixbuf != NULL; }
-
-
- // unfortunately GdkPixbufAnimation does not expose these info:
-
- virtual unsigned int GetFrameCount() const wxOVERRIDE { return 0; }
- virtual wxImage GetFrame(unsigned int frame) const wxOVERRIDE;
-
- // we can retrieve the delay for a frame only after building
- // a GdkPixbufAnimationIter...
- virtual int GetDelay(unsigned int WXUNUSED(frame)) const wxOVERRIDE { return 0; }
-
- virtual wxSize GetSize() const wxOVERRIDE;
-
- virtual bool LoadFile(const wxString &name, wxAnimationType type = wxANIMATION_TYPE_ANY) wxOVERRIDE;
- virtual bool Load(wxInputStream &stream, wxAnimationType type = wxANIMATION_TYPE_ANY) wxOVERRIDE;
-
- // Implementation
-public: // used by GTK callbacks
-
- GdkPixbufAnimation *GetPixbuf() const
- { return m_pixbuf; }
- void SetPixbuf(GdkPixbufAnimation* p);
-
-protected:
- GdkPixbufAnimation *m_pixbuf;
-
-private:
- void UnRef();
-
- typedef wxAnimationBase base_type;
- wxDECLARE_DYNAMIC_CLASS(wxAnimation);
-};
-
-
// ----------------------------------------------------------------------------
// wxAnimationCtrl
// ----------------------------------------------------------------------------
@@ -112,9 +56,7 @@ public: // public API
virtual bool LoadFile(const wxString& filename, wxAnimationType type = wxANIMATION_TYPE_ANY) wxOVERRIDE;
virtual bool Load(wxInputStream& stream, wxAnimationType type = wxANIMATION_TYPE_ANY) wxOVERRIDE;
- virtual void SetAnimation(const wxAnimation &anim) wxOVERRIDE;
- virtual wxAnimation GetAnimation() const wxOVERRIDE
- { return wxAnimation(m_anim); }
+ void SetAnimation(const wxAnimation &anim) wxOVERRIDE;
virtual bool Play() wxOVERRIDE;
virtual void Stop() wxOVERRIDE;
@@ -123,7 +65,10 @@ public: // public API
bool SetBackgroundColour( const wxColour &colour ) wxOVERRIDE;
+ static wxAnimation CreateCompatibleAnimation();
+
protected:
+ virtual wxAnimationImpl* DoCreateAnimationImpl() const wxOVERRIDE;
virtual void DisplayStaticImage() wxOVERRIDE;
virtual wxSize DoGetBestSize() const wxOVERRIDE;
@@ -133,6 +78,11 @@ protected:
void ResetAnim();
void ResetIter();
+ // Helpers to safely access methods in the wxAnimationGTKImpl that are
+ // specific to the gtk implementation
+ GdkPixbufAnimation *AnimationImplGetPixbuf() const;
+ void AnimationImplSetPixbuf(GdkPixbufAnimation* p);
+
protected: // internal vars
GdkPixbufAnimation *m_anim;
diff --git a/include/wx/gtk/minifram.h b/include/wx/gtk/minifram.h
index 0f4d897598..14803ef375 100644
--- a/include/wx/gtk/minifram.h
+++ b/include/wx/gtk/minifram.h
@@ -52,6 +52,10 @@ protected:
// implementation
public:
+#ifndef __WXGTK4__
+ bool m_isDragMove;
+ wxSize m_dragOffset;
+#endif
wxBitmap m_closeButton;
int m_miniEdge;
int m_miniTitle;
diff --git a/include/wx/gtk/private/animate.h b/include/wx/gtk/private/animate.h
new file mode 100644
index 0000000000..214ae7db7e
--- /dev/null
+++ b/include/wx/gtk/private/animate.h
@@ -0,0 +1,69 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name: wx/gtk/private/animate.h
+// Purpose: Animation classes
+// Author: Julian Smart and Guillermo Rodriguez Garcia
+// Modified by: Francesco Montorsi
+// Created: 13/8/99
+// Copyright: (c) Julian Smart and Guillermo Rodriguez Garcia
+// Licence: wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+#ifndef _WX_GTK_PRIVATE_ANIMATEH__
+#define _WX_GTK_PRIVATE_ANIMATEH__
+
+#include "wx/private/animate.h"
+
+typedef struct _GdkPixbufAnimation GdkPixbufAnimation;
+typedef struct _GdkPixbufAnimationIter GdkPixbufAnimationIter;
+
+// ----------------------------------------------------------------------------
+// wxAnimationGTKImpl
+// Unlike the generic wxAnimation object we won't use directly
+// wxAnimationDecoders as gdk-pixbuf already provides the concept of decoder and
+// will automatically use the available handlers.
+// ----------------------------------------------------------------------------
+
+class WXDLLIMPEXP_ADV wxAnimationGTKImpl : public wxAnimationImpl
+{
+public:
+ wxAnimationGTKImpl()
+ : m_pixbuf(NULL) {}
+ ~wxAnimationGTKImpl() { UnRef(); }
+
+ virtual bool IsOk() const wxOVERRIDE
+ { return m_pixbuf != NULL; }
+ virtual bool IsCompatibleWith(wxClassInfo* ci) const wxOVERRIDE;
+
+
+ // unfortunately GdkPixbufAnimation does not expose these info:
+
+ virtual unsigned int GetFrameCount() const wxOVERRIDE { return 0; }
+ virtual wxImage GetFrame(unsigned int frame) const wxOVERRIDE;
+
+ // we can retrieve the delay for a frame only after building
+ // a GdkPixbufAnimationIter...
+ virtual int GetDelay(unsigned int WXUNUSED(frame)) const wxOVERRIDE { return 0; }
+ virtual wxSize GetSize() const wxOVERRIDE;
+
+ virtual bool LoadFile(const wxString &name, wxAnimationType type = wxANIMATION_TYPE_ANY) wxOVERRIDE;
+ virtual bool Load(wxInputStream &stream, wxAnimationType type = wxANIMATION_TYPE_ANY) wxOVERRIDE;
+
+ // Implementation
+public: // used by GTK callbacks
+
+ GdkPixbufAnimation *GetPixbuf() const
+ { return m_pixbuf; }
+ void SetPixbuf(GdkPixbufAnimation* p);
+
+protected:
+ GdkPixbufAnimation *m_pixbuf;
+
+private:
+ void UnRef();
+
+ typedef wxAnimationImpl base_type;
+ wxDECLARE_NO_COPY_CLASS(wxAnimationGTKImpl);
+};
+
+
+#endif // _WX_GTK_PRIVATE_ANIMATEH__
diff --git a/include/wx/gtk/spinctrl.h b/include/wx/gtk/spinctrl.h
index 0b96827dd6..60e464c85a 100644
--- a/include/wx/gtk/spinctrl.h
+++ b/include/wx/gtk/spinctrl.h
@@ -68,8 +68,8 @@ protected:
void DoSetRange(double min_val, double max_val);
void DoSetIncrement(double inc);
- void GtkDisableEvents() const;
- void GtkEnableEvents() const;
+ void GtkDisableEvents();
+ void GtkEnableEvents();
// Update the number of digits used to match our range (and base).
void GtkSetEntryWidth();
diff --git a/include/wx/html/htmprint.h b/include/wx/html/htmprint.h
index 554413d44c..00a318983d 100644
--- a/include/wx/html/htmprint.h
+++ b/include/wx/html/htmprint.h
@@ -257,7 +257,7 @@ public:
// pg is one of wxPAGE_ODD, wxPAGE_EVEN and wx_PAGE_ALL constants.
// You can set different header/footer for odd and even pages
- void SetFonts(const wxString& normal_face, const wxString& fixed_face, const int *sizes = 0);
+ void SetFonts(const wxString& normal_face, const wxString& fixed_face, const int* sizes = NULL);
// Sets fonts to be used when displaying HTML page. (if size null then default sizes used)
// Sets font sizes to be relative to the given size or the system
diff --git a/include/wx/list.h b/include/wx/list.h
index 3c3ddd896e..ee55b58e9c 100644
--- a/include/wx/list.h
+++ b/include/wx/list.h
@@ -71,7 +71,7 @@ class wxList_SortFunction
public:
wxList_SortFunction(wxSortCompareFunction f) : m_f(f) { }
bool operator()(const T& i1, const T& i2)
- { return m_f((T*)&i1, (T*)&i2) < 0; }
+ { return m_f(&i1, &i2) < 0; }
private:
wxSortCompareFunction m_f;
};
@@ -483,7 +483,8 @@ public:
wxDEPRECATED( wxNode *Nth(size_t n) const ); // use Item
// kludge for typesafe list migration in core classes.
- wxDEPRECATED( operator wxList&() const );
+ wxDEPRECATED( operator wxList&() );
+ wxDEPRECATED( operator const wxList&() const );
#endif // wxLIST_COMPATIBILITY
protected:
@@ -1147,7 +1148,6 @@ inline int wxListBase::Number() const { return (int)GetCount(); }
inline wxNode *wxListBase::First() const { return (wxNode *)GetFirst(); }
inline wxNode *wxListBase::Last() const { return (wxNode *)GetLast(); }
inline wxNode *wxListBase::Nth(size_t n) const { return (wxNode *)Item(n); }
-inline wxListBase::operator wxList&() const { return *(wxList*)this; }
#endif
@@ -1200,6 +1200,10 @@ public:
#if !wxUSE_STD_CONTAINERS
+// wxListBase deprecated methods
+inline wxListBase::operator wxList&() { return *static_cast(this); }
+inline wxListBase::operator const wxList&() const { return *static_cast(this); }
+
// -----------------------------------------------------------------------------
// wxStringList class for compatibility with the old code
// -----------------------------------------------------------------------------
diff --git a/include/wx/log.h b/include/wx/log.h
index 514dc84b6b..90273b0457 100644
--- a/include/wx/log.h
+++ b/include/wx/log.h
@@ -1241,37 +1241,30 @@ WXDLLIMPEXP_BASE wxString wxSysErrorMsgStr(unsigned long nErrCode = 0);
// this macro generates the expression which logs whatever follows it in
// parentheses at the level specified as argument
-#define wxDO_LOG(level) wxMAKE_LOGGER(level).Log
+#define wxDO_LOG(level) wxDO_LOG_WITH_FUNC(level, Log)
+
+// generalization of the macro above that uses the given function of wxLogger
+// object rather than the default "Log"
+#define wxDO_LOG_WITH_FUNC(level, func) wxMAKE_LOGGER(level).func
// this is the non-vararg equivalent
#define wxDO_LOGV(level, format, argptr) \
wxMAKE_LOGGER(level).LogV(format, argptr)
-// this macro declares wxLog() macro which logs whatever follows it if
-// logging at specified level is enabled (notice that if it is false, the
-// following arguments are not even evaluated which is good as it avoids
-// unnecessary overhead)
-//
-// Note: the strange (because executing at most once) for() loop because we
-// must arrange for wxDO_LOG() to be at the end of the macro and using a
-// more natural "if (IsLevelEnabled()) wxDO_LOG()" would result in wrong
-// behaviour for the following code ("else" would bind to the wrong "if"):
-//
-// if ( cond )
-// wxLogError("!!!");
-// else
-// ...
-//
-// See also #11829 for the problems with other simpler approaches,
-// notably the need for two macros due to buggy __LINE__ in MSVC.
-#define wxDO_LOG_IF_ENABLED_HELPER(level, loopvar) \
- for ( bool loopvar = false; \
- !loopvar && wxLog::IsLevelEnabled(wxLOG_##level, wxLOG_COMPONENT); \
- loopvar = true ) \
- wxDO_LOG(level)
+// Macro evaluating to true if logging at the given level is enabled.
+#define wxLOG_IS_ENABLED(level) \
+ wxLog::IsLevelEnabled(wxLOG_##level, wxLOG_COMPONENT)
+// Macro used to define most of the actual wxLogXXX() macros: just calls
+// wxLogger::Log(), if logging at the specified level is enabled.
#define wxDO_LOG_IF_ENABLED(level) \
- wxDO_LOG_IF_ENABLED_HELPER(level, wxMAKE_UNIQUE_NAME(wxlogcheck))
+ wxDO_IF(wxLOG_IS_ENABLED(level)) \
+ wxDO_LOG(level)
+
+// Similar to above, but calls the given function instead of Log().
+#define wxDO_LOG_IF_ENABLED_WITH_FUNC(level, func) \
+ wxDO_IF(wxLOG_IS_ENABLED(level)) \
+ wxDO_LOG_WITH_FUNC(level, func)
// wxLogFatalError() is special as it can't be disabled
#define wxLogFatalError wxDO_LOG(FatalError)
@@ -1292,17 +1285,12 @@ WXDLLIMPEXP_BASE wxString wxSysErrorMsgStr(unsigned long nErrCode = 0);
// this one is special as it only logs if we're in verbose mode
#define wxLogVerbose \
- if ( !(wxLog::IsLevelEnabled(wxLOG_Info, wxLOG_COMPONENT) && \
- wxLog::GetVerbose()) ) \
- {} \
- else \
- wxDO_LOG(Info)
+ wxDO_IF(wxLOG_IS_ENABLED(Info) && wxLog::GetVerbose()) \
+ wxDO_LOG(Info)
+
#define wxVLogVerbose(format, argptr) \
- if ( !(wxLog::IsLevelEnabled(wxLOG_Info, wxLOG_COMPONENT) && \
- wxLog::GetVerbose()) ) \
- {} \
- else \
- wxDO_LOGV(Info, format, argptr)
+ wxDO_IF(wxLOG_IS_ENABLED(Info) && wxLog::GetVerbose()) \
+ wxDO_LOGV(Info, format, argptr)
// another special case: the level is passed as first argument of the function
// and so is not available to the macro
@@ -1311,10 +1299,8 @@ WXDLLIMPEXP_BASE wxString wxSysErrorMsgStr(unsigned long nErrCode = 0);
// always evaluated, unlike for the other log functions
#define wxLogGeneric wxMAKE_LOGGER(Max).LogAtLevel
#define wxVLogGeneric(level, format, argptr) \
- if ( !wxLog::IsLevelEnabled(wxLOG_##level, wxLOG_COMPONENT) ) \
- {} \
- else \
- wxDO_LOGV(level, format, argptr)
+ wxDO_IF(wxLOG_IS_ENABLED(level)) \
+ wxDO_LOGV(level, format, argptr)
// wxLogSysError() needs to stash the error code value in the log record info
@@ -1331,12 +1317,9 @@ WXDLLIMPEXP_BASE wxString wxSysErrorMsgStr(unsigned long nErrCode = 0);
// change even much sooner)
#define wxLOG_KEY_SYS_ERROR_CODE "wx.sys_error"
-#define wxLogSysError \
- if ( !wxLog::IsLevelEnabled(wxLOG_Error, wxLOG_COMPONENT) ) \
- {} \
- else \
- wxMAKE_LOGGER(Error).MaybeStore(wxLOG_KEY_SYS_ERROR_CODE, \
- wxSysErrorCode()).Log
+#define wxLogSysError \
+ wxDO_LOG_IF_ENABLED_WITH_FUNC(Error, MaybeStore(wxLOG_KEY_SYS_ERROR_CODE, \
+ wxSysErrorCode()).Log)
// unfortunately we can't have overloaded macros so we can't define versions
// both with and without error code argument and have to rely on LogV()
@@ -1350,11 +1333,8 @@ WXDLLIMPEXP_BASE wxString wxSysErrorMsgStr(unsigned long nErrCode = 0);
// specify the frame to which the message should go
#define wxLOG_KEY_FRAME "wx.frame"
- #define wxLogStatus \
- if ( !wxLog::IsLevelEnabled(wxLOG_Status, wxLOG_COMPONENT) ) \
- {} \
- else \
- wxMAKE_LOGGER(Status).MaybeStore(wxLOG_KEY_FRAME).Log
+ #define wxLogStatus \
+ wxDO_LOG_IF_ENABLED_WITH_FUNC(Status, MaybeStore(wxLOG_KEY_FRAME).Log)
#define wxVLogStatus \
wxMAKE_LOGGER(Status).MaybeStore(wxLOG_KEY_FRAME).LogV
@@ -1451,16 +1431,8 @@ public:
#endif // wxUSE_LOG_DEBUG/!wxUSE_LOG_DEBUG
#if wxUSE_LOG_TRACE
- #define wxLogTrace \
- if ( !wxLog::IsLevelEnabled(wxLOG_Trace, wxLOG_COMPONENT) ) \
- {} \
- else \
- wxMAKE_LOGGER(Trace).LogTrace
- #define wxVLogTrace \
- if ( !wxLog::IsLevelEnabled(wxLOG_Trace, wxLOG_COMPONENT) ) \
- {} \
- else \
- wxMAKE_LOGGER(Trace).LogVTrace
+ #define wxLogTrace wxDO_LOG_IF_ENABLED_WITH_FUNC(Trace, LogTrace)
+ #define wxVLogTrace wxDO_LOG_IF_ENABLED_WITH_FUNC(Trace, LogVTrace)
#else // !wxUSE_LOG_TRACE
#define wxVLogTrace(mask, fmt, valist) wxLogNop()
diff --git a/include/wx/msw/chkconf.h b/include/wx/msw/chkconf.h
index abf12efc45..0c9b1acf41 100644
--- a/include/wx/msw/chkconf.h
+++ b/include/wx/msw/chkconf.h
@@ -13,6 +13,13 @@
#ifndef _WX_MSW_CHKCONF_H_
#define _WX_MSW_CHKCONF_H_
+/* ensure that CPU parameter is specified (only nmake .vc makefile) */
+#ifdef _MSC_VER
+ #if defined(_WIN64) && defined(TARGET_CPU_COMPFLAG) && (TARGET_CPU_COMPFLAG == 0)
+ #error CPU must be defined
+ #endif
+#endif
+
/* ensure that MSW-specific settings are defined */
#ifndef wxUSE_ACTIVEX
# ifdef wxABORT_ON_CONFIG_ERROR
diff --git a/include/wx/msw/dde.h b/include/wx/msw/dde.h
index a7cd04ccda..64ec55677a 100644
--- a/include/wx/msw/dde.h
+++ b/include/wx/msw/dde.h
@@ -87,10 +87,11 @@ public:
// Find/delete wxDDEConnection corresponding to the HCONV
wxDDEConnection *FindConnection(WXHCONV conv);
bool DeleteConnection(WXHCONV conv);
- wxString& GetServiceName() const { return (wxString&) m_serviceName; }
+ wxString& GetServiceName() { return m_serviceName; }
+ const wxString& GetServiceName() const { return m_serviceName; }
- wxDDEConnectionList& GetConnections() const
- { return (wxDDEConnectionList&) m_connections; }
+ wxDDEConnectionList& GetConnections() { return m_connections; }
+ const wxDDEConnectionList& GetConnections() const { return m_connections; }
protected:
int m_lastError;
@@ -120,8 +121,8 @@ public:
wxDDEConnection *FindConnection(WXHCONV conv);
bool DeleteConnection(WXHCONV conv);
- wxDDEConnectionList& GetConnections() const
- { return (wxDDEConnectionList&) m_connections; }
+ wxDDEConnectionList& GetConnections() { return m_connections; }
+ const wxDDEConnectionList& GetConnections() const { return m_connections; }
protected:
int m_lastError;
diff --git a/include/wx/msw/dib.h b/include/wx/msw/dib.h
index 6fb4c3eca3..29cf56a202 100644
--- a/include/wx/msw/dib.h
+++ b/include/wx/msw/dib.h
@@ -73,11 +73,11 @@ public:
// create a bitmap compatible with the given HDC (or screen by default) and
// return its handle, the caller is responsible for freeing it (using
// DeleteObject())
- HBITMAP CreateDDB(HDC hdc = 0) const;
+ HBITMAP CreateDDB(HDC hdc = NULL) const;
// get the handle from the DIB and reset it, i.e. this object won't destroy
// the DIB after this (but the caller should do it)
- HBITMAP Detach() { HBITMAP hbmp = m_handle; m_handle = 0; return hbmp; }
+ HBITMAP Detach() { HBITMAP hbmp = m_handle; m_handle = NULL; return hbmp; }
#if defined(__WXMSW__) && wxUSE_PALETTE
// create a palette for this DIB (always a trivial/default one for 24bpp)
@@ -92,7 +92,7 @@ public:
// ---------
// return true if DIB was successfully created, false otherwise
- bool IsOk() const { return m_handle != 0; }
+ bool IsOk() const { return m_handle != NULL; }
// get the bitmap size
wxSize GetSize() const { DoGetObject(); return wxSize(m_width, m_height); }
@@ -121,8 +121,8 @@ public:
// a plain DIB or a DIB section (in which case the last parameter must be
// non NULL)
static HBITMAP ConvertToBitmap(const BITMAPINFO *pbi,
- HDC hdc = 0,
- void *bits = NULL);
+ HDC hdc = NULL,
+ const void *bits = NULL);
// create a plain DIB (not a DIB section) from a DDB, the caller is
// responsable for freeing it using ::GlobalFree()
@@ -242,7 +242,7 @@ private:
inline
void wxDIB::Init()
{
- m_handle = 0;
+ m_handle = NULL;
m_ownsHandle = true;
m_data = NULL;
diff --git a/include/wx/msw/enhmeta.h b/include/wx/msw/enhmeta.h
index bd6c5f729e..80f380cf31 100644
--- a/include/wx/msw/enhmeta.h
+++ b/include/wx/msw/enhmeta.h
@@ -43,7 +43,7 @@ public:
bool Play(wxDC *dc, wxRect *rectBound = NULL);
// accessors
- virtual bool IsOk() const wxOVERRIDE { return m_hMF != 0; }
+ virtual bool IsOk() const wxOVERRIDE { return m_hMF != NULL; }
wxSize GetSize() const;
int GetWidth() const { return GetSize().x; }
@@ -59,7 +59,7 @@ public:
// Detach the HENHMETAFILE from this object, i.e. don't delete the handle
// in the dtor -- the caller is now responsible for doing this, e.g. using
// Free() method below.
- WXHANDLE Detach() { WXHANDLE h = m_hMF; m_hMF = 0; return h; }
+ WXHANDLE Detach() { WXHANDLE h = m_hMF; m_hMF = NULL; return h; }
// Destroy the given HENHMETAFILE object.
static void Free(WXHANDLE handle);
diff --git a/include/wx/msw/font.h b/include/wx/msw/font.h
index 70ede34b88..ed75e8890f 100644
--- a/include/wx/msw/font.h
+++ b/include/wx/msw/font.h
@@ -65,7 +65,7 @@ public:
underlined, face, encoding);
}
- wxFont(const wxNativeFontInfo& info, WXHFONT hFont = 0)
+ wxFont(const wxNativeFontInfo& info, WXHFONT hFont = NULL)
{
Create(info, hFont);
}
@@ -90,7 +90,7 @@ public:
encoding));
}
- bool Create(const wxNativeFontInfo& info, WXHFONT hFont = 0);
+ bool Create(const wxNativeFontInfo& info, WXHFONT hFont = NULL);
virtual ~wxFont();
diff --git a/include/wx/msw/gdiimage.h b/include/wx/msw/gdiimage.h
index 9f39219c67..94b6f01091 100644
--- a/include/wx/msw/gdiimage.h
+++ b/include/wx/msw/gdiimage.h
@@ -36,7 +36,7 @@ public:
{
m_width = m_height = m_depth = 0;
- m_handle = 0;
+ m_handle = NULL;
}
wxGDIImageRefData(const wxGDIImageRefData& data) : wxGDIRefData()
@@ -50,7 +50,7 @@ public:
}
// accessors
- virtual bool IsOk() const wxOVERRIDE { return m_handle != 0; }
+ virtual bool IsOk() const wxOVERRIDE { return m_handle != NULL; }
void SetSize(int w, int h) { m_width = w; m_height = h; }
@@ -104,7 +104,7 @@ public:
// accessors
WXHANDLE GetHandle() const
- { return IsNull() ? 0 : GetGDIImageData()->m_handle; }
+ { return IsNull() ? NULL : GetGDIImageData()->m_handle; }
void SetHandle(WXHANDLE handle)
{ AllocExclusive(); GetGDIImageData()->m_handle = handle; }
diff --git a/include/wx/msw/ole/automtn.h b/include/wx/msw/ole/automtn.h
index 1d1eb33af3..beea810f6e 100644
--- a/include/wx/msw/ole/automtn.h
+++ b/include/wx/msw/ole/automtn.h
@@ -67,7 +67,7 @@ public:
// Low-level invocation function. Pass either an array of variants,
// or an array of pointers to variants.
bool Invoke(const wxString& member, int action,
- wxVariant& retValue, int noArgs, wxVariant args[], const wxVariant* ptrArgs[] = 0) const;
+ wxVariant& retValue, int noArgs, wxVariant args[], const wxVariant* ptrArgs[] = NULL) const;
// Invoke a member function
wxVariant CallMethod(const wxString& method, int noArgs, wxVariant args[]);
diff --git a/include/wx/msw/private.h b/include/wx/msw/private.h
index e413799050..9dc7357958 100644
--- a/include/wx/msw/private.h
+++ b/include/wx/msw/private.h
@@ -162,7 +162,8 @@ protected:
// implicitly convertible to HANDLE, which is a pointer.
static HANDLE InvalidHandle()
{
- return reinterpret_cast(INVALID_VALUE);
+ wxUIntPtr h = INVALID_VALUE;
+ return reinterpret_cast(h);
}
void DoClose()
@@ -449,7 +450,7 @@ private:
class MemoryHDC
{
public:
- MemoryHDC(HDC hdc = 0) { m_hdc = ::CreateCompatibleDC(hdc); }
+ MemoryHDC(HDC hdc = NULL) { m_hdc = ::CreateCompatibleDC(hdc); }
~MemoryHDC() { ::DeleteDC(m_hdc); }
operator HDC() const { return m_hdc; }
@@ -483,7 +484,7 @@ public:
~SelectInHDC() { if ( m_hdc ) ::SelectObject(m_hdc, m_hgdiobj); }
// return true if the object was successfully selected
- operator bool() const { return m_hgdiobj != 0; }
+ operator bool() const { return m_hgdiobj != NULL; }
private:
HDC m_hdc;
@@ -578,7 +579,7 @@ class MonoBitmap : public AutoHBITMAP
{
public:
MonoBitmap(int w, int h)
- : AutoHBITMAP(::CreateBitmap(w, h, 1, 1, 0))
+ : AutoHBITMAP(::CreateBitmap(w, h, 1, 1, NULL))
{
}
};
diff --git a/include/wx/msw/private/paint.h b/include/wx/msw/private/paint.h
new file mode 100644
index 0000000000..abd0c44cd1
--- /dev/null
+++ b/include/wx/msw/private/paint.h
@@ -0,0 +1,39 @@
+///////////////////////////////////////////////////////////////////////////////
+// Name: wx/msw/private/paint.h
+// Purpose: Helpers for handling repainting
+// Author: Vadim Zeitlin
+// Created: 2020-02-10
+// Copyright: (c) 2020 Vadim Zeitlin
+// Licence: wxWindows licence
+///////////////////////////////////////////////////////////////////////////////
+
+#ifndef _WX_MSW_PRIVATE_PAINT_H_
+#define _WX_MSW_PRIVATE_PAINT_H_
+
+#include "wx/stack.h"
+
+namespace wxMSWImpl
+{
+
+// Data used by WM_PAINT handler
+struct PaintData
+{
+ explicit PaintData(wxWindowMSW* window_)
+ : window(window_),
+ createdPaintDC(false)
+ {
+ }
+
+ // The window being repainted (never null).
+ wxWindowMSW* const window;
+
+ // True if the user-defined paint handler created wxPaintDC.
+ bool createdPaintDC;
+};
+
+// Stack storing data for the possibly nested WM_PAINT handlers.
+extern wxStack paintStack;
+
+} // namespace wxMSWImpl
+
+#endif // _WX_MSW_PRIVATE_PAINT_H_
diff --git a/include/wx/msw/private/webview_edge.h b/include/wx/msw/private/webview_edge.h
index c5c05448c4..b520969bb6 100644
--- a/include/wx/msw/private/webview_edge.h
+++ b/include/wx/msw/private/webview_edge.h
@@ -15,6 +15,10 @@
#include
+#ifndef __ICoreWebView2Environment_INTERFACE_DEFINED__
+ #error "WebView2 SDK version 0.9.430 or newer is required"
+#endif
+
class wxWebViewEdgeImpl
{
public:
@@ -25,8 +29,9 @@ public:
wxWebViewEdge* m_ctrl;
- wxCOMPtr m_webViewEnvironment;
- wxCOMPtr m_webView;
+ wxCOMPtr m_webViewEnvironment;
+ wxCOMPtr m_webView;
+ wxCOMPtr m_webViewHost;
bool m_initialized;
bool m_isBusy;
@@ -37,17 +42,17 @@ public:
EventRegistrationToken m_navigationCompletedToken = { };
EventRegistrationToken m_newWindowRequestedToken = { };
EventRegistrationToken m_documentTitleChangedToken = { };
- EventRegistrationToken m_documentStateChangedToken = { };
+ EventRegistrationToken m_contentLoadingToken = { };
// WebView Event handlers
- HRESULT OnNavigationStarting(IWebView2WebView* sender, IWebView2NavigationStartingEventArgs* args);
- HRESULT OnNavigationCompleted(IWebView2WebView* sender, IWebView2NavigationCompletedEventArgs* args);
- HRESULT OnNewWindowRequested(IWebView2WebView* sender, IWebView2NewWindowRequestedEventArgs* args);
- HRESULT OnDocumentTitleChanged(IWebView2WebView* sender, IUnknown* args);
- HRESULT OnDocumentStateChanged(IWebView2WebView* sender, IWebView2DocumentStateChangedEventArgs* args);
+ HRESULT OnNavigationStarting(ICoreWebView2* sender, ICoreWebView2NavigationStartingEventArgs* args);
+ HRESULT OnNavigationCompleted(ICoreWebView2* sender, ICoreWebView2NavigationCompletedEventArgs* args);
+ HRESULT OnNewWindowRequested(ICoreWebView2* sender, ICoreWebView2NewWindowRequestedEventArgs* args);
+ HRESULT OnDocumentTitleChanged(ICoreWebView2* sender, IUnknown* args);
+ HRESULT OnContentLoading(ICoreWebView2* sender, ICoreWebView2ContentLoadingEventArgs* args);
- HRESULT OnEnvironmentCreated(HRESULT result, IWebView2Environment* environment);
- HRESULT OnWebViewCreated(HRESULT result, IWebView2WebView* webview);
+ HRESULT OnEnvironmentCreated(HRESULT result, ICoreWebView2Environment* environment);
+ HRESULT OnWebViewCreated(HRESULT result, ICoreWebView2Host* webViewHost);
wxVector > m_historyList;
int m_historyPosition;
@@ -56,7 +61,7 @@ public:
void UpdateBounds();
- IWebView2Settings2* GetSettings();
+ ICoreWebView2Settings* GetSettings();
static int ms_isAvailable;
static wxDynamicLibrary ms_loaderDll;
diff --git a/include/wx/msw/registry.h b/include/wx/msw/registry.h
index f3925f97bf..ae43a075ba 100644
--- a/include/wx/msw/registry.h
+++ b/include/wx/msw/registry.h
@@ -136,7 +136,7 @@ public:
size_t *pnValues, // number of values
size_t *pnMaxValueLen) const;
// return true if the key is opened
- bool IsOpened() const { return m_hKey != 0; }
+ bool IsOpened() const { return m_hKey != NULL; }
// for "if ( !key ) wxLogError(...)" kind of expressions
operator bool() const { return m_dwLastError == 0; }
@@ -263,7 +263,7 @@ private:
wxString m_strKey; // key name (relative to m_hRootKey)
WOW64ViewMode m_viewMode; // which view to select under WOW64
AccessMode m_mode; // valid only if key is opened
- long m_dwLastError; // last error (0 if none)
+ mutable long m_dwLastError; // last error (0 if none)
wxDECLARE_NO_COPY_CLASS(wxRegKey);
diff --git a/include/wx/msw/rt/utils.h b/include/wx/msw/rt/utils.h
index b315531090..213dfe41b7 100644
--- a/include/wx/msw/rt/utils.h
+++ b/include/wx/msw/rt/utils.h
@@ -66,11 +66,9 @@ public:
operator HSTRING() const { return m_hstring; };
- static const TempStringRef Make(const wxString &str);
+ TempStringRef(const wxString& str);
private:
- TempStringRef(const wxString &str);
-
HSTRING m_hstring;
HSTRING_HEADER m_header;
diff --git a/include/wx/msw/window.h b/include/wx/msw/window.h
index 230d099b27..47203237f1 100644
--- a/include/wx/msw/window.h
+++ b/include/wx/msw/window.h
@@ -453,7 +453,7 @@ public:
// The brush returned from here must remain valid at least until the next
// event loop iteration. Returning 0, as is done by default, indicates
// there is no custom background brush.
- virtual WXHBRUSH MSWGetCustomBgBrush() { return 0; }
+ virtual WXHBRUSH MSWGetCustomBgBrush() { return NULL; }
// this function should return the brush to paint the children controls
// background or 0 if this window doesn't impose any particular background
diff --git a/include/wx/msw/winundef.h b/include/wx/msw/winundef.h
index aedf4340d3..feebf2b6eb 100644
--- a/include/wx/msw/winundef.h
+++ b/include/wx/msw/winundef.h
@@ -263,12 +263,12 @@
#if wxUSE_UNICODE_WINDOWS_H
inline int StartDoc(HDC h, CONST DOCINFOW* info)
{
- return StartDocW(h, (DOCINFOW*) info);
+ return StartDocW(h, const_cast(info));
}
#else
inline int StartDoc(HDC h, CONST DOCINFOA* info)
{
- return StartDocA(h, (DOCINFOA*) info);
+ return StartDocA(h, const_cast(info));
}
#endif
#endif
diff --git a/include/wx/object.h b/include/wx/object.h
index 1dd57cd654..dd1e2fb927 100644
--- a/include/wx/object.h
+++ b/include/wx/object.h
@@ -150,7 +150,7 @@ name##PluginSentinel m_pluginsentinel
// The 'this' pointer is always true, so use this version
// to cast the this pointer and avoid compiler warnings.
#define wxDynamicCastThis(className) \
- (IsKindOf(&className::ms_classInfo) ? (className *)(this) : (className *)0)
+ (IsKindOf(&className::ms_classInfo) ? (className*)this : NULL)
template
inline T *wxCheckCast(const void *ptr)
@@ -313,6 +313,13 @@ public:
m_ptr = ptr;
}
+ T* release()
+ {
+ T* const ptr = m_ptr;
+ m_ptr = NULL;
+ return ptr;
+ }
+
wxObjectDataPtr& operator=(const wxObjectDataPtr &tocopy)
{
if (m_ptr)
diff --git a/include/wx/osx/carbon/private/overlay.h b/include/wx/osx/carbon/private/overlay.h
deleted file mode 100644
index f5ebe1d83e..0000000000
--- a/include/wx/osx/carbon/private/overlay.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/////////////////////////////////////////////////////////////////////////////
-// Name: wx/osx/carbon/private/overlay.h
-// Purpose: wxOverlayImpl declaration
-// Author: Stefan Csomor
-// Modified by:
-// Created: 2006-10-20
-// Copyright: (c) wxWidgets team
-// Licence: wxWindows licence
-/////////////////////////////////////////////////////////////////////////////
-
-#ifndef _WX_MAC_CARBON_PRIVATE_OVERLAY_H_
-#define _WX_MAC_CARBON_PRIVATE_OVERLAY_H_
-
-#include "wx/osx/private.h"
-#include "wx/toplevel.h"
-#include "wx/graphics.h"
-
-class wxOverlayImpl
-{
-public:
- wxOverlayImpl() ;
- ~wxOverlayImpl() ;
-
-
- // clears the overlay without restoring the former state
- // to be done eg when the window content has been changed and repainted
- void Reset();
-
- // returns true if it has been setup
- bool IsOk();
-
- void Init( wxDC* dc, int x , int y , int width , int height );
-
- void BeginDrawing( wxDC* dc);
-
- void EndDrawing( wxDC* dc);
-
- void Clear( wxDC* dc);
-
-private:
- OSStatus CreateOverlayWindow();
-
- void MacGetBounds( Rect *bounds );
-
- WindowRef m_overlayWindow;
- WindowRef m_overlayParentWindow;
- CGContextRef m_overlayContext ;
- // we store the window in case we would have to issue a Refresh()
- wxWindow* m_window ;
-
- int m_x ;
- int m_y ;
- int m_width ;
- int m_height ;
-} ;
-
-#endif // _WX_MAC_CARBON_PRIVATE_OVERLAY_H_
diff --git a/include/wx/osx/cocoa/private.h b/include/wx/osx/cocoa/private.h
index 9a98f67252..2080e475cf 100644
--- a/include/wx/osx/cocoa/private.h
+++ b/include/wx/osx/cocoa/private.h
@@ -518,11 +518,6 @@ extern ClassicCursor gMacCursors[];
extern NSLayoutManager* gNSLayoutManager;
-// NSString<->wxString
-
-wxString wxStringWithNSString(NSString *nsstring);
-NSString* wxNSStringWithWxString(const wxString &wxstring);
-
// helper class for setting the current appearance to the
// effective appearance and restore when exiting scope
diff --git a/include/wx/osx/core/cfref.h b/include/wx/osx/core/cfref.h
index 56a0697f3f..4a258ba21b 100644
--- a/include/wx/osx/core/cfref.h
+++ b/include/wx/osx/core/cfref.h
@@ -66,7 +66,7 @@ inline Type* wxCFRetain(Type *r)
// Casting r to CFTypeRef ensures we are calling the real C version defined in CFBase.h
// and not any possibly templated/overloaded CFRetain.
if ( r != NULL )
- r = (Type*)::CFRetain((CFTypeRef)r);
+ r = const_cast(static_cast(::CFRetain(static_cast(r))));
return r;
}
diff --git a/include/wx/osx/core/private.h b/include/wx/osx/core/private.h
index 9984d8d8e4..ba57b86157 100644
--- a/include/wx/osx/core/private.h
+++ b/include/wx/osx/core/private.h
@@ -51,7 +51,6 @@ wxString WXDLLIMPEXP_CORE wxMacMakeStringFromPascal( const unsigned char * from
WXDLLIMPEXP_BASE wxString wxMacFSRefToPath( const FSRef *fsRef , CFStringRef additionalPathComponent = NULL );
WXDLLIMPEXP_BASE OSStatus wxMacPathToFSRef( const wxString&path , FSRef *fsRef );
WXDLLIMPEXP_BASE wxString wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname );
-WXDLLIMPEXP_BASE CFURLRef wxOSXCreateURLFromFileSystemPath( const wxString& path);
// keycode utils from app.cpp
@@ -60,6 +59,13 @@ WXDLLIMPEXP_BASE long wxMacTranslateKey(unsigned char key, unsigned char code);
#endif
+// NSString<->wxString
+
+WXDLLIMPEXP_BASE wxString wxStringWithNSString(NSString *nsstring);
+WXDLLIMPEXP_BASE NSString* wxNSStringWithWxString(const wxString &wxstring);
+
+WXDLLIMPEXP_BASE CFURLRef wxOSXCreateURLFromFileSystemPath( const wxString& path);
+
#if wxUSE_GUI
#if wxOSX_USE_IPHONE
diff --git a/include/wx/ownerdrw.h b/include/wx/ownerdrw.h
index 7ae3b71cb4..4dfc30b47c 100644
--- a/include/wx/ownerdrw.h
+++ b/include/wx/ownerdrw.h
@@ -43,21 +43,21 @@ public:
void SetFont(const wxFont& font)
{ m_font = font; m_ownerDrawn = true; }
- wxFont& GetFont() const
- { return (wxFont&) m_font; }
+ wxFont& GetFont() { return m_font; }
+ const wxFont& GetFont() const { return m_font; }
void SetTextColour(const wxColour& colText)
{ m_colText = colText; m_ownerDrawn = true; }
- wxColour& GetTextColour() const
- { return (wxColour&) m_colText; }
+ wxColour& GetTextColour() { return m_colText; }
+ const wxColour& GetTextColour() const { return m_colText; }
void SetBackgroundColour(const wxColour& colBack)
{ m_colBack = colBack; m_ownerDrawn = true; }
- wxColour& GetBackgroundColour() const
- { return (wxColour&) m_colBack ; }
+ wxColour& GetBackgroundColour() { return m_colBack; }
+ const wxColour& GetBackgroundColour() const { return m_colBack ; }
void SetMarginWidth(int width)
diff --git a/include/wx/private/animate.h b/include/wx/private/animate.h
new file mode 100644
index 0000000000..3e85dd854b
--- /dev/null
+++ b/include/wx/private/animate.h
@@ -0,0 +1,44 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name: wx/private/animate.h
+// Purpose: wxAnimationImpl declaration
+// Author: Robin Dunn, Vadim Zeitlin
+// Created: 2020-04-06
+// Copyright: (c) 2020 wxWidgets development team
+// Licence: wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+#ifndef _WX_PRIVATE_ANIMATEH__
+#define _WX_PRIVATE_ANIMATEH__
+
+// ----------------------------------------------------------------------------
+// wxAnimationImpl
+// ----------------------------------------------------------------------------
+
+class WXDLLIMPEXP_CORE wxAnimationImpl : public wxRefCounter
+{
+public:
+ wxAnimationImpl() {}
+ virtual ~wxAnimationImpl() {}
+
+ virtual bool IsOk() const = 0;
+ virtual bool IsCompatibleWith(wxClassInfo* ci) const = 0;
+
+ // can be -1
+ virtual int GetDelay(unsigned int frame) const = 0;
+
+ virtual unsigned int GetFrameCount() const = 0;
+ virtual wxImage GetFrame(unsigned int frame) const = 0;
+ virtual wxSize GetSize() const = 0;
+
+ virtual bool LoadFile(const wxString& name,
+ wxAnimationType type = wxANIMATION_TYPE_ANY) = 0;
+ virtual bool Load(wxInputStream& stream,
+ wxAnimationType type = wxANIMATION_TYPE_ANY) = 0;
+
+ // This function creates the default implementation for this platform:
+ // currently it's wxAnimationGTKImpl under wxGTK and wxAnimationGenericImpl
+ // under all the other platforms.
+ static wxAnimationImpl *CreateDefault();
+};
+
+#endif // _WX_PRIVATE_ANIMATEH__
diff --git a/include/wx/private/jsscriptwrapper.h b/include/wx/private/jsscriptwrapper.h
index e60070fc1e..e235ea46d3 100644
--- a/include/wx/private/jsscriptwrapper.h
+++ b/include/wx/private/jsscriptwrapper.h
@@ -36,10 +36,37 @@ public:
// avoid any possible conflict between different calls.
m_outputVarName = wxString::Format("__wxOut%i", (*runScriptCount)++);
- // Adds one escape level if there is a single quote, double quotes or
- // escape characters
- wxRegEx escapeDoubleQuotes("(\\\\*)([\\'\"\n\r\v\t\b\f])");
- escapeDoubleQuotes.Replace(&m_escapedCode,"\\1\\1\\\\\\2");
+ // Adds one escape level.
+ const char *charsNeededToBeEscaped = "\\\"\n\r\v\t\b\f";
+ for (
+ size_t pos = m_escapedCode.find_first_of(charsNeededToBeEscaped, 0);
+ pos != wxString::npos;
+ pos = m_escapedCode.find_first_of(charsNeededToBeEscaped, pos)
+ ) {
+ switch (m_escapedCode[pos].GetValue())
+ {
+ case 0x0A: // '\n'
+ m_escapedCode[pos] = 'n';
+ break;
+ case 0x0D: // '\r'
+ m_escapedCode[pos] = 'r';
+ break;
+ case 0x0B: // '\v'
+ m_escapedCode[pos] = 'v';
+ break;
+ case 0x09: // '\t'
+ m_escapedCode[pos] = 't';
+ break;
+ case 0x08: // '\b'
+ m_escapedCode[pos] = 'b';
+ break;
+ case 0x0C: // '\f'
+ m_escapedCode[pos] = 'f';
+ break;
+ }
+ m_escapedCode.insert(pos, '\\');
+ pos += 2;
+ }
}
// Get the code to execute, its returned value will be either boolean true,
diff --git a/include/wx/private/secretstore.h b/include/wx/private/secretstore.h
index 4cb52bc91f..443273d627 100644
--- a/include/wx/private/secretstore.h
+++ b/include/wx/private/secretstore.h
@@ -78,6 +78,8 @@ private:
class wxSecretStoreImpl : public wxRefCounter
{
public:
+ virtual bool IsOk(wxString* WXUNUSED(errmsg)) const { return true; }
+
virtual bool Save(const wxString& service,
const wxString& username,
const wxSecretValueImpl& password,
diff --git a/include/wx/propgrid/editors.h b/include/wx/propgrid/editors.h
index 01f0a0a5e9..aa07e4c4c8 100644
--- a/include/wx/propgrid/editors.h
+++ b/include/wx/propgrid/editors.h
@@ -27,26 +27,19 @@ class WXDLLIMPEXP_FWD_PROPGRID wxPropertyGrid;
class wxPGWindowList
{
public:
- wxPGWindowList()
+ wxPGWindowList(wxWindow* primary, wxWindow* secondary = NULL)
+ : m_primary(primary)
+ , m_secondary(secondary)
{
- m_primary = m_secondary = NULL;
}
- void SetSecondary( wxWindow* secondary ) { m_secondary = secondary; }
+ void SetSecondary(wxWindow* secondary) { m_secondary = secondary; }
+
+ wxWindow* GetPrimary() const { return m_primary; }
+ wxWindow* GetSecondary() const { return m_secondary; }
wxWindow* m_primary;
wxWindow* m_secondary;
-
- wxPGWindowList( wxWindow* a )
- {
- m_primary = a;
- m_secondary = NULL;
- }
- wxPGWindowList( wxWindow* a, wxWindow* b )
- {
- m_primary = a;
- m_secondary = b;
- }
};
// -----------------------------------------------------------------------
diff --git a/include/wx/propgrid/propgrid.h b/include/wx/propgrid/propgrid.h
index 0e9daa0ad7..ee2b620fad 100644
--- a/include/wx/propgrid/propgrid.h
+++ b/include/wx/propgrid/propgrid.h
@@ -1155,6 +1155,7 @@ public:
const wxPGCommonValue* GetCommonValue( unsigned int i ) const
{
+ wxCHECK_MSG( i < m_commonValues.size(), NULL, "Invalid item index" );
return m_commonValues[i];
}
@@ -1167,7 +1168,7 @@ public:
// Returns label of given common value.
wxString GetCommonValueLabel( unsigned int i ) const
{
- wxASSERT( GetCommonValue(i) );
+ wxCHECK_MSG( i < m_commonValues.size(), wxString(), "Invalid item index" );
return GetCommonValue(i)->GetLabel();
}
@@ -1234,6 +1235,9 @@ public:
// Checks system screen design used for laying out various dialogs.
static bool IsSmallScreen();
+ // Returns rescaled bitmap
+ static wxBitmap RescaleBitmap(const wxBitmap& srcBmp, double scaleX, double scaleY);
+
// Returns rectangle that fully contains properties between and including
// p1 and p2. Rectangle is in virtual scrolled window coordinates.
wxRect GetPropertyRect( const wxPGProperty* p1,
diff --git a/include/wx/propgrid/propgridiface.h b/include/wx/propgrid/propgridiface.h
index 2235ff1090..955b935779 100644
--- a/include/wx/propgrid/propgridiface.h
+++ b/include/wx/propgrid/propgridiface.h
@@ -27,7 +27,7 @@ class WXDLLIMPEXP_PROPGRID wxPGPropArgCls
public:
wxPGPropArgCls( const wxPGProperty* property )
{
- m_ptr.property = (wxPGProperty*) property;
+ m_ptr.property = const_cast(property);
m_flags = IsProperty;
}
wxPGPropArgCls( const wxString& str )
diff --git a/include/wx/propgrid/propgridpagestate.h b/include/wx/propgrid/propgridpagestate.h
index e2b2777eef..7f5f25bb57 100644
--- a/include/wx/propgrid/propgridpagestate.h
+++ b/include/wx/propgrid/propgridpagestate.h
@@ -571,7 +571,7 @@ protected:
// Returns property by its label.
wxPGProperty* BaseGetPropertyByLabel( const wxString& label,
- wxPGProperty* parent = NULL ) const;
+ const wxPGProperty* parent = NULL ) const;
// Unselect sub-properties.
void DoRemoveChildrenFromSelection(wxPGProperty* p, bool recursive,
diff --git a/include/wx/quantize.h b/include/wx/quantize.h
index 366194f1f3..b3a722df8c 100644
--- a/include/wx/quantize.h
+++ b/include/wx/quantize.h
@@ -52,13 +52,13 @@ public:
// If you pass a palette pointer, you must free the palette yourself.
static bool Quantize(const wxImage& src, wxImage& dest, wxPalette** pPalette, int desiredNoColours = 236,
- unsigned char** eightBitData = 0, int flags = wxQUANTIZE_INCLUDE_WINDOWS_COLOURS|wxQUANTIZE_FILL_DESTINATION_IMAGE|wxQUANTIZE_RETURN_8BIT_DATA);
+ unsigned char** eightBitData = NULL, int flags = wxQUANTIZE_INCLUDE_WINDOWS_COLOURS|wxQUANTIZE_FILL_DESTINATION_IMAGE|wxQUANTIZE_RETURN_8BIT_DATA);
// This version sets a palette in the destination image so you don't
// have to manage it yourself.
static bool Quantize(const wxImage& src, wxImage& dest, int desiredNoColours = 236,
- unsigned char** eightBitData = 0, int flags = wxQUANTIZE_INCLUDE_WINDOWS_COLOURS|wxQUANTIZE_FILL_DESTINATION_IMAGE|wxQUANTIZE_RETURN_8BIT_DATA);
+ unsigned char** eightBitData = NULL, int flags = wxQUANTIZE_INCLUDE_WINDOWS_COLOURS|wxQUANTIZE_FILL_DESTINATION_IMAGE|wxQUANTIZE_RETURN_8BIT_DATA);
//// Helpers
diff --git a/include/wx/ribbon/bar.h b/include/wx/ribbon/bar.h
index 78c272a488..142e1bab3b 100644
--- a/include/wx/ribbon/bar.h
+++ b/include/wx/ribbon/bar.h
@@ -15,9 +15,13 @@
#if wxUSE_RIBBON
+class WXDLLIMPEXP_FWD_CORE wxImageList;
+
#include "wx/ribbon/control.h"
#include "wx/ribbon/page.h"
+#include "wx/vector.h"
+
enum wxRibbonBarOption
{
wxRIBBON_BAR_SHOW_PAGE_LABELS = 1 << 0,
@@ -152,6 +156,10 @@ public:
void HideIfExpanded();
+ // Return the image list containing images of the given size, creating it
+ // if necessary.
+ wxImageList* GetButtonImageList(wxSize size);
+
protected:
friend class wxRibbonPage;
@@ -208,6 +216,8 @@ protected:
wxRibbonDisplayMode m_ribbon_state;
+ wxVector m_image_lists;
+
#ifndef SWIG
wxDECLARE_CLASS(wxRibbonBar);
wxDECLARE_EVENT_TABLE();
diff --git a/include/wx/ribbon/buttonbar.h b/include/wx/ribbon/buttonbar.h
index bc54379261..a38d1fac07 100644
--- a/include/wx/ribbon/buttonbar.h
+++ b/include/wx/ribbon/buttonbar.h
@@ -190,13 +190,6 @@ protected:
void TryCollapseLayout(wxRibbonButtonBarLayout* original,
size_t first_btn, size_t* last_button,
wxRibbonButtonBarButtonState target_size);
- void MakeBitmaps(wxRibbonButtonBarButtonBase* base,
- const wxBitmap& bitmap_large,
- const wxBitmap& bitmap_large_disabled,
- const wxBitmap& bitmap_small,
- const wxBitmap& bitmap_small_disabled);
- static wxBitmap MakeResizedBitmap(const wxBitmap& original, wxSize size);
- static wxBitmap MakeDisabledBitmap(const wxBitmap& original);
void FetchButtonSizeInfo(wxRibbonButtonBarButtonBase* button,
wxRibbonButtonBarButtonState size, wxDC& dc);
virtual void UpdateWindowUI(long flags) wxOVERRIDE;
diff --git a/include/wx/rtti.h b/include/wx/rtti.h
index 34d8d387bf..55deaf301a 100644
--- a/include/wx/rtti.h
+++ b/include/wx/rtti.h
@@ -62,7 +62,7 @@ public:
~wxClassInfo();
wxObject *CreateObject() const
- { return m_objectConstructor ? (*m_objectConstructor)() : 0; }
+ { return m_objectConstructor ? (*m_objectConstructor)() : NULL; }
bool IsDynamic() const { return (NULL != m_objectConstructor); }
const wxChar *GetClassName() const { return m_className; }
diff --git a/include/wx/secretstore.h b/include/wx/secretstore.h
index a81f125501..71c0c4cc64 100644
--- a/include/wx/secretstore.h
+++ b/include/wx/secretstore.h
@@ -126,8 +126,9 @@ public:
~wxSecretStore();
- // Check if this object is valid.
- bool IsOk() const { return m_impl != NULL; }
+ // Check if this object is valid, i.e. can be used, and optionally fill in
+ // the provided error message string if it isn't.
+ bool IsOk(wxString* errmsg = NULL) const;
// Store a username/password combination.
diff --git a/include/wx/stringimpl.h b/include/wx/stringimpl.h
index e46bb800de..d10242e7a4 100644
--- a/include/wx/stringimpl.h
+++ b/include/wx/stringimpl.h
@@ -105,7 +105,8 @@ struct WXDLLIMPEXP_BASE wxStringData
nAllocLength; // allocated memory size
// mimics declaration 'wxStringCharType data[nAllocLength]'
- wxStringCharType* data() const { return (wxStringCharType*)(this + 1); }
+ wxStringCharType* data() { return reinterpret_cast(this + 1); }
+ const wxStringCharType* data() const { return reinterpret_cast(this + 1); }
// empty string has a special ref count so it's never deleted
bool IsEmpty() const { return (nRefs == -1); }
@@ -151,9 +152,9 @@ protected:
// initializes the string to the empty value (must be called only from
// ctors, use Reinit() otherwise)
#if wxUSE_UNICODE_UTF8
- void Init() { m_pchData = (wxStringCharType *)wxEmptyStringImpl; } // FIXME-UTF8
+ void Init() { m_pchData = const_cast(wxEmptyStringImpl); } // FIXME-UTF8
#else
- void Init() { m_pchData = (wxStringCharType *)wxEmptyString; }
+ void Init() { m_pchData = const_cast(wxEmptyString); }
#endif
// initializes the string with (a part of) C-string
void InitWith(const wxStringCharType *psz, size_t nPos = 0, size_t nLen = npos);
diff --git a/include/wx/strvararg.h b/include/wx/strvararg.h
index 2af4d79734..82cb94536f 100644
--- a/include/wx/strvararg.h
+++ b/include/wx/strvararg.h
@@ -425,9 +425,7 @@ wxFORMAT_STRING_SPECIFIER(int*, wxFormatString::Arg_IntPtr | wxFormatString::Arg
wxFORMAT_STRING_SPECIFIER(short int*, wxFormatString::Arg_ShortIntPtr | wxFormatString::Arg_Pointer)
wxFORMAT_STRING_SPECIFIER(long int*, wxFormatString::Arg_LongIntPtr | wxFormatString::Arg_Pointer)
-// Support for nullptr is available since MSVS 2010, even though it doesn't
-// define __cplusplus as a C++11 compiler.
-#if __cplusplus >= 201103 || wxCHECK_VISUALC_VERSION(10)
+#ifdef wxHAS_NULLPTR_T
wxFORMAT_STRING_SPECIFIER(std::nullptr_t, wxFormatString::Arg_Pointer)
#endif
diff --git a/include/wx/textbuf.h b/include/wx/textbuf.h
index 0400fa4ee7..cef304e2bd 100644
--- a/include/wx/textbuf.h
+++ b/include/wx/textbuf.h
@@ -115,16 +115,14 @@ public:
// lines, i.e. you may write something like:
// for ( str = GetFirstLine(); !Eof(); str = GetNextLine() ) { ... }
- // NB: const is commented out because not all compilers understand
- // 'mutable' keyword yet (m_nCurLine should be mutable)
- wxString& GetFirstLine() /* const */
+ wxString& GetFirstLine()
{ return m_aLines.empty() ? ms_eof : m_aLines[m_nCurLine = 0]; }
- wxString& GetNextLine() /* const */
+ wxString& GetNextLine()
{ return ++m_nCurLine == m_aLines.size() ? ms_eof
: m_aLines[m_nCurLine]; }
- wxString& GetPrevLine() /* const */
+ wxString& GetPrevLine()
{ wxASSERT(m_nCurLine > 0); return m_aLines[--m_nCurLine]; }
- wxString& GetLastLine() /* const */
+ wxString& GetLastLine()
{ return m_aLines.empty() ? ms_eof : m_aLines[m_nCurLine = m_aLines.size() - 1]; }
// get the type of the line (see also GetEOL)
diff --git a/include/wx/thread.h b/include/wx/thread.h
index 5a0ac27514..5e90bb63ab 100644
--- a/include/wx/thread.h
+++ b/include/wx/thread.h
@@ -598,7 +598,7 @@ public:
protected:
// exits from the current thread - can be called only from this thread
- void Exit(ExitCode exitcode = 0);
+ void Exit(ExitCode exitcode = NULL);
// entry point for the thread - called by Run() and executes in the context
// of this thread.
@@ -640,7 +640,7 @@ private:
wxThreadInternal *m_internal;
// protects access to any methods of wxThreadInternal object
- wxCriticalSection m_critsect;
+ mutable wxCriticalSection m_critsect;
// true if the thread is detached, false if it is joinable
bool m_isDetached;
@@ -731,7 +731,7 @@ public:
// returns a pointer to the thread which can be used to call Run()
wxThread *GetThread() const
{
- wxCriticalSectionLocker locker((wxCriticalSection&)m_critSection);
+ wxCriticalSectionLocker locker(m_critSection);
wxThread* thread = m_thread;
@@ -741,7 +741,7 @@ public:
protected:
wxThread *m_thread;
wxThreadKind m_kind;
- wxCriticalSection m_critSection; // To guard the m_thread variable
+ mutable wxCriticalSection m_critSection; // To guard the m_thread variable
friend class wxThreadHelperThread;
};
diff --git a/include/wx/translation.h b/include/wx/translation.h
index 3d5d5b0b83..df43a6def8 100644
--- a/include/wx/translation.h
+++ b/include/wx/translation.h
@@ -247,7 +247,7 @@ protected:
virtual wxString GetResourceType() const { return "MOFILE"; }
// returns module to load resources from
- virtual WXHINSTANCE GetModule() const { return 0; }
+ virtual WXHINSTANCE GetModule() const { return NULL; }
};
#endif // __WINDOWS__
diff --git a/include/wx/unichar.h b/include/wx/unichar.h
index 55d4006803..a7cb03079c 100644
--- a/include/wx/unichar.h
+++ b/include/wx/unichar.h
@@ -267,8 +267,8 @@ public:
wxUniCharRef& operator=(const wxUniCharRef& c)
{ if (&c != this) *this = c.UniChar(); return *this; }
-#if __cplusplus >= 201103
- wxUniCharRef(const wxUniCharRef&) = default;
+#ifdef wxHAS_MEMBER_DEFAULT
+ wxUniCharRef(const wxUniCharRef&) wxMEMBER_DEFAULT;
#endif
#define wxUNICHAR_REF_DEFINE_OPERATOR_EQUAL(type) \
diff --git a/include/wx/utils.h b/include/wx/utils.h
index 8e0996f24a..0a8e6371c6 100644
--- a/include/wx/utils.h
+++ b/include/wx/utils.h
@@ -840,7 +840,7 @@ WXDLLIMPEXP_CORE bool wxYieldIfNeeded();
size_t *outLen,
const wxString& resourceName,
const wxChar* resourceType = wxUserResourceStr,
- WXHINSTANCE module = 0);
+ WXHINSTANCE module = NULL);
// This function allocates a new buffer and makes a copy of the resource
// data, remember to delete[] the buffer. And avoid using it entirely if
@@ -851,7 +851,7 @@ WXDLLIMPEXP_CORE bool wxYieldIfNeeded();
wxLoadUserResource(const wxString& resourceName,
const wxChar* resourceType = wxUserResourceStr,
int* pLen = NULL,
- WXHINSTANCE module = 0);
+ WXHINSTANCE module = NULL);
#endif // __WINDOWS__
#endif
diff --git a/include/wx/wfstream.h b/include/wx/wfstream.h
index 990e4ab114..c2be68c006 100644
--- a/include/wx/wfstream.h
+++ b/include/wx/wfstream.h
@@ -114,6 +114,31 @@ private:
wxDECLARE_NO_COPY_CLASS(wxTempFileOutputStream);
};
+class WXDLLIMPEXP_BASE wxTempFFileOutputStream : public wxOutputStream
+{
+public:
+ wxTempFFileOutputStream(const wxString& fileName);
+ virtual ~wxTempFFileOutputStream();
+
+ bool Close() wxOVERRIDE { return Commit(); }
+ WXDLLIMPEXP_INLINE_BASE virtual bool Commit() { return m_file->Commit(); }
+ WXDLLIMPEXP_INLINE_BASE virtual void Discard() { m_file->Discard(); }
+
+ virtual wxFileOffset GetLength() const wxOVERRIDE { return m_file->Length(); }
+ virtual bool IsSeekable() const wxOVERRIDE { return true; }
+
+protected:
+ virtual size_t OnSysWrite(const void *buffer, size_t size) wxOVERRIDE;
+ virtual wxFileOffset OnSysSeek(wxFileOffset pos, wxSeekMode mode) wxOVERRIDE
+ { return m_file->Seek(pos, mode); }
+ virtual wxFileOffset OnSysTell() const wxOVERRIDE { return m_file->Tell(); }
+
+private:
+ wxTempFFile *m_file;
+
+ wxDECLARE_NO_COPY_CLASS(wxTempFFileOutputStream);
+};
+
class WXDLLIMPEXP_BASE wxFileStream : public wxFileInputStream,
public wxFileOutputStream
{
diff --git a/include/wx/window.h b/include/wx/window.h
index 92cd592644..814e9487ad 100644
--- a/include/wx/window.h
+++ b/include/wx/window.h
@@ -1032,7 +1032,7 @@ public:
// does this window have the capture?
virtual bool HasCapture() const
- { return (wxWindow *)this == GetCapture(); }
+ { return reinterpret_cast(this) == GetCapture(); }
// enable the specified touch events for this window, return false if
// the requested events are not supported
@@ -2073,7 +2073,7 @@ extern WXDLLIMPEXP_CORE wxPoint wxGetMousePosition();
extern WXDLLIMPEXP_CORE wxWindow *wxGetActiveWindow();
// get the (first) top level parent window
-WXDLLIMPEXP_CORE wxWindow* wxGetTopLevelParent(wxWindow *win);
+WXDLLIMPEXP_CORE wxWindow* wxGetTopLevelParent(wxWindowBase *win);
#if wxUSE_ACCESSIBILITY
// ----------------------------------------------------------------------------
diff --git a/include/wx/wxcrt.h b/include/wx/wxcrt.h
index cfdc47257e..d15458cd85 100644
--- a/include/wx/wxcrt.h
+++ b/include/wx/wxcrt.h
@@ -110,7 +110,7 @@ WXDLLIMPEXP_BASE size_t wxWC2MB(char *buf, const wchar_t *psz, size_t n);
// (notice that these intentionally return "char *" and not "void *" unlike the
// standard memxxx() for symmetry with the wide char versions):
inline char* wxTmemchr(const char* s, char c, size_t len)
- { return (char*)memchr(s, c, len); }
+ { return const_cast(static_cast(memchr(s, c, len))); }
inline int wxTmemcmp(const char* sz1, const char* sz2, size_t len)
{ return memcmp(sz1, sz2, len); }
inline char* wxTmemcpy(char* szOut, const char* szIn, size_t len)
@@ -727,7 +727,7 @@ inline char * wxStrchr(char *s, T c)
{ return const_cast(wxStrchr(const_cast(s), c)); }
template
inline wchar_t * wxStrchr(wchar_t *s, T c)
- { return (wchar_t *)wxStrchr((const wchar_t *)s, c); }
+ { return const_cast(wxStrchr(const_cast(s), c)); }
template
inline char * wxStrrchr(char *s, T c)
{ return const_cast(wxStrrchr(const_cast(s), c)); }
@@ -844,39 +844,48 @@ template<> struct wxStrtoxCharType
return NULL;
}
};
-#if __cplusplus >= 201103
-template<> struct wxStrtoxCharType
-{
- typedef const char* Type;
- static char** AsPointer(std::nullptr_t)
- {
- return nullptr;
- }
-};
-#endif
template
inline double wxStrtod(const wxString& nptr, T endptr)
{
- if (endptr)
+ if (!endptr)
{
- // note that it is important to use c_str() here and not mb_str() or
- // wc_str(), because we store the pointer into (possibly converted)
- // buffer in endptr and so it must be valid even when wxStrtod() returns
- typedef typename wxStrtoxCharType::Type CharType;
- return wxStrtod((CharType)nptr.c_str(),
- wxStrtoxCharType::AsPointer(endptr));
+ // when we don't care about endptr, use the string representation that
+ // doesn't require any conversion (it doesn't matter for this function
+ // even if its UTF-8):
+ wxStringCharType** p = NULL;
+ return wxStrtod(nptr.wx_str(), p);
}
- // when we don't care about endptr, use the string representation that
- // doesn't require any conversion (it doesn't matter for this function
- // even if its UTF-8):
- wxStringCharType** p = NULL;
- return wxStrtod(nptr.wx_str(), p);
+ // note that it is important to use c_str() here and not mb_str() or
+ // wc_str(), because we store the pointer into (possibly converted)
+ // buffer in endptr and so it must be valid even when wxStrtod() returns
+ typedef typename wxStrtoxCharType::Type CharType;
+ return wxStrtod((CharType)nptr.c_str(),
+ wxStrtoxCharType::AsPointer(endptr));
}
template
inline double wxStrtod(const wxCStrData& nptr, T endptr)
{ return wxStrtod(nptr.AsString(), endptr); }
+#ifdef wxHAS_NULLPTR_T
+
+inline double wxStrtod(const wxString& nptr, std::nullptr_t)
+ { return wxStrtod(nptr.wx_str(), static_cast(NULL)); }
+inline double wxStrtod(const wxCStrData& nptr, std::nullptr_t)
+ { return wxStrtod(nptr.AsString(), static_cast(NULL)); }
+
+#define WX_STRTOX_DEFINE_NULLPTR_OVERLOADS(rettype, name) \
+ inline rettype name(const wxString& nptr, std::nullptr_t, int base) \
+ { return name(nptr.wx_str(), static_cast(NULL), \
+ base); } \
+ inline rettype name(const wxCStrData& nptr, std::nullptr_t, int base) \
+ { return name(nptr.AsString(), static_cast(NULL), \
+ base); }
+
+#else // !wxHAS_NULLPTR_T
+#define WX_STRTOX_DEFINE_NULLPTR_OVERLOADS(rettype, name)
+#endif // wxHAS_NULLPTR_T/!wxHAS_NULLPTR_T
+
#define WX_STRTOX_FUNC(rettype, name, implA, implW) \
/* see wxStrtod() above for explanation of this code: */ \
@@ -890,19 +899,20 @@ inline double wxStrtod(const wxCStrData& nptr, T endptr)
template \
inline rettype name(const wxString& nptr, T endptr, int base) \
{ \
- if (endptr) \
+ if (!endptr) \
{ \
- typedef typename wxStrtoxCharType::Type CharType; \
- return name((CharType)nptr.c_str(), \
- wxStrtoxCharType::AsPointer(endptr), \
- base); \
+ wxStringCharType** p = NULL; \
+ return name(nptr.wx_str(), p, base); \
} \
- wxStringCharType** p = NULL; \
- return name(nptr.wx_str(), p, base); \
+ typedef typename wxStrtoxCharType::Type CharType; \
+ return name((CharType)nptr.c_str(), \
+ wxStrtoxCharType::AsPointer(endptr), \
+ base); \
} \
template \
inline rettype name(const wxCStrData& nptr, T endptr, int base) \
- { return name(nptr.AsString(), endptr, base); }
+ { return name(nptr.AsString(), endptr, base); } \
+ WX_STRTOX_DEFINE_NULLPTR_OVERLOADS(rettype, name)
WX_STRTOX_FUNC(long, wxStrtol, wxCRT_StrtolA, wxCRT_StrtolW)
WX_STRTOX_FUNC(unsigned long, wxStrtoul, wxCRT_StrtoulA, wxCRT_StrtoulW)
diff --git a/interface/wx/aboutdlg.h b/interface/wx/aboutdlg.h
index 36ac2ea5c4..ea7ecdf7e8 100644
--- a/interface/wx/aboutdlg.h
+++ b/interface/wx/aboutdlg.h
@@ -37,7 +37,7 @@
aboutInfo.SetName("MyApp");
aboutInfo.SetVersion(MY_APP_VERSION_STRING);
aboutInfo.SetDescription(_("My wxWidgets-based application!"));
- aboutInfo.SetCopyright("(C) 1992-2019");
+ aboutInfo.SetCopyright("(C) 1992-2020");
aboutInfo.SetWebSite("http://myapp.org");
aboutInfo.AddDeveloper("My Self");
diff --git a/interface/wx/anidecod.h b/interface/wx/anidecod.h
new file mode 100644
index 0000000000..3e727a79ee
--- /dev/null
+++ b/interface/wx/anidecod.h
@@ -0,0 +1,32 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name: wx/anidecod.h
+// Purpose: wxANIDecoder, ANI reader for wxImage and wxAnimation
+// Author: Francesco Montorsi
+// Copyright: (c) 2006 Francesco Montorsi
+// Licence: wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+/**
+ @class wxANIDecoder
+
+ An animation decoder supporting animated cursor (.ani) files.
+*/
+class wxANIDecoder : public wxAnimationDecoder
+{
+public:
+ wxANIDecoder();
+ ~wxANIDecoder();
+
+ virtual bool Load( wxInputStream& stream );
+ virtual wxAnimationDecoder *Clone() const;
+ virtual wxAnimationType GetType() const;
+ virtual bool ConvertToImage(unsigned int frame, wxImage *image) const;
+ virtual wxSize GetFrameSize(unsigned int frame) const;
+ virtual wxPoint GetFramePosition(unsigned int frame) const;
+ virtual wxAnimationDisposal GetDisposalMethod(unsigned int frame) const;
+ virtual long GetDelay(unsigned int frame) const;
+ virtual wxColour GetTransparentColour(unsigned int frame) const;
+
+protected:
+ virtual bool DoCanRead(wxInputStream& stream) const;
+};
diff --git a/interface/wx/animate.h b/interface/wx/animate.h
index 45e5e88adb..17c525a49f 100644
--- a/interface/wx/animate.h
+++ b/interface/wx/animate.h
@@ -39,6 +39,10 @@ enum wxAnimationType
It is only available if @c wxUSE_ANIMATIONCTRL is set to 1 (the default).
+ For the platforms where this control has a native implementation, it may
+ have only limited support for the animation types, see @c
+ wxGenericAnimationCtrl if you need to support all of them.
+
@beginStyleTable
@style{wxAC_DEFAULT_STYLE}
The default style: wxBORDER_NONE.
@@ -103,6 +107,28 @@ public:
long style = wxAC_DEFAULT_STYLE,
const wxString& name = wxAnimationCtrlNameStr);
+ /**
+ Create a new animation object compatible with this control.
+
+ A wxAnimation object created using this function is always compatible
+ with controls of this type, see wxAnimation::IsCompatibleWith().
+
+ @see CreateCompatibleAnimation()
+
+ @since 3.1.4
+ */
+ wxAnimation CreateAnimation() const;
+
+ /**
+ Create a new animation object compatible with this control.
+
+ This method does the same thing as CreateAnimation() but is static,
+ i.e. can be called without creating any wxAnimationCtrl objects.
+
+ @since 3.1.4
+ */
+ static wxAnimation CreateCompatibleAnimation();
+
/**
Returns the animation associated with this control.
*/
@@ -177,22 +203,109 @@ public:
};
-
/**
- @class wxAnimation
+ @class wxGenericAnimationCtrl
- This class encapsulates the concept of a platform-dependent animation.
- An animation is a sequence of frames of the same size.
- Sound is not supported by wxAnimation.
+ Generic implementation of wxAnimationCtrl interface.
- Note that on wxGTK wxAnimation is capable of loading the formats supported
- by the internally-used @c gdk-pixbuf library (typically this means only
- @c wxANIMATION_TYPE_GIF).
- On other platforms wxAnimation is always capable of loading both GIF and ANI
- formats (i.e. both @c wxANIMATION_TYPE_GIF and @c wxANIMATION_TYPE_ANI).
+ If the platform supports a native animation control (currently just wxGTK)
+ then this class implements the same interface internally in wxWidgets.
+ One advantage of using this class instead of the native version is that
+ this version of the control is capable of using animations in other formats
+ than the ones supported by the @c gdk-pixbuf library used by wxGTK, which
+ typically only supports @c wxANIMATION_TYPE_GIF.
+
+ Note that to use this class you need to explicitly include the generic
+ header after including the main one before using it, i.e.
+ @code
+ #include
+ #include
+ @endcode
@library{wxcore}
@category{gdi}
+*/
+
+class wxGenericAnimationCtrl : public wxAnimationCtrl
+{
+public:
+ /**
+ Initializes the object and calls Create() with
+ all the parameters.
+ */
+ wxGenericAnimationCtrl(wxWindow* parent, wxWindowID id,
+ const wxAnimation& anim = wxNullAnimation,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxAC_DEFAULT_STYLE,
+ const wxString& name = wxAnimationCtrlNameStr);
+
+ /**
+ Creates the control with the given @a anim animation.
+
+ After control creation you must explicitly call Play() to start to play
+ the animation. Until that function won't be called, the first frame
+ of the animation is displayed.
+
+ @param parent
+ Parent window, must be non-@NULL.
+ @param id
+ The identifier for the control.
+ @param anim
+ The initial animation shown in the control.
+ @param pos
+ Initial position.
+ @param size
+ Initial size.
+ @param style
+ The window style, see wxAC_* flags.
+ @param name
+ Control name.
+
+ @return @true if the control was successfully created or @false if
+ creation failed.
+ */
+ bool Create(wxWindow* parent, wxWindowID id,
+ const wxAnimation& anim = wxNullAnimation,
+ const wxPoint& pos = wxDefaultPosition,
+ const wxSize& size = wxDefaultSize,
+ long style = wxAC_DEFAULT_STYLE,
+ const wxString& name = wxAnimationCtrlNameStr);
+
+ /**
+ Draw the current frame of the animation into given DC.
+ This is fast as current frame is always cached.
+ */
+ void DrawCurrentFrame(wxDC& dc);
+
+ /**
+ Returns a wxBitmap with the current frame drawn in it.
+ */
+ wxBitmap& GetBackingStore();
+
+ /**
+ This overload of Play() lets you specify if the animation must loop or not
+ */
+ bool Play(bool looped);
+
+ /**
+ Specify whether the animation's background colour is to be shown (the default),
+ or whether the window background should show through
+ */
+ void SetUseWindowBackgroundColour(bool useWinBackground = true);
+
+ /**
+ Returns @c true if the window's background colour is being used.
+ */
+ bool IsUsingWindowBackgroundColour() const;
+};
+
+
+/**
+ @class wxAnimation
+
+ The @c wxAnimation class handles the interface between the animation
+ control and the details of the animation image or data.
@stdobjects
::wxNullAnimation
@@ -203,45 +316,56 @@ class wxAnimation : public wxObject
{
public:
/**
- Default ctor.
- */
+ Constructs a new empty animation object.
+
+ Call Load() to initialize it.
+
+ @see wxAnimationCtrl::CreateAnimation()
+ */
wxAnimation();
/**
- Copy ctor.
- */
- wxAnimation(const wxAnimation& anim);
-
- /**
- Loads an animation from a file.
+ Constructs a new animation object and load the animation data from the
+ given filename.
@param name
- The name of the file to load.
+ A filename.
@param type
- See LoadFile() for more info.
- */
- wxAnimation(const wxString& name,
- wxAnimationType type = wxANIMATION_TYPE_ANY);
+ One of the ::wxAnimationType values; wxANIMATION_TYPE_ANY
+ means that the function should try to autodetect the filetype.
+
+ @see wxAnimationCtrl::CreateAnimation()
+ */
+ wxAnimation(const wxString &name, wxAnimationType type = wxANIMATION_TYPE_ANY);
/**
- Destructor.
- See @ref overview_refcount_destruct for more info.
+ Copy constructor.
*/
- virtual ~wxAnimation();
+ wxAnimation(const wxAnimation& other);
+
+ /**
+ Returns @true if animation data is present.
+ */
+ bool IsOk() const;
+
+ /**
+ Returns @true if animation can be used with controls of the given type.
+
+ This function checks if this animation object can be used with
+ wxAnimationCtrl of particular type. This will be always the case for
+ the platforms where only a single wxAnimationCtrl implementation is
+ available, but not necessarily under e.g. wxGTK where both native (but
+ limited) GTK implementation and generic implementation can be used.
+
+ @since 3.1.4
+ */
+ bool IsCompatibleWith(wxClassInfo* ci) const;
/**
Returns the delay for the i-th frame in milliseconds.
If @c -1 is returned the frame is to be displayed forever.
*/
- virtual int GetDelay(unsigned int i) const;
-
- /**
- Returns the i-th frame as a wxImage.
-
- This method is not implemented in the native wxGTK implementation of
- this class and always returns an invalid image there.
- */
- virtual wxImage GetFrame(unsigned int i) const;
+ int GetDelay(unsigned int frame) const;
/**
Returns the number of frames for this animation.
@@ -249,17 +373,33 @@ public:
This method is not implemented in the native wxGTK implementation of
this class and always returns 0 there.
*/
- virtual unsigned int GetFrameCount() const;
+ unsigned int GetFrameCount() const;
/**
- Returns the size of the animation.
+ Returns the i-th frame as a wxImage.
+
+ This method is not implemented in the native wxGTK implementation of
+ this class and always returns an invalid image there.
*/
- virtual wxSize GetSize() const;
+ wxImage GetFrame(unsigned int frame) const;
/**
- Returns @true if animation data is present.
+ Returns the size of the animation.
*/
- virtual bool IsOk() const;
+ wxSize GetSize() const;
+
+ /**
+ Loads an animation from a file.
+
+ @param name
+ A filename.
+ @param type
+ One of the ::wxAnimationType values; wxANIMATION_TYPE_ANY
+ means that the function should try to autodetect the filetype.
+
+ @return @true if the operation succeeded, @false otherwise.
+ */
+ bool LoadFile(const wxString& name, wxAnimationType type = wxANIMATION_TYPE_ANY);
/**
Loads an animation from the given stream.
@@ -273,30 +413,45 @@ public:
@return @true if the operation succeeded, @false otherwise.
*/
- virtual bool Load(wxInputStream& stream,
- wxAnimationType type = wxANIMATION_TYPE_ANY);
+ bool Load(wxInputStream& stream, wxAnimationType type = wxANIMATION_TYPE_ANY);
+
/**
- Loads an animation from a file.
-
- @param name
- A filename.
- @param type
- One of the ::wxAnimationType values; wxANIMATION_TYPE_ANY
- means that the function should try to autodetect the filetype.
-
- @return @true if the operation succeeded, @false otherwise.
- */
- virtual bool LoadFile(const wxString& name,
- wxAnimationType type = wxANIMATION_TYPE_ANY);
+ Returns the list of animation decoders used by the generic animation
+ and @c wxGenericAnimationCtrl.
+ */
+ static inline wxAnimationDecoderList& GetHandlers();
/**
- Assignment operator, using @ref overview_refcount "reference counting".
+ Add a new decoder to the list of animation decoders.
+ */
+ static void AddHandler(wxAnimationDecoder *handler);
+
+ /**
+ Insert a new decoder to the front of the list of animation decoders.
+ */
+ static void InsertHandler(wxAnimationDecoder *handler);
+
+ /**
+ Search for an animation decoder by type.
+ */
+ static const wxAnimationDecoder *FindHandler( wxAnimationType animType );
+
+ /**
+ Load the stock animation decoders (currently GIF and ANI) into the list
+ of decoders. This is called automatically at program startup.
*/
- wxAnimation& operator =(const wxAnimation& brush);
+ static void InitStandardHandlers();
+
+ /**
+ Clear out the animation decoder list. This is called automatically at
+ program shutdown.
+ */
+ static void CleanUpHandlers();
};
+
// ============================================================================
// Global functions/macros
// ============================================================================
@@ -305,4 +460,3 @@ public:
An empty animation object.
*/
wxAnimation wxNullAnimation;
-
diff --git a/interface/wx/animdecod.h b/interface/wx/animdecod.h
new file mode 100644
index 0000000000..f5175d6e24
--- /dev/null
+++ b/interface/wx/animdecod.h
@@ -0,0 +1,111 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name: wx/animdecod.h
+// Purpose: wxAnimationDecoder
+// Author: Francesco Montorsi
+// Copyright: (c) 2006 Francesco Montorsi
+// Licence: wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+enum wxAnimationDisposal
+{
+ /// No disposal specified. The decoder is not required to take any action.
+ wxANIM_UNSPECIFIED = -1,
+
+ /// Do not dispose. The graphic is to be left in place.
+ wxANIM_DONOTREMOVE = 0,
+
+ /// Restore to background color. The area used by the graphic must be
+ /// restored to the background color.
+ wxANIM_TOBACKGROUND = 1,
+
+ /// Restore to previous. The decoder is required to restore the area
+ /// overwritten by the graphic with what was there prior to rendering the graphic.
+ wxANIM_TOPREVIOUS = 2
+};
+
+
+
+/**
+ @class wxAnimationDecoder
+
+ wxAnimationDecoder is used by @c wxAnimation for loading frames and other
+ information for the animation from the animation image file.
+
+ */
+class wxAnimationDecoder : public wxObjectRefData
+{
+public:
+ wxAnimationDecoder();
+
+ /**
+ Load the animation image frames from the given stream.
+ */
+ virtual bool Load( wxInputStream& stream ) = 0;
+
+ /**
+ Returns @true if this decoder supports loading from the given stream.
+ */
+ bool CanRead( wxInputStream& stream ) const;
+
+ /**
+ Create a copy of this decoder.
+ */
+ virtual wxAnimationDecoder *Clone() const = 0;
+
+ /**
+ Return the animation type this decoder implements.
+ */
+ virtual wxAnimationType GetType() const = 0;
+
+ /**
+ Convert given frame to @c wxImage.
+ */
+ virtual bool ConvertToImage(unsigned int frame, wxImage *image) const = 0;
+
+
+ /*
+ Get the size of the given animation frame.
+
+ It's possible that not all frames are of the same size; e.g. GIF allows
+ to specify that between two frames only a smaller portion of the entire
+ animation has changed.
+ */
+ virtual wxSize GetFrameSize(unsigned int frame) const = 0;
+
+ /*
+ Returns the position of the frame, in case it's not as big as the animation size,
+ or @c wxPoint(0,0) otherwise.
+ */
+ virtual wxPoint GetFramePosition(unsigned int frame) const = 0;
+
+ /**
+ What should be done after displaying this frame.
+ */
+ virtual wxAnimationDisposal GetDisposalMethod(unsigned int frame) const = 0;
+
+ /**
+ Return the number of milliseconds this frame should be displayed.
+ If -1 is returned then the frame must be displayed forever.
+ */
+ virtual long GetDelay(unsigned int frame) const = 0;
+
+ /**
+ The transparent colour for this frame, if any, or @c wxNullColour.
+ */
+ virtual wxColour GetTransparentColour(unsigned int frame) const = 0;
+
+ wxSize GetAnimationSize() const;
+ wxColour GetBackgroundColour() const;
+ unsigned int GetFrameCount() const;
+
+protected:
+ /**
+ Checks the signature of the data in the given stream and returns true if it
+ appears to be a valid animation format recognized by the animation decoder;
+ this function should modify the stream current position without taking care
+ of restoring it since @c CanRead() will do it.
+ */
+ virtual bool DoCanRead(wxInputStream& stream) const = 0;
+};
+
+
diff --git a/interface/wx/aui/auibar.h b/interface/wx/aui/auibar.h
index 899b956ff2..f7dee0092f 100644
--- a/interface/wx/aui/auibar.h
+++ b/interface/wx/aui/auibar.h
@@ -681,13 +681,13 @@ public:
bool SetFont(const wxFont& font);
- wxAuiToolBarItem* AddTool(int tool_id,
+ wxAuiToolBarItem* AddTool(int toolId,
const wxString& label,
const wxBitmap& bitmap,
const wxString& short_help_string = wxEmptyString,
wxItemKind kind = wxITEM_NORMAL);
- wxAuiToolBarItem* AddTool(int tool_id,
+ wxAuiToolBarItem* AddTool(int toolId,
const wxString& label,
const wxBitmap& bitmap,
const wxBitmap& disabled_bitmap,
@@ -696,7 +696,7 @@ public:
const wxString& long_help_string,
wxObject* client_data);
- wxAuiToolBarItem* AddTool(int tool_id,
+ wxAuiToolBarItem* AddTool(int toolId,
const wxBitmap& bitmap,
const wxBitmap& disabled_bitmap,
bool toggle = false,
@@ -704,7 +704,7 @@ public:
const wxString& short_help_string = wxEmptyString,
const wxString& long_help_string = wxEmptyString);
- wxAuiToolBarItem* AddLabel(int tool_id,
+ wxAuiToolBarItem* AddLabel(int toolId,
const wxString& label = wxEmptyString,
const int width = -1);
wxAuiToolBarItem* AddControl(wxControl* control,
@@ -718,19 +718,67 @@ public:
wxControl* FindControl(int window_id);
wxAuiToolBarItem* FindToolByPosition(wxCoord x, wxCoord y) const;
wxAuiToolBarItem* FindToolByIndex(int idx) const;
- wxAuiToolBarItem* FindTool(int tool_id) const;
+ wxAuiToolBarItem* FindTool(int toolId) const;
void ClearTools();
void Clear();
- bool DeleteTool(int tool_id);
- bool DeleteByIndex(int tool_id);
+
+ /**
+ Destroys the tool with the given ID and its associated window, if any.
+
+ @param toolId ID of a previously added tool.
+ @return @true if the tool was destroyed or @false otherwise, e.g. if
+ the tool with the given ID was not found.
+
+ @since 3.1.4
+ */
+ bool DestroyTool(int toolId);
+
+ /**
+ Destroys the tool at the given position and its associated window, if
+ any.
+
+ @param idx The index, or position, of a previously added tool.
+ @return @true if the tool was destroyed or @false otherwise, e.g. if
+ the provided index is out of range.
+ */
+ bool DestroyToolByIndex(int idx);
+
+ /**
+ Removes the tool with the given ID from the toolbar.
+
+ Note that if this tool was added by AddControl(), the associated
+ control is @e not deleted and must either be reused (e.g. by
+ reparenting it under a different window) or destroyed by caller.
+ If this behaviour is unwanted, prefer using DestroyTool() instead.
+
+ @param toolId ID of a previously added tool.
+ @return @true if the tool was removed or @false otherwise, e.g. if the
+ tool with the given ID was not found.
+ */
+ bool DeleteTool(int toolId);
+
+ /**
+ Removes the tool at the given position from the toolbar.
+
+ Note that if this tool was added by AddControl(), the associated
+ control is @e not deleted and must either be reused (e.g. by
+ reparenting it under a different window) or destroyed by caller.
+ If this behaviour is unwanted, prefer using DestroyToolByIndex()
+ instead.
+
+ @param idx The index, or position, of a previously added tool.
+ @return @true if the tool was removed or @false otherwise, e.g. if the
+ provided index is out of range.
+ */
+ bool DeleteByIndex(int idx);
size_t GetToolCount() const;
- int GetToolPos(int tool_id) const;
- int GetToolIndex(int tool_id) const;
- bool GetToolFits(int tool_id) const;
- wxRect GetToolRect(int tool_id) const;
- bool GetToolFitsByIndex(int tool_id) const;
+ int GetToolPos(int toolId) const;
+ int GetToolIndex(int toolId) const;
+ bool GetToolFits(int toolId) const;
+ wxRect GetToolRect(int toolId) const;
+ bool GetToolFitsByIndex(int toolId) const;
bool GetToolBarFits() const;
void SetMargins(const wxSize& size);
@@ -746,11 +794,11 @@ public:
bool GetGripperVisible() const;
void SetGripperVisible(bool visible);
- void ToggleTool(int tool_id, bool state);
- bool GetToolToggled(int tool_id) const;
+ void ToggleTool(int toolId, bool state);
+ bool GetToolToggled(int toolId) const;
- void EnableTool(int tool_id, bool state);
- bool GetToolEnabled(int tool_id) const;
+ void EnableTool(int toolId, bool state);
+ bool GetToolEnabled(int toolId) const;
/**
Set whether the specified toolbar item has a drop down button.
@@ -759,7 +807,7 @@ public:
@see wxAuiToolBarItem::SetHasDropDown()
*/
- void SetToolDropDown(int tool_id, bool dropdown);
+ void SetToolDropDown(int toolId, bool dropdown);
/**
Returns whether the specified toolbar item has an associated drop down
@@ -767,7 +815,7 @@ public:
@see wxAuiToolBarItem::HasDropDown()
*/
- bool GetToolDropDown(int tool_id) const;
+ bool GetToolDropDown(int toolId) const;
void SetToolBorderPadding(int padding);
int GetToolBorderPadding() const;
@@ -778,26 +826,26 @@ public:
void SetToolPacking(int packing);
int GetToolPacking() const;
- void SetToolProportion(int tool_id, int proportion);
- int GetToolProportion(int tool_id) const;
+ void SetToolProportion(int toolId, int proportion);
+ int GetToolProportion(int toolId) const;
void SetToolSeparation(int separation);
int GetToolSeparation() const;
- void SetToolSticky(int tool_id, bool sticky);
- bool GetToolSticky(int tool_id) const;
+ void SetToolSticky(int toolId, bool sticky);
+ bool GetToolSticky(int toolId) const;
- wxString GetToolLabel(int tool_id) const;
- void SetToolLabel(int tool_id, const wxString& label);
+ wxString GetToolLabel(int toolId) const;
+ void SetToolLabel(int toolId, const wxString& label);
- wxBitmap GetToolBitmap(int tool_id) const;
- void SetToolBitmap(int tool_id, const wxBitmap& bitmap);
+ wxBitmap GetToolBitmap(int toolId) const;
+ void SetToolBitmap(int toolId, const wxBitmap& bitmap);
- wxString GetToolShortHelp(int tool_id) const;
- void SetToolShortHelp(int tool_id, const wxString& help_string);
+ wxString GetToolShortHelp(int toolId) const;
+ void SetToolShortHelp(int toolId, const wxString& help_string);
- wxString GetToolLongHelp(int tool_id) const;
- void SetToolLongHelp(int tool_id, const wxString& help_string);
+ wxString GetToolLongHelp(int toolId) const;
+ void SetToolLongHelp(int toolId, const wxString& help_string);
void SetCustomOverflowItems(const wxAuiToolBarItemArray& prepend,
const wxAuiToolBarItemArray& append);
diff --git a/interface/wx/aui/framemanager.h b/interface/wx/aui/framemanager.h
index 9eff390618..c45d6b37a7 100644
--- a/interface/wx/aui/framemanager.h
+++ b/interface/wx/aui/framemanager.h
@@ -1004,9 +1004,6 @@ public:
/// proportion while docked
int dock_proportion;
- /// buttons on the pane
- wxAuiPaneButtonArray buttons;
-
/// current rectangle (populated by wxAUI)
wxRect rect;
@@ -1175,16 +1172,8 @@ public:
int orientation; // orientation (either wxHORIZONTAL or wxVERTICAL)
wxAuiDockInfo* dock; // which dock the item is associated with
wxAuiPaneInfo* pane; // which pane the item is associated with
- wxAuiPaneButton* button; // which pane button the item is associated with
+ int button; // which pane button the item is associated with
wxSizer* cont_sizer; // the part's containing sizer
wxSizerItem* sizer_item; // the sizer item of the part
wxRect rect; // client coord rectangle of the part itself
};
-
-
-
-class wxAuiPaneButton
-{
-public:
- int button_id; // id of the button (e.g. buttonClose)
-};
diff --git a/interface/wx/dcmemory.h b/interface/wx/dcmemory.h
index 33691620ea..19e3a78e4a 100644
--- a/interface/wx/dcmemory.h
+++ b/interface/wx/dcmemory.h
@@ -109,5 +109,12 @@ public:
safely.
*/
void SelectObjectAsSource(const wxBitmap& bitmap);
+
+ /**
+ Get the selected bitmap.
+ */
+ const wxBitmap& GetSelectedBitmap() const;
+ wxBitmap& GetSelectedBitmap();
+
};
diff --git a/interface/wx/event.h b/interface/wx/event.h
index c02abdff1c..7f9c0e9d66 100644
--- a/interface/wx/event.h
+++ b/interface/wx/event.h
@@ -2215,9 +2215,14 @@ class wxPaintEvent : public wxEvent
{
public:
/**
- Constructor.
+ Constructor for exclusive use of wxWidgets itself.
+
+ Note that the objects of this class can @em not be created from
+ application code, they're only created by the library itself. If you
+ need a window to be repainted, use wxWindow::Refresh() instead of
+ trying to manually create an event of this class.
*/
- wxPaintEvent(int id = 0);
+ explicit wxPaintEvent(wxWindow* window);
};
diff --git a/interface/wx/ffile.h b/interface/wx/ffile.h
index 90cc9d652b..54ed7ca759 100644
--- a/interface/wx/ffile.h
+++ b/interface/wx/ffile.h
@@ -1,11 +1,151 @@
/////////////////////////////////////////////////////////////////////////////
// Name: ffile.h
-// Purpose: interface of wxFFile
+// Purpose: interface of wxTempFFile, wxFFile
// Author: wxWidgets team
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
+/**
+ @class wxTempFFile
+
+ wxTempFFile provides a relatively safe way to replace the contents of the
+ existing file. The name is explained by the fact that it may be also used as
+ just a temporary file if you don't replace the old file contents.
+
+ Usually, when a program replaces the contents of some file it first opens it for
+ writing, thus losing all of the old data and then starts recreating it.
+ This approach is not very safe because during the regeneration of the file bad
+ things may happen: the program may find that there is an internal error preventing
+ it from completing file generation, the user may interrupt it (especially if file
+ generation takes long time) and, finally, any other external interrupts (power
+ supply failure or a disk error) will leave you without either the original file
+ or the new one.
+
+ wxTempFFile addresses this problem by creating a temporary file which is meant to
+ replace the original file - but only after it is fully written. So, if the user
+ interrupts the program during the file generation, the old file won't be lost.
+ Also, if the program discovers itself that it doesn't want to replace the old
+ file there is no problem - in fact, wxTempFFile will @b not replace the old
+ file by default, you should explicitly call wxTempFFile::Commit() to do it.
+ Calling wxTempFFile::Discard() explicitly discards any modifications: it
+ closes and deletes the temporary file and leaves the original file unchanged.
+ If you call neither Commit() nor Discard(), the destructor will
+ call Discard() automatically.
+
+ To summarize: if you want to replace another file, create an instance of
+ wxTempFFile passing the name of the file to be replaced to the constructor.
+ (You may also use default constructor and pass the file name to wxTempFFile::Open.)
+ Then you can write to wxTempFFile using wxFFile-like functions and later call
+ wxTempFFile::Commit() to replace the old file (and close this one) or call
+ wxTempFFile::Discard() to cancel the modifications.
+
+ @since 3.1.4
+
+ @library{wxbase}
+ @category{file}
+*/
+class wxTempFFile
+{
+public:
+ /**
+ Default constructor doesn't do anything.
+
+ Call Open() later.
+ */
+ wxTempFFile();
+
+ /**
+ Associates wxTempFFile with the file to be replaced and opens it.
+
+ @warning
+ You should use IsOpened() to verify that the constructor succeeded.
+ */
+ explicit wxTempFFile(const wxString& strName);
+
+ /**
+ Destructor calls Discard() if temporary file is still open.
+ */
+ ~wxTempFFile();
+
+ /**
+ Validate changes: deletes the old file of name m_strName and renames the new
+ file to the old name. Returns @true if both actions succeeded.
+
+ If @false is returned it may unfortunately mean two quite different things:
+ either that the old file couldn't be deleted or that the new file
+ couldn't be renamed to the old name.
+ */
+ bool Commit();
+
+ /**
+ Discard changes: the old file contents are not changed, the temporary
+ file is deleted.
+ */
+ void Discard();
+
+ /**
+ Flush the data written to the file to disk.
+
+ This simply calls wxFFile::Flush() for the underlying file and may be
+ necessary with file systems such as XFS and Ext4 under Linux. Calling
+ this function may however have serious performance implications and
+ also is not necessary with many other file systems so it is not done by
+ default -- but you can call it before calling Commit() to absolutely
+ ensure that the data was indeed written to the disk correctly.
+ */
+ bool Flush();
+
+ /**
+ Returns @true if the file was successfully opened.
+ */
+ bool IsOpened() const;
+
+ /**
+ Returns the length of the file.
+
+ Returns ::wxInvalidOffset if the length couldn't be determined.
+
+ Please also note that there is @e no guarantee that reading that many
+ bytes from the file will always succeed. While this is true for regular
+ files (unless the file size has been changed by another process in
+ between Length() and Read() calls), some special files, such as most
+ files under @c /sys or @c /proc directories under Linux, don't actually
+ contain as much data as their size indicates.
+ */
+ wxFileOffset Length() const;
+
+ /**
+ Open the temporary file, returns @true on success, @false if an error
+ occurred.
+ @a strName is the name of file to be replaced. The temporary file is always
+ created in the directory where @a strName is. In particular, if @a strName
+ doesn't include the path, it is created in the current directory and the
+ program should have write access to it for the function to succeed.
+ */
+ bool Open(const wxString& strName);
+
+ /**
+ Seeks to the specified position and returns @true on success.
+ */
+ bool Seek(wxFileOffset ofs, wxSeekMode mode = wxFromStart);
+
+ /**
+ Returns the current position.
+ */
+ wxFileOffset Tell() const;
+
+ /**
+ Writes the contents of the string to the file, returns @true on success.
+
+ The second argument is only meaningful in Unicode build of wxWidgets when
+ @a conv is used to convert @a str to multibyte representation.
+ */
+ bool Write(const wxString& str, const wxMBConv& conv = wxMBConvUTF8());
+};
+
+
+
/**
@class wxFFile
diff --git a/interface/wx/file.h b/interface/wx/file.h
index 4e354185a0..887cce2f01 100644
--- a/interface/wx/file.h
+++ b/interface/wx/file.h
@@ -46,13 +46,20 @@
class wxTempFile
{
public:
+ /**
+ Default constructor doesn't do anything.
+
+ Call Open() later.
+ */
+ wxTempFile();
+
/**
Associates wxTempFile with the file to be replaced and opens it.
@warning
You should use IsOpened() to verify that the constructor succeeded.
*/
- wxTempFile(const wxString& strName);
+ explicit wxTempFile(const wxString& strName);
/**
Destructor calls Discard() if temporary file is still open.
@@ -450,7 +457,7 @@ public:
to write data with embedded @c NULs to the file you should use the other
Write() overload.
*/
- bool Write(const wxString& s, const wxMBConv& conv = wxConvUTF8);
+ bool Write(const wxString& s, const wxMBConv& conv = wxConvAuto());
/**
Returns the file descriptor associated with the file.
diff --git a/interface/wx/generic/aboutdlgg.h b/interface/wx/generic/aboutdlgg.h
index e65a056df9..f20ff007a4 100644
--- a/interface/wx/generic/aboutdlgg.h
+++ b/interface/wx/generic/aboutdlgg.h
@@ -34,7 +34,7 @@
aboutInfo.SetName("MyApp");
aboutInfo.SetVersion(MY_APP_VERSION_STRING);
aboutInfo.SetDescription(_("My wxWidgets-based application!"));
- aboutInfo.SetCopyright("(C) 1992-2019");
+ aboutInfo.SetCopyright("(C) 1992-2020");
aboutInfo.SetWebSite("http://myapp.org");
aboutInfo.AddDeveloper("My Self");
diff --git a/interface/wx/gifdecod.h b/interface/wx/gifdecod.h
new file mode 100644
index 0000000000..22c73c73a9
--- /dev/null
+++ b/interface/wx/gifdecod.h
@@ -0,0 +1,34 @@
+/////////////////////////////////////////////////////////////////////////////
+// Name: wx/gifdecod.h
+// Purpose: wxGIFDecoder, GIF reader for wxImage and wxAnimation
+// Author: Guillermo Rodriguez Garcia
+// Version: 3.02
+// Copyright: (c) 1999 Guillermo Rodriguez Garcia
+// Licence: wxWindows licence
+/////////////////////////////////////////////////////////////////////////////
+
+/**
+ @class wxGIFDecoder
+
+ An animation decoder supporting animated GIF files.
+*/
+class wxGIFDecoder : public wxAnimationDecoder
+{
+public:
+ wxGIFDecoder();
+ ~wxGIFDecoder();
+
+ virtual bool Load( wxInputStream& stream );
+ virtual wxAnimationDecoder *Clone() const;
+ virtual wxAnimationType GetType() const;
+ virtual bool ConvertToImage(unsigned int frame, wxImage *image) const;
+ virtual wxSize GetFrameSize(unsigned int frame) const;
+ virtual wxPoint GetFramePosition(unsigned int frame) const;
+ virtual wxAnimationDisposal GetDisposalMethod(unsigned int frame) const;
+ virtual long GetDelay(unsigned int frame) const;
+ virtual wxColour GetTransparentColour(unsigned int frame) const;
+
+protected:
+ virtual bool DoCanRead(wxInputStream& stream) const;
+};
+
diff --git a/interface/wx/grid.h b/interface/wx/grid.h
index ffba02af79..dfbdb73740 100644
--- a/interface/wx/grid.h
+++ b/interface/wx/grid.h
@@ -95,6 +95,20 @@ protected:
virtual ~wxGridCellRenderer();
};
+/**
+ Smart pointer wrapping wxGridCellRenderer.
+
+ wxGridCellRendererPtr takes ownership of wxGridCellRenderer passed to it on
+ construction and calls DecRef() on it automatically when it is destroyed.
+ It also provides transparent access to wxGridCellRenderer methods by allowing
+ to use objects of this class as if they were wxGridCellRenderer pointers.
+
+ @since 3.1.4
+
+ @category{grid}
+*/
+typedef wxObjectDataPtr wxGridCellRendererPtr;
+
/**
@class wxGridCellAutoWrapStringRenderer
@@ -541,6 +555,16 @@ public:
*/
virtual void StartingKey(wxKeyEvent& event);
+ /**
+ Return @true to allow the given key to start editing: the base class
+ version only checks that the event has no modifiers.
+
+ If the key is F2 (special), editing will always start and this
+ method will not be called at all (but StartingKey() will)
+ */
+ virtual bool IsAcceptedKey(wxKeyEvent& event);
+
+
/**
Returns the value currently in the editor control.
*/
@@ -591,6 +615,20 @@ protected:
virtual ~wxGridCellEditor();
};
+/**
+ Smart pointer wrapping wxGridCellEditor.
+
+ wxGridCellEditorPtr takes ownership of wxGridCellEditor passed to it on
+ construction and calls DecRef() on it automatically when it is destroyed.
+ It also provides transparent access to wxGridCellEditor methods by allowing
+ to use objects of this class as if they were wxGridCellEditor pointers.
+
+ @since 3.1.4
+
+ @category{grid}
+*/
+typedef wxObjectDataPtr wxGridCellEditorPtr;
+
/**
@class wxGridCellAutoWrapStringEditor
@@ -976,6 +1014,10 @@ public:
changing their attributes from the defaults. An object of this class may be
returned by wxGridTableBase::GetAttr().
+ Note that objects of this class are reference-counted and it's recommended
+ to use wxGridCellAttrPtr smart pointer class when working with them to
+ avoid memory leaks.
+
@library{wxcore}
@category{grid}
*/
@@ -1054,9 +1096,22 @@ public:
/**
Returns the cell editor.
+
+ The caller is responsible for calling DecRef() on the returned pointer,
+ use GetEditorPtr() to do it automatically.
*/
wxGridCellEditor* GetEditor(const wxGrid* grid, int row, int col) const;
+ /**
+ Returns the cell editor.
+
+ This method is identical to GetEditor(), but returns a smart pointer,
+ which frees the caller from the need to call DecRef() manually.
+
+ @since 3.1.4
+ */
+ wxGridCellEditorPtr GetEditorPtr(const wxGrid* grid, int row, int col) const;
+
/**
Returns the font.
*/
@@ -1087,9 +1142,22 @@ public:
/**
Returns the cell renderer.
+
+ The caller is responsible for calling DecRef() on the returned pointer,
+ use GetRendererPtr() to do it automatically.
*/
wxGridCellRenderer* GetRenderer(const wxGrid* grid, int row, int col) const;
+ /**
+ Returns the cell editor.
+
+ This method is identical to GetRenderer(), but returns a smart pointer,
+ which frees the caller from the need to call DecRef() manually.
+
+ @since 3.1.4
+ */
+ wxGridCellRendererPtr GetRendererPtr(const wxGrid* grid, int row, int col) const;
+
/**
Returns the text colour.
*/
@@ -1234,6 +1302,18 @@ public:
*/
bool GetOverflow() const;
+ /**
+ Returns @true if the cell will draw an overflowed text into the
+ neighbouring cells.
+
+ Note that only left aligned cells currenty can overflow. It means that
+ GetFitMode().IsOverflow() should returns true and GetAlignment should
+ returns wxALIGN_LEFT for hAlign parameter.
+
+ @since 3.1.4
+ */
+ bool CanOverflow() const;
+
wxAttrKind GetKind();
@@ -1245,6 +1325,20 @@ protected:
virtual ~wxGridCellAttr();
};
+/**
+ Smart pointer wrapping wxGridCellAttr.
+
+ wxGridCellAttrPtr takes ownership of wxGridCellAttr passed to it on
+ construction and calls DecRef() on it automatically when it is destroyed.
+ It also provides transparent access to wxGridCellAttr methods by allowing
+ to use objects of this class as if they were wxGridCellAttr pointers.
+
+ @since 3.1.4
+
+ @category{grid}
+*/
+typedef wxObjectDataPtr wxGridCellAttrPtr;
+
/**
Base class for header cells renderers.
@@ -1447,7 +1541,7 @@ public:
the cell attribute having the highest precedence.
Notice that the caller must call DecRef() on the returned pointer if it
- is non-@NULL.
+ is non-@NULL. GetAttrPtr() method can be used to do this automatically.
@param row
The row of the cell.
@@ -1462,6 +1556,17 @@ public:
virtual wxGridCellAttr *GetAttr(int row, int col,
wxGridCellAttr::wxAttrKind kind) const;
+ /**
+ Get the attribute to use for the specified cell.
+
+ This method is identical to GetAttr(), but returns a smart pointer,
+ which frees the caller from the need to call DecRef() manually.
+
+ @since 3.1.4
+ */
+ wxGridCellAttrPtr GetAttrPtr(int row, int col,
+ wxGridCellAttr::wxAttrKind kind) const;
+
/*!
@name Setting attributes.
@@ -2109,10 +2214,24 @@ public:
By default this function is simply forwarded to
wxGridCellAttrProvider::GetAttr() but it may be overridden to handle
attributes directly in the table.
+
+ Prefer to use GetAttrPtr() to avoid the need to call DecRef() on the
+ returned pointer manually.
*/
virtual wxGridCellAttr *GetAttr(int row, int col,
wxGridCellAttr::wxAttrKind kind);
+ /**
+ Return the attribute for the given cell.
+
+ This method is identical to GetAttr(), but returns a smart pointer,
+ which frees the caller from the need to call DecRef() manually.
+
+ @since 3.1.4
+ */
+ wxGridCellAttrPtr GetAttrPtr(int row, int col,
+ wxGridCellAttr::wxAttrKind kind);
+
/**
Set attribute of the specified cell.
@@ -2431,14 +2550,14 @@ public:
Default constructor.
You must call Create() to really create the grid window and also call
- CreateGrid() or SetTable() to initialize the grid contents.
+ CreateGrid() or SetTable() or AssignTable() to initialize its contents.
*/
wxGrid();
/**
Constructor creating the grid window.
- You must call either CreateGrid() or SetTable() to initialize the grid
- contents before using it.
+ You must call either CreateGrid() or SetTable() or AssignTable() to
+ initialize the grid contents before using it.
*/
wxGrid(wxWindow* parent, wxWindowID id,
const wxPoint& pos = wxDefaultPosition,
@@ -2459,8 +2578,8 @@ public:
Creates the grid window for an object initialized using the default
constructor.
- You must call either CreateGrid() or SetTable() to initialize the grid
- contents before using it.
+ You must call either CreateGrid() or SetTable() or AssignTable() to
+ initialize the grid contents before using it.
*/
bool Create(wxWindow* parent, wxWindowID id,
const wxPoint& pos = wxDefaultPosition,
@@ -2477,7 +2596,8 @@ public:
For applications with more complex data types or relationships, or for
dealing with very large datasets, you should derive your own grid table
- class and pass a table object to the grid with SetTable().
+ class and pass a table object to the grid with SetTable() or
+ AssignTable().
*/
bool CreateGrid(int numRows, int numCols,
wxGridSelectionModes selmode = wxGridSelectCells);
@@ -2492,10 +2612,34 @@ public:
Use this function instead of CreateGrid() when your application
involves complex or non-string data or data sets that are too large to
fit wholly in memory.
+
+ When the custom table should be owned by the grid, consider using the
+ simpler AssignTable() function instead of this one with @true value of
+ @a takeOwnership parameter.
*/
bool SetTable(wxGridTableBase* table, bool takeOwnership = false,
wxGridSelectionModes selmode = wxGridSelectCells);
+ /**
+ Assigns a pointer to a custom grid table to be used by the grid.
+
+ This function is identical to SetTable() with @c takeOwnership
+ parameter set to @true, i.e. it simply always takes the ownership of
+ the passed in pointer. This makes it simpler to use than SetTable() in
+ the common case when the table should be owned by the grid object.
+
+ Note that this function should be called at most once and can't be used
+ to change the table used by the grid later on or reset it: if such
+ extra flexibility is needed, use SetTable() directly.
+
+ @since 3.1.4
+
+ @param table The heap-allocated pointer to the table.
+ @param selmode Selection mode to use.
+ */
+ void AssignTable( wxGridTableBase *table,
+ wxGridSelectionModes selmode = wxGridSelectCells);
+
/**
Receive and handle a message from the table.
*/
@@ -4882,7 +5026,7 @@ public:
(yet) matching calls to EndBatch(). While the grid's batch count is
greater than zero the display will not be updated.
*/
- int GetBatchCount();
+ int GetBatchCount() const;
/**
Returns the total number of grid columns.
@@ -4927,10 +5071,24 @@ public:
attribute is created, associated with the cell and returned. In any
case the caller must call DecRef() on the returned pointer.
+ Prefer to use GetOrCreateCellAttrPtr() to avoid the need to call
+ DecRef() on the returned pointer.
+
This function may only be called if CanHaveAttributes() returns @true.
*/
wxGridCellAttr *GetOrCreateCellAttr(int row, int col) const;
+ /**
+ Returns the attribute for the given cell creating one if necessary.
+
+ This method is identical to GetOrCreateCellAttr(), but returns a smart
+ pointer, which frees the caller from the need to call DecRef()
+ manually.
+
+ @since 3.1.4
+ */
+ wxGridCellAttrPtr GetOrCreateCellAttrPtr(int row, int col) const;
+
/**
Returns a base pointer to the current table object.
@@ -4948,7 +5106,7 @@ public:
successful the table notifies the grid and the grid updates the
display. For a default grid (one where you have called CreateGrid())
this process is automatic. If you are using a custom grid table
- (specified with SetTable()) then you must override
+ (specified with SetTable() or AssignTable()) then you must override
wxGridTableBase::InsertCols() in your derived table class.
@param pos
@@ -5250,9 +5408,18 @@ public:
This function can only be called if UseNativeColHeader() had been
called.
+
+ @see IsUsingNativeHeader()
*/
wxHeaderCtrl *GetGridColHeader() const;
+ /**
+ Return true if native header control is currently being used.
+
+ @since 3.1.4
+ */
+ bool IsUsingNativeHeader() const;
+
//@}
diff --git a/interface/wx/object.h b/interface/wx/object.h
index 3497e94eb7..653fda5942 100644
--- a/interface/wx/object.h
+++ b/interface/wx/object.h
@@ -608,6 +608,21 @@ public:
*/
void reset(T *ptr);
+ /**
+ Release the owned pointer, making caller responsible for decrementing
+ its reference count.
+
+ This method should be used only for interoperating with the existing
+ code working with raw pointers, typically when returning a raw pointer
+ from a function.
+
+ After calling this function, this object becomes invalid, i.e. it
+ doesn't hold any valid pointer value any more.
+
+ @since 3.1.4
+ */
+ T* release();
+
/**
Conversion to a boolean expression (in a variant which is not
convertable to anything but a boolean expression).
diff --git a/interface/wx/propgrid/editors.h b/interface/wx/propgrid/editors.h
index d31e794116..715cef2dc3 100644
--- a/interface/wx/propgrid/editors.h
+++ b/interface/wx/propgrid/editors.h
@@ -14,14 +14,18 @@
class wxPGWindowList
{
public:
- wxPGWindowList();
- void SetSecondary( wxWindow* secondary );
+ wxPGWindowList(wxWindow* primary, wxWindow* secondary = NULL);
- wxWindow* m_primary;
- wxWindow* m_secondary;
+ void SetSecondary(wxWindow* secondary);
- wxPGWindowList( wxWindow* a );
- wxPGWindowList( wxWindow* a, wxWindow* b );
+ /** Gets window of primary editor.
+ @since 3.1.4
+ */
+ wxWindow* GetPrimary() const;
+ /** Gets window of secondary editor.
+ @since 3.1.4
+ */
+ wxWindow* GetSecondary() const;
};
diff --git a/interface/wx/secretstore.h b/interface/wx/secretstore.h
index d301e63585..2dbc630c77 100644
--- a/interface/wx/secretstore.h
+++ b/interface/wx/secretstore.h
@@ -166,14 +166,16 @@ public:
Example of storing credentials using this class:
@code
wxSecretStore store = wxSecretStore::GetDefault();
- if ( store.IsOk() )
+ wxString errmsg;
+ if ( store.IsOk(&errmsg) )
{
if ( !store.Save("MyApp/MyService", username, password) )
wxLogWarning("Failed to save credentials to the system secret store.");
}
else
{
- wxLogWarning("This system doesn't support storing passwords securely.");
+ wxLogWarning("This system doesn't support storing passwords securely "
+ "(%s).", errmsg);
}
@endcode
@@ -201,13 +203,20 @@ public:
Returns the default secrets collection to use.
Call IsOk() on the returned object to check if this method succeeded.
+
+ Note that this method may show a dialog to the user under some
+ platforms, so it can take an arbitrarily long time to return.
*/
static wxSecretStore GetDefault();
/**
- Check if this object is valid.
+ Check if this object can actually be used.
+
+ @param errmsg If not @NULL, this parameter is filled with a
+ user-readable error message explaining why the secret store can't
+ be used (this argument is new since wxWidgets 3.1.4)
*/
- bool IsOk() const;
+ bool IsOk(wxString* errmsg = NULL) const;
/**
Store a username/password combination.
diff --git a/interface/wx/treectrl.h b/interface/wx/treectrl.h
index f6ca003521..fe66a39c03 100644
--- a/interface/wx/treectrl.h
+++ b/interface/wx/treectrl.h
@@ -506,6 +506,12 @@ public:
*/
virtual unsigned int GetIndent() const;
+ /**
+ Returns the current tree control spacing. This is the number of
+ horizontal pixels between the buttons and the state images.
+ */
+ unsigned int GetSpacing() const;
+
/**
Returns the background colour of the item.
*/
@@ -850,6 +856,13 @@ public:
*/
virtual void SetIndent(unsigned int indent);
+ /**
+ Sets the spacing for the tree control. Spacing is the number of
+ horizontal pixels between the buttons and the state images.
+ This has no effect under wxMSW.
+ */
+ void SetSpacing(unsigned int spacing);
+
/**
Sets the colour of the item's background.
*/
diff --git a/interface/wx/webview.h b/interface/wx/webview.h
index 99c15ace6e..ab77d98f2c 100644
--- a/interface/wx/webview.h
+++ b/interface/wx/webview.h
@@ -290,7 +290,7 @@ public:
This backend is not enabled by default, to build it follow these steps:
- Visual Studio 2015, or newer, is required
- Download the WebView2 SDK
- nuget package (Version 0.8.355 or newer)
+ nuget package (Version 0.9.430 or newer)
- Extract the package (it's a zip archive) to @c wxWidgets/3rdparty/webview2
(you should have @c 3rdparty/webview2/build/native/include/WebView2.h
file after unpacking it)
diff --git a/interface/wx/wfstream.h b/interface/wx/wfstream.h
index 4473f568c8..19d0ee02dd 100644
--- a/interface/wx/wfstream.h
+++ b/interface/wx/wfstream.h
@@ -51,6 +51,54 @@ public:
+/**
+ @class wxTempFFileOutputStream
+
+ wxTempFFileOutputStream is an output stream based on wxTempFFile.
+ It provides a relatively safe way to replace the contents of the
+ existing file.
+
+ @since 3.1.4
+
+ @library{wxbase}
+ @category{streams}
+
+ @see wxTempFFile
+*/
+class wxTempFFileOutputStream : public wxOutputStream
+{
+public:
+ /**
+ Associates wxTempFFileOutputStream with the file to be replaced and opens it.
+
+ @warning
+ You should use wxStreamBase::IsOk() to verify if the constructor succeeded.
+
+ Call Commit() or wxOutputStream::Close() to replace the old file and close
+ this one. Calling Discard() (or allowing the destructor to do it) will
+ discard the changes.
+ */
+ wxTempFFileOutputStream(const wxString& fileName);
+
+ /**
+ Validate changes: deletes the old file of the given name and renames the new
+ file to the old name. Returns @true if both actions succeeded.
+
+ If @false is returned it may unfortunately mean two quite different things: either that
+ either the old file couldn't be deleted or that the new file couldn't be renamed
+ to the old name.
+ */
+ virtual bool Commit();
+
+ /**
+ Discard changes: the old file contents are not changed, the temporary file is
+ deleted.
+ */
+ virtual void Discard();
+};
+
+
+
/**
@class wxFFileOutputStream
diff --git a/interface/wx/window.h b/interface/wx/window.h
index 93f603c50a..eabeef5f7d 100644
--- a/interface/wx/window.h
+++ b/interface/wx/window.h
@@ -2406,10 +2406,15 @@ public:
Dialogs, notebook pages and the status bar have this flag set to @true
by default so that the default look and feel is simulated best.
+
+ @see GetThemeEnabled()
*/
virtual void SetThemeEnabled(bool enable);
/**
+ Returns @true if the window uses the system theme for drawing its background.
+
+ @see SetThemeEnabled()
*/
virtual bool GetThemeEnabled() const;
diff --git a/locale/ca.po b/locale/ca.po
index 716d2c9305..e01b8af687 100644
--- a/locale/ca.po
+++ b/locale/ca.po
@@ -3,33 +3,37 @@ msgstr ""
"Project-Id-Version: wxWidgets 3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-05-21 14:25+0200\n"
-"PO-Revision-Date: 2003-07-22 11:31+0100\n"
-"Last-Translator: Paco Rivière \n"
+"PO-Revision-Date: 2020-02-17 00:54+0100\n"
+"Last-Translator: Eduard Ereza MartÃnez \n"
"Language-Team: \n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 3.10.1\n"
#: ../src/common/debugrpt.cpp:586
msgid ""
"\n"
"Please send this report to the program maintainer, thank you!\n"
msgstr ""
+"\n"
+"Envieu aquest informe al mantenidor del programa. Grà cies!\n"
#: ../src/richtext/richtextstyledlg.cpp:210
#: ../src/richtext/richtextstyledlg.cpp:222
msgid " "
-msgstr ""
+msgstr " "
#: ../src/generic/dbgrptg.cpp:326
msgid " Thank you and we're sorry for the inconvenience!\n"
-msgstr ""
+msgstr " Grà cies i disculpeu les molèsties!\n"
#: ../src/common/prntbase.cpp:573
-#, fuzzy, c-format
+#, c-format
msgid " (copy %d of %d)"
-msgstr "PÃ gina %d de %d"
+msgstr " (còpia %d de %d)"
#: ../src/common/log.cpp:421
#, c-format
@@ -39,11 +43,11 @@ msgstr " (error %ld: %s)"
#: ../src/common/imagtiff.cpp:72
#, c-format
msgid " (in module \"%s\")"
-msgstr ""
+msgstr " (al mòdul \"%s\")"
#: ../src/osx/core/secretstore.cpp:138
msgid " (while overwriting an existing item)"
-msgstr ""
+msgstr " (en sobreescriure un element existent)"
#: ../src/common/docview.cpp:1642
msgid " - "
@@ -54,43 +58,40 @@ msgid " Preview"
msgstr " Previsualitza"
#: ../src/common/fontcmn.cpp:824
-#, fuzzy
msgid " bold"
-msgstr "negreta"
+msgstr " negreta"
#: ../src/common/fontcmn.cpp:840
-#, fuzzy
msgid " italic"
-msgstr "cursiva"
+msgstr " cursiva"
#: ../src/common/fontcmn.cpp:820
-#, fuzzy
msgid " light"
-msgstr "clar"
+msgstr " prima"
#: ../src/common/fontcmn.cpp:807
msgid " strikethrough"
-msgstr ""
+msgstr " ratllat"
#: ../src/common/paper.cpp:117
msgid "#10 Envelope, 4 1/8 x 9 1/2 in"
-msgstr "#10 Sobre, 4 1/8 x 9 1/2 polz. "
+msgstr "Sobre núm. 10, 4 1/8 x 9 1/2 polz."
#: ../src/common/paper.cpp:118
msgid "#11 Envelope, 4 1/2 x 10 3/8 in"
-msgstr "#11 Sobre, 4 1/2 x 10 3/8 polz. "
+msgstr "Sobre núm. 11, 4 1/2 x 10 3/8 polz."
#: ../src/common/paper.cpp:119
msgid "#12 Envelope, 4 3/4 x 11 in"
-msgstr "#12 Sobre, 4 3/4 x 11 polz."
+msgstr "Sobre núm. 12, 4 3/4 x 11 polz."
#: ../src/common/paper.cpp:120
msgid "#14 Envelope, 5 x 11 1/2 in"
-msgstr "#14 Sobre, 5 x 11 1/2 polz. "
+msgstr "Sobre núm. 14, 5 x 11 1/2 polz."
#: ../src/common/paper.cpp:116
msgid "#9 Envelope, 3 7/8 x 8 7/8 in"
-msgstr "#9 Sobre, 3 7/8 x 8 7/2 polz. "
+msgstr "Sobre núm. 9, 3 7/8 x 8 7/2 polz."
#: ../src/richtext/richtextbackgroundpage.cpp:341
#: ../src/richtext/richtextsizepage.cpp:340
@@ -103,36 +104,35 @@ msgstr "#9 Sobre, 3 7/8 x 8 7/2 polz. "
#: ../src/richtext/richtextsizepage.cpp:591
#: ../src/richtext/richtextsizepage.cpp:626
#: ../src/richtext/richtextsizepage.cpp:661
-#, fuzzy
msgid "%"
-msgstr "%d"
+msgstr "%"
#: ../src/html/helpwnd.cpp:1031
-#, fuzzy, c-format
+#, c-format
msgid "%d of %lu"
-msgstr "%i de %i"
+msgstr "%d de %lu"
#: ../src/html/helpwnd.cpp:1678
-#, fuzzy, c-format
+#, c-format
msgid "%i of %u"
-msgstr "%i de %i"
+msgstr "%i de %u"
#: ../src/generic/filectrlg.cpp:279
#, c-format
msgid "%ld byte"
msgid_plural "%ld bytes"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%ld byte"
+msgstr[1] "%ld bytes"
#: ../src/html/helpwnd.cpp:1033
-#, fuzzy, c-format
+#, c-format
msgid "%lu of %lu"
-msgstr "%i de %i"
+msgstr "%lu de %lu"
#: ../src/generic/datavgen.cpp:6028
-#, fuzzy, c-format
+#, c-format
msgid "%s (%d items)"
-msgstr "%s (o %s)"
+msgstr "%s (%d elements)"
#: ../src/common/cmdline.cpp:1221
#, c-format
@@ -142,63 +142,62 @@ msgstr "%s (o %s)"
#: ../src/generic/logg.cpp:224
#, c-format
msgid "%s Error"
-msgstr "Error %s"
+msgstr "Error: %s"
#: ../src/generic/logg.cpp:236
#, c-format
msgid "%s Information"
-msgstr "Informació %s"
+msgstr "Informació: %s"
#: ../src/generic/preferencesg.cpp:113
#, c-format
msgid "%s Preferences"
-msgstr ""
+msgstr "Preferències de %s"
#: ../src/generic/logg.cpp:228
#, c-format
msgid "%s Warning"
-msgstr "Atenció %s"
+msgstr "Advertència: %s"
#: ../src/common/tarstrm.cpp:1319
#, c-format
msgid "%s did not fit the tar header for entry '%s'"
-msgstr ""
+msgstr "%s no s'ajustava a la capçalera tar per a l'entrada '%s'"
#: ../src/common/fldlgcmn.cpp:124
-#, fuzzy, c-format
+#, c-format
msgid "%s files (%s)|%s"
-msgstr "Fitxers (%s)|%s"
+msgstr "Fitxers %s (%s)|%s"
#: ../src/html/helpwnd.cpp:1716
-#, fuzzy, c-format
+#, c-format
msgid "%u of %u"
-msgstr "%i de %i"
+msgstr "%u de %u"
#: ../src/common/stockitem.cpp:139
msgid "&About"
-msgstr ""
+msgstr "Qu&ant a"
#: ../src/common/stockitem.cpp:207
msgid "&Actual Size"
-msgstr ""
+msgstr "Mid&a real"
#: ../src/richtext/richtextindentspage.cpp:262
msgid "&After a paragraph:"
-msgstr ""
+msgstr "Després d'un p&arà graf:"
#: ../src/richtext/richtextindentspage.cpp:128
#: ../src/richtext/richtextliststylepage.cpp:319
-#, fuzzy
msgid "&Alignment"
-msgstr "dinovè"
+msgstr "&Alineació"
#: ../src/common/stockitem.cpp:141
msgid "&Apply"
-msgstr ""
+msgstr "&Aplica"
#: ../src/richtext/richtextstyledlg.cpp:251
msgid "&Apply Style"
-msgstr ""
+msgstr "&Aplica l'estil"
#: ../src/msw/mdi.cpp:179
msgid "&Arrange Icons"
@@ -206,37 +205,35 @@ msgstr "&Organitza les icones"
#: ../src/common/stockitem.cpp:195
msgid "&Ascending"
-msgstr ""
+msgstr "&Ascendent"
#: ../src/common/stockitem.cpp:142
-#, fuzzy
msgid "&Back"
-msgstr "< &Enrere"
+msgstr "&Endarrere"
#: ../src/richtext/richtextstylepage.cpp:115
msgid "&Based on:"
-msgstr ""
+msgstr "&Basat en:"
#: ../src/richtext/richtextindentspage.cpp:253
msgid "&Before a paragraph:"
-msgstr ""
+msgstr "A&bans d'un parà graf:"
#: ../src/richtext/richtextfontpage.cpp:262
msgid "&Bg colour:"
-msgstr ""
+msgstr "Color de &fons:"
#: ../src/richtext/richtextbackgroundpage.cpp:298
msgid "&Blur distance:"
-msgstr ""
+msgstr "Distà ncia del &difuminat:"
#: ../src/common/stockitem.cpp:143
-#, fuzzy
msgid "&Bold"
-msgstr "Negreta"
+msgstr "&Negreta"
#: ../src/common/stockitem.cpp:144
msgid "&Bottom"
-msgstr ""
+msgstr "&Inferior"
#: ../src/richtext/richtextborderspage.cpp:345
#: ../src/richtext/richtextborderspage.cpp:513
@@ -245,64 +242,59 @@ msgstr ""
#: ../src/richtext/richtextsizepage.cpp:637
#: ../src/richtext/richtextsizepage.cpp:644
msgid "&Bottom:"
-msgstr ""
+msgstr "&Inferior:"
#: ../include/wx/richtext/richtextbuffer.h:3866
-#, fuzzy
msgid "&Box"
-msgstr "Negreta"
+msgstr "&Caixa"
#: ../src/richtext/richtextliststylepage.cpp:210
#: ../src/richtext/richtextbulletspage.cpp:146
msgid "&Bullet style:"
-msgstr ""
+msgstr "Estil de &pic:"
#: ../src/common/stockitem.cpp:146
msgid "&CD-Rom"
-msgstr ""
+msgstr "&CD-ROM"
#: ../src/generic/wizard.cpp:434 ../src/generic/fontdlgg.cpp:470
#: ../src/generic/fontdlgg.cpp:489 ../src/osx/carbon/fontdlg.cpp:402
#: ../src/common/dlgcmn.cpp:279 ../src/common/stockitem.cpp:145
msgid "&Cancel"
-msgstr "&Anul·la"
+msgstr "&Cancel·la"
#: ../src/msw/mdi.cpp:175
msgid "&Cascade"
-msgstr "&Cascada"
+msgstr "En &cascada"
#: ../include/wx/richtext/richtextbuffer.h:5960
-#, fuzzy
msgid "&Cell"
-msgstr "&Anul·la"
+msgstr "&Cel·la"
#: ../src/richtext/richtextsymboldlg.cpp:439
msgid "&Character code:"
-msgstr ""
+msgstr "&Codi de carà cter:"
#: ../src/common/stockitem.cpp:147
-#, fuzzy
msgid "&Clear"
msgstr "&Neteja"
#: ../src/generic/logg.cpp:516 ../src/common/stockitem.cpp:148
#: ../src/common/prntbase.cpp:1600 ../src/univ/themes/win32.cpp:3756
msgid "&Close"
-msgstr "&Tanca"
+msgstr "Tan&ca"
#: ../src/common/stockitem.cpp:193
-#, fuzzy
msgid "&Color"
-msgstr "Trieu la font"
+msgstr "&Color"
#: ../src/richtext/richtextfontpage.cpp:249
msgid "&Colour:"
-msgstr ""
+msgstr "&Color:"
#: ../src/common/stockitem.cpp:149
-#, fuzzy
msgid "&Convert"
-msgstr "Contingut"
+msgstr "&Converteix"
#: ../src/richtext/richtextctrl.cpp:333 ../src/osx/textctrl_osx.cpp:577
#: ../src/common/stockitem.cpp:150 ../src/msw/textctrl.cpp:2508
@@ -310,59 +302,54 @@ msgid "&Copy"
msgstr "&Copia"
#: ../src/generic/hyperlinkg.cpp:156
-#, fuzzy
msgid "&Copy URL"
-msgstr "&Copia"
+msgstr "&Copia l'URL"
#: ../src/common/headerctrlcmn.cpp:306
-#, fuzzy
msgid "&Customize..."
-msgstr "Mida de la font:"
+msgstr "&Personalitza..."
#: ../src/generic/dbgrptg.cpp:334
msgid "&Debug report preview:"
-msgstr ""
+msgstr "Previsualització &de l'informe de depuració:"
#: ../src/richtext/richtexttabspage.cpp:138
#: ../src/richtext/richtextctrl.cpp:335 ../src/osx/textctrl_osx.cpp:579
#: ../src/common/stockitem.cpp:152 ../src/msw/textctrl.cpp:2510
msgid "&Delete"
-msgstr "&Elimina"
+msgstr "&Suprimeix"
#: ../src/richtext/richtextstyledlg.cpp:269
-#, fuzzy
msgid "&Delete Style..."
-msgstr "&Elimina"
+msgstr "&Suprimeix l'estil..."
#: ../src/common/stockitem.cpp:196
msgid "&Descending"
-msgstr ""
+msgstr "&Descendent"
#: ../src/generic/logg.cpp:682
msgid "&Details"
msgstr "&Detalls"
#: ../src/common/stockitem.cpp:153
-#, fuzzy
msgid "&Down"
-msgstr "Avall"
+msgstr "A&vall"
#: ../src/common/stockitem.cpp:154
msgid "&Edit"
-msgstr ""
+msgstr "&Edita"
#: ../src/richtext/richtextstyledlg.cpp:263
msgid "&Edit Style..."
-msgstr ""
+msgstr "&Edita l'estil..."
#: ../src/common/stockitem.cpp:155
msgid "&Execute"
-msgstr ""
+msgstr "&Executa"
#: ../src/common/stockitem.cpp:157
-#, fuzzy
msgid "&File"
-msgstr "&Mida"
+msgstr "&Fitxer"
#: ../src/common/stockitem.cpp:158
msgid "&Find"
@@ -370,61 +357,53 @@ msgstr "&Cerca"
#: ../src/generic/wizard.cpp:632
msgid "&Finish"
-msgstr "&Fi"
+msgstr "&Finalitza"
#: ../src/common/stockitem.cpp:159
-#, fuzzy
msgid "&First"
-msgstr "primer"
+msgstr "&Primer"
#: ../src/richtext/richtextsizepage.cpp:244
msgid "&Floating mode:"
-msgstr ""
+msgstr "Mode &flotant:"
#: ../src/common/stockitem.cpp:160
-#, fuzzy
msgid "&Floppy"
-msgstr "&Copia"
+msgstr "&Disquet"
#: ../src/common/stockitem.cpp:194
-#, fuzzy
msgid "&Font"
-msgstr "Mida de la font:"
+msgstr "&Tipus de lletra"
#: ../src/generic/fontdlgg.cpp:371
-#, fuzzy
msgid "&Font family:"
-msgstr "Mida de la font:"
+msgstr "&FamÃlia del tipus de lletra:"
#: ../src/richtext/richtextliststylepage.cpp:194
msgid "&Font for Level..."
-msgstr ""
+msgstr "Tip&us de lletra per al nivell..."
#: ../src/richtext/richtextfontpage.cpp:147
#: ../src/richtext/richtextsymboldlg.cpp:400
-#, fuzzy
msgid "&Font:"
-msgstr "Mida de la font:"
+msgstr "&Tipus de lletra:"
#: ../src/common/stockitem.cpp:161
-#, fuzzy
msgid "&Forward"
-msgstr "Endavant"
+msgstr "Enda&vant"
#: ../src/richtext/richtextsymboldlg.cpp:451
-#, fuzzy
msgid "&From:"
-msgstr "De:"
+msgstr "&De:"
#: ../src/common/stockitem.cpp:162
msgid "&Harddisk"
-msgstr ""
+msgstr "&Disc dur"
#: ../src/richtext/richtextsizepage.cpp:351
#: ../src/richtext/richtextsizepage.cpp:358
-#, fuzzy
msgid "&Height:"
-msgstr "vuitè"
+msgstr "&Alçada:"
#: ../src/generic/wizard.cpp:441 ../src/richtext/richtextstyledlg.cpp:303
#: ../src/richtext/richtextsymboldlg.cpp:479 ../src/osx/menu_osx.cpp:734
@@ -433,63 +412,56 @@ msgid "&Help"
msgstr "&Ajuda"
#: ../include/wx/richmsgdlg.h:30
-#, fuzzy
msgid "&Hide details"
-msgstr "&Detalls"
+msgstr "&Amaga els detalls"
#: ../src/common/stockitem.cpp:164
-#, fuzzy
msgid "&Home"
-msgstr "&Mou"
+msgstr "&Inici"
#: ../src/richtext/richtextbackgroundpage.cpp:212
msgid "&Horizontal offset:"
-msgstr ""
+msgstr "Desplaçament &horitzontal:"
#: ../src/richtext/richtextindentspage.cpp:184
#: ../src/richtext/richtextliststylepage.cpp:372
msgid "&Indentation (tenths of a mm)"
-msgstr ""
+msgstr "Sagnat (dèc&imes de mm)"
#: ../src/richtext/richtextindentspage.cpp:167
#: ../src/richtext/richtextliststylepage.cpp:356
-#, fuzzy
msgid "&Indeterminate"
-msgstr "Subratllat"
+msgstr "&Indeterminat"
#: ../src/common/stockitem.cpp:166
-#, fuzzy
msgid "&Index"
-msgstr "Ãndex"
+msgstr "Ã&ndex"
#: ../src/common/stockitem.cpp:167
-#, fuzzy
msgid "&Info"
-msgstr "&Desfés"
+msgstr "&Informació"
#: ../src/common/stockitem.cpp:168
-#, fuzzy
msgid "&Italic"
-msgstr "Cursiva"
+msgstr "Curs&iva"
#: ../src/common/stockitem.cpp:169
msgid "&Jump to"
-msgstr ""
+msgstr "&Vés a"
#: ../src/richtext/richtextindentspage.cpp:153
#: ../src/richtext/richtextliststylepage.cpp:342
msgid "&Justified"
-msgstr ""
+msgstr "&Justificat"
#: ../src/common/stockitem.cpp:174
-#, fuzzy
msgid "&Last"
-msgstr "&Enganxa"
+msgstr "Ú<im"
#: ../src/richtext/richtextindentspage.cpp:139
#: ../src/richtext/richtextliststylepage.cpp:328
msgid "&Left"
-msgstr ""
+msgstr "&Esquerra"
#: ../src/richtext/richtextindentspage.cpp:195
#: ../src/richtext/richtextborderspage.cpp:243
@@ -500,11 +472,11 @@ msgstr ""
#: ../src/richtext/richtextsizepage.cpp:532
#: ../src/richtext/richtextsizepage.cpp:539
msgid "&Left:"
-msgstr ""
+msgstr "&Esquerra:"
#: ../src/richtext/richtextliststylepage.cpp:183
msgid "&List level:"
-msgstr ""
+msgstr "Nivell de la &llista:"
#: ../src/generic/logg.cpp:517
msgid "&Log"
@@ -516,17 +488,15 @@ msgstr "&Mou"
#: ../src/richtext/richtextsizepage.cpp:672
msgid "&Move the object to:"
-msgstr ""
+msgstr "&Mou l'objecte a:"
#: ../src/common/stockitem.cpp:175
-#, fuzzy
msgid "&Network"
-msgstr "&Següent"
+msgstr "&Xarxa"
#: ../src/richtext/richtexttabspage.cpp:132 ../src/common/stockitem.cpp:176
-#, fuzzy
msgid "&New"
-msgstr "&Següent"
+msgstr "&Nou"
#: ../src/aui/tabmdi.cpp:111 ../src/generic/mdig.cpp:100
#: ../src/msw/mdi.cpp:180
@@ -535,53 +505,48 @@ msgstr "&Següent"
#: ../src/generic/wizard.cpp:432 ../src/generic/wizard.cpp:632
msgid "&Next >"
-msgstr "&Següent >"
+msgstr "E&ndavant >"
#: ../src/richtext/richtextsizepage.cpp:681
msgid "&Next Paragraph"
-msgstr ""
+msgstr "Parà graf següe&nt"
#: ../src/generic/tipdlg.cpp:240
msgid "&Next Tip"
-msgstr "Consell &següent"
+msgstr "Següe&nt consell"
#: ../src/richtext/richtextstylepage.cpp:125
-#, fuzzy
msgid "&Next style:"
-msgstr "&Següent >"
+msgstr "Següe&nt estil:"
#: ../src/common/stockitem.cpp:177 ../src/msw/msgdlg.cpp:441
-#, fuzzy
msgid "&No"
-msgstr "No"
+msgstr "&No"
#: ../src/generic/dbgrptg.cpp:356
-#, fuzzy
msgid "&Notes:"
-msgstr "No"
+msgstr "&Notes:"
#: ../src/richtext/richtextbulletspage.cpp:251
msgid "&Number:"
-msgstr ""
+msgstr "&Número:"
#: ../src/generic/fontdlgg.cpp:475 ../src/generic/fontdlgg.cpp:482
#: ../src/osx/carbon/fontdlg.cpp:408 ../src/common/stockitem.cpp:178
-#, fuzzy
msgid "&OK"
-msgstr "D'acord"
+msgstr "D'ac&ord"
#: ../src/generic/dbgrptg.cpp:342 ../src/common/stockitem.cpp:179
-#, fuzzy
msgid "&Open..."
-msgstr "&Desa..."
+msgstr "&Obre..."
#: ../src/richtext/richtextindentspage.cpp:222
msgid "&Outline level:"
-msgstr ""
+msgstr "Nivell del c&ontorn:"
#: ../src/richtext/richtextindentspage.cpp:293
msgid "&Page Break"
-msgstr ""
+msgstr "Salt de &pà gina"
#: ../src/richtext/richtextctrl.cpp:334 ../src/osx/textctrl_osx.cpp:578
#: ../src/common/stockitem.cpp:180 ../src/msw/textctrl.cpp:2509
@@ -590,50 +555,45 @@ msgstr "&Enganxa"
#: ../include/wx/richtext/richtextbuffer.h:5010
msgid "&Picture"
-msgstr ""
+msgstr "&Imatge"
#: ../src/generic/fontdlgg.cpp:422
-#, fuzzy
msgid "&Point size:"
-msgstr "Mida de la font:"
+msgstr "Mida en &punts:"
#: ../src/richtext/richtexttabspage.cpp:110
msgid "&Position (tenths of a mm):"
-msgstr ""
+msgstr "&Posició (dècimes de mm):"
#: ../src/richtext/richtextsizepage.cpp:514
-#, fuzzy
msgid "&Position mode:"
-msgstr "Pregunta"
+msgstr "&Mode de posicionament:"
#: ../src/common/stockitem.cpp:181
msgid "&Preferences"
-msgstr ""
+msgstr "&Preferències"
#: ../src/aui/tabmdi.cpp:112 ../src/generic/mdig.cpp:101
#: ../src/msw/mdi.cpp:181
msgid "&Previous"
-msgstr "&Previ"
+msgstr "&Anterior"
#: ../src/richtext/richtextsizepage.cpp:675
-#, fuzzy
msgid "&Previous Paragraph"
-msgstr "PÃ gina anterior"
+msgstr "&Parà graf anterior"
#: ../src/common/stockitem.cpp:183
-#, fuzzy
msgid "&Print..."
-msgstr "Imprimeix..."
+msgstr "Im&primeix..."
#: ../src/richtext/richtextctrl.cpp:339 ../src/richtext/richtextctrl.cpp:5514
#: ../src/common/stockitem.cpp:184
-#, fuzzy
msgid "&Properties"
-msgstr "&Previ"
+msgstr "&Propietats"
#: ../src/common/stockitem.cpp:156
msgid "&Quit"
-msgstr ""
+msgstr "&Surt"
#: ../src/richtext/richtextctrl.cpp:330 ../src/osx/textctrl_osx.cpp:574
#: ../src/common/stockitem.cpp:185 ../src/common/cmdproc.cpp:293
@@ -643,11 +603,11 @@ msgstr "&Refés"
#: ../src/common/cmdproc.cpp:289 ../src/common/cmdproc.cpp:309
msgid "&Redo "
-msgstr "&Refés"
+msgstr "&Refés "
#: ../src/richtext/richtextstyledlg.cpp:257
msgid "&Rename Style..."
-msgstr ""
+msgstr "&Canvia el nom de l'estil..."
#: ../src/generic/fdrepdlg.cpp:179
msgid "&Replace"
@@ -655,7 +615,7 @@ msgstr "&Substitueix"
#: ../src/richtext/richtextstyledlg.cpp:287
msgid "&Restart numbering"
-msgstr ""
+msgstr "&Reinicia la numeració"
#: ../src/univ/themes/win32.cpp:3747
msgid "&Restore"
@@ -663,9 +623,8 @@ msgstr "&Restaura"
#: ../src/richtext/richtextindentspage.cpp:146
#: ../src/richtext/richtextliststylepage.cpp:335
-#, fuzzy
msgid "&Right"
-msgstr "Clar"
+msgstr "D&reta"
#: ../src/richtext/richtextindentspage.cpp:213
#: ../src/richtext/richtextborderspage.cpp:277
@@ -675,92 +634,83 @@ msgstr "Clar"
#: ../src/richtext/richtextmarginspage.cpp:325
#: ../src/richtext/richtextsizepage.cpp:602
#: ../src/richtext/richtextsizepage.cpp:609
-#, fuzzy
msgid "&Right:"
-msgstr "vuitè"
+msgstr "D&reta:"
#: ../src/common/stockitem.cpp:190
-#, fuzzy
msgid "&Save"
-msgstr "&Desa..."
+msgstr "De&sa"
#: ../src/common/stockitem.cpp:191
-#, fuzzy
msgid "&Save as"
-msgstr "Anomena i Desa"
+msgstr "Anomena i de&sa"
#: ../include/wx/richmsgdlg.h:29
-#, fuzzy
msgid "&See details"
-msgstr "&Detalls"
+msgstr "Mo&stra els detalls"
#: ../src/generic/tipdlg.cpp:236
msgid "&Show tips at startup"
-msgstr "&Mostra els consells al començar"
+msgstr "Mo&stra els consells en iniciar"
#: ../src/univ/themes/win32.cpp:3750
msgid "&Size"
msgstr "&Mida"
#: ../src/richtext/richtextfontpage.cpp:159
-#, fuzzy
msgid "&Size:"
-msgstr "&Mida"
+msgstr "&Mida:"
#: ../src/generic/progdlgg.cpp:252
-#, fuzzy
msgid "&Skip"
-msgstr "Script"
+msgstr "&Omet"
#: ../src/richtext/richtextindentspage.cpp:242
#: ../src/richtext/richtextliststylepage.cpp:417
msgid "&Spacing (tenths of a mm)"
-msgstr ""
+msgstr "E&spaiat (dècimes de mm)"
#: ../src/common/stockitem.cpp:197
msgid "&Spell Check"
-msgstr ""
+msgstr "&Comprova l'ortografia"
#: ../src/common/stockitem.cpp:198
-#, fuzzy
msgid "&Stop"
-msgstr "Configuració"
+msgstr "A&tura"
#: ../src/richtext/richtextfontpage.cpp:275 ../src/common/stockitem.cpp:199
msgid "&Strikethrough"
-msgstr ""
+msgstr "&Ratllat"
#: ../src/generic/fontdlgg.cpp:382 ../src/richtext/richtextstylepage.cpp:106
msgid "&Style:"
-msgstr ""
+msgstr "E&stil:"
#: ../src/richtext/richtextstyledlg.cpp:198
-#, fuzzy
msgid "&Styles:"
-msgstr "No"
+msgstr "E&stils:"
#: ../src/richtext/richtextsymboldlg.cpp:413
msgid "&Subset:"
-msgstr ""
+msgstr "&Subconjunt:"
#: ../src/richtext/richtextliststylepage.cpp:268
#: ../src/richtext/richtextbulletspage.cpp:209
msgid "&Symbol:"
-msgstr ""
+msgstr "&SÃmbol:"
#: ../src/richtext/richtextborderspage.cpp:381
#: ../src/richtext/richtextborderspage.cpp:549
msgid "&Synchronize values"
-msgstr ""
+msgstr "&Sincronitza els valors"
#: ../include/wx/richtext/richtextbuffer.h:6069
msgid "&Table"
-msgstr ""
+msgstr "&Taula"
#: ../src/common/stockitem.cpp:200
-#, fuzzy
msgid "&Top"
-msgstr "&Copia"
+msgstr "Dal&t de tot"
#: ../src/richtext/richtextborderspage.cpp:311
#: ../src/richtext/richtextborderspage.cpp:479
@@ -768,19 +718,16 @@ msgstr "&Copia"
#: ../src/richtext/richtextmarginspage.cpp:348
#: ../src/richtext/richtextsizepage.cpp:567
#: ../src/richtext/richtextsizepage.cpp:574
-#, fuzzy
msgid "&Top:"
-msgstr "Per a:"
+msgstr "&Superior:"
#: ../src/generic/fontdlgg.cpp:444 ../src/common/stockitem.cpp:202
-#, fuzzy
msgid "&Underline"
-msgstr "Subratllat"
+msgstr "S&ubratllat"
#: ../src/richtext/richtextfontpage.cpp:234
-#, fuzzy
msgid "&Underlining:"
-msgstr "Subratllat"
+msgstr "S&ubratllat:"
#: ../src/richtext/richtextctrl.cpp:329 ../src/osx/textctrl_osx.cpp:573
#: ../src/common/stockitem.cpp:203 ../src/common/cmdproc.cpp:271
@@ -790,43 +737,36 @@ msgstr "&Desfés"
#: ../src/common/cmdproc.cpp:265
msgid "&Undo "
-msgstr "&Desfés"
+msgstr "&Desfés "
#: ../src/common/stockitem.cpp:204
-#, fuzzy
msgid "&Unindent"
-msgstr "dinovè"
+msgstr "Desfés el sa&gnat"
#: ../src/common/stockitem.cpp:205
-#, fuzzy
msgid "&Up"
-msgstr "Amunt"
+msgstr "Am&unt"
#: ../src/richtext/richtextsizepage.cpp:278
-#, fuzzy
msgid "&Vertical alignment:"
-msgstr "dinovè"
+msgstr "Alineació &vertical:"
#: ../src/richtext/richtextbackgroundpage.cpp:235
-#, fuzzy
msgid "&Vertical offset:"
-msgstr "dinovè"
+msgstr "Desplaçament &vertical:"
#: ../src/generic/dbgrptg.cpp:340
-#, fuzzy
msgid "&View..."
-msgstr "&Desa..."
+msgstr "&Visualitza..."
#: ../src/generic/fontdlgg.cpp:393
-#, fuzzy
msgid "&Weight:"
-msgstr "vuitè"
+msgstr "&Pes:"
#: ../src/richtext/richtextsizepage.cpp:317
#: ../src/richtext/richtextsizepage.cpp:324
-#, fuzzy
msgid "&Width:"
-msgstr "vuitè"
+msgstr "A&mplada:"
#: ../src/aui/tabmdi.cpp:311 ../src/aui/tabmdi.cpp:327
#: ../src/aui/tabmdi.cpp:329 ../src/generic/mdig.cpp:294
@@ -836,49 +776,48 @@ msgid "&Window"
msgstr "&Finestra"
#: ../src/common/stockitem.cpp:206 ../src/msw/msgdlg.cpp:441
-#, fuzzy
msgid "&Yes"
-msgstr "SÃ"
+msgstr "&SÃ"
#: ../src/common/valtext.cpp:256
-#, fuzzy, c-format
+#, c-format
msgid "'%s' contains illegal characters"
-msgstr "'%s' només hauria de contenir carà cters alfabètics"
+msgstr "'%s' conté carà cters no permesos"
#: ../src/common/valtext.cpp:254
-#, fuzzy, c-format
+#, c-format
msgid "'%s' doesn't consist only of valid characters"
-msgstr "'%s' només hauria de contenir carà cters alfabètics"
+msgstr "'%s' no consisteix només de carà cters và lids"
#: ../src/common/config.cpp:519 ../src/msw/regconf.cpp:258
#, c-format
msgid "'%s' has extra '..', ignored."
-msgstr "'%s' té '..' extres que han estat ignorats."
+msgstr "'%s' té '..' extra, s'ha ignorat."
#: ../src/common/cmdline.cpp:1113 ../src/common/cmdline.cpp:1131
#, c-format
msgid "'%s' is not a correct numeric value for option '%s'."
-msgstr "'%s' no és valor numèric correcte per l'opció '%s'."
+msgstr "'%s' no és valor numèric correcte per a l'opció '%s'."
#: ../src/common/translation.cpp:1100
#, c-format
msgid "'%s' is not a valid message catalog."
-msgstr "'%s' no és un missatge và lid de catà leg"
+msgstr "'%s' no és un missatge de catà leg và lid."
#: ../src/common/valtext.cpp:165
-#, fuzzy, c-format
+#, c-format
msgid "'%s' is not one of the valid strings"
-msgstr "'%s' no és un missatge và lid de catà leg"
+msgstr "'%s' no és una de les cadenes và lides"
#: ../src/common/valtext.cpp:167
-#, fuzzy, c-format
+#, c-format
msgid "'%s' is one of the invalid strings"
-msgstr "'%s' és invà lid"
+msgstr "'%s' és una de les cadenes invà lides"
#: ../src/common/textbuf.cpp:237
#, c-format
msgid "'%s' is probably a binary buffer."
-msgstr "'%s' és probablement un búffer binari."
+msgstr "'%s' és probablement memòria intermèdia binà ria."
#: ../src/common/valtext.cpp:252
#, c-format
@@ -888,12 +827,12 @@ msgstr "'%s' hauria de ser numèric."
#: ../src/common/valtext.cpp:244
#, c-format
msgid "'%s' should only contain ASCII characters."
-msgstr "'%s' només hauria de contenir carà cters ASCII"
+msgstr "'%s' només hauria de contenir carà cters ASCII."
#: ../src/common/valtext.cpp:246
#, c-format
msgid "'%s' should only contain alphabetic characters."
-msgstr "'%s' només hauria de contenir carà cters alfabètics"
+msgstr "'%s' només hauria de contenir carà cters alfabètics."
#: ../src/common/valtext.cpp:248
#, c-format
@@ -901,14 +840,14 @@ msgid "'%s' should only contain alphabetic or numeric characters."
msgstr "'%s' només hauria de contenir carà cters alfabètics o numèrics."
#: ../src/common/valtext.cpp:250
-#, fuzzy, c-format
+#, c-format
msgid "'%s' should only contain digits."
-msgstr "'%s' només hauria de contenir carà cters ASCII"
+msgstr "'%s' només hauria de contenir dÃgits."
#: ../src/richtext/richtextliststylepage.cpp:229
#: ../src/richtext/richtextbulletspage.cpp:166
msgid "(*)"
-msgstr ""
+msgstr "(*)"
#: ../src/html/helpwnd.cpp:963
msgid "(Help)"
@@ -917,12 +856,11 @@ msgstr "(Ajuda)"
#: ../src/richtext/richtextliststylepage.cpp:481
#: ../src/richtext/richtextbulletspage.cpp:273
msgid "(None)"
-msgstr ""
+msgstr "(Cap)"
#: ../src/richtext/richtextsymboldlg.cpp:504
-#, fuzzy
msgid "(Normal text)"
-msgstr "Font normal"
+msgstr "(Text normal)"
#: ../src/html/helpwnd.cpp:419 ../src/html/helpwnd.cpp:1106
#: ../src/html/helpwnd.cpp:1742
@@ -941,88 +879,85 @@ msgstr "(preferits)"
#: ../src/richtext/richtextliststylepage.cpp:448
#: ../src/richtext/richtextliststylepage.cpp:460
#: ../src/richtext/richtextliststylepage.cpp:461
-#, fuzzy
msgid "(none)"
-msgstr "sense nom"
+msgstr "(cap)"
#: ../src/richtext/richtextliststylepage.cpp:492
#: ../src/richtext/richtextbulletspage.cpp:284
msgid "*"
-msgstr ""
+msgstr "*"
#: ../src/richtext/richtextliststylepage.cpp:236
#: ../src/richtext/richtextbulletspage.cpp:173
msgid "*)"
-msgstr ""
+msgstr "*)"
#: ../src/richtext/richtextliststylepage.cpp:495
#: ../src/richtext/richtextbulletspage.cpp:287
msgid "+"
-msgstr ""
+msgstr "+"
#: ../src/msw/utils.cpp:1152
msgid ", 64-bit edition"
-msgstr ""
+msgstr ", edició de 64 bits"
#: ../src/richtext/richtextliststylepage.cpp:493
#: ../src/richtext/richtextbulletspage.cpp:285
msgid "-"
-msgstr ""
+msgstr "-"
#: ../src/generic/filepickerg.cpp:66
-#, fuzzy
msgid "..."
-msgstr ".."
+msgstr "..."
#: ../src/richtext/richtextindentspage.cpp:276
#: ../src/richtext/richtextliststylepage.cpp:450
msgid "1.1"
-msgstr ""
+msgstr "1.1"
#: ../src/richtext/richtextindentspage.cpp:277
#: ../src/richtext/richtextliststylepage.cpp:451
msgid "1.2"
-msgstr ""
+msgstr "1.2"
#: ../src/richtext/richtextindentspage.cpp:278
#: ../src/richtext/richtextliststylepage.cpp:452
msgid "1.3"
-msgstr ""
+msgstr "1.3"
#: ../src/richtext/richtextindentspage.cpp:279
#: ../src/richtext/richtextliststylepage.cpp:453
msgid "1.4"
-msgstr ""
+msgstr "1.4"
#: ../src/richtext/richtextindentspage.cpp:280
#: ../src/richtext/richtextliststylepage.cpp:454
msgid "1.5"
-msgstr ""
+msgstr "1.5"
#: ../src/richtext/richtextindentspage.cpp:281
#: ../src/richtext/richtextliststylepage.cpp:455
msgid "1.6"
-msgstr ""
+msgstr "1.6"
#: ../src/richtext/richtextindentspage.cpp:282
#: ../src/richtext/richtextliststylepage.cpp:456
msgid "1.7"
-msgstr ""
+msgstr "1.7"
#: ../src/richtext/richtextindentspage.cpp:283
#: ../src/richtext/richtextliststylepage.cpp:457
msgid "1.8"
-msgstr ""
+msgstr "1.8"
#: ../src/richtext/richtextindentspage.cpp:284
#: ../src/richtext/richtextliststylepage.cpp:458
msgid "1.9"
-msgstr ""
+msgstr "1.9"
#: ../src/common/paper.cpp:140
-#, fuzzy
msgid "10 x 11 in"
-msgstr "10 x 14 polz."
+msgstr "10 x 11 polz."
#: ../src/common/paper.cpp:113
msgid "10 x 14 in"
@@ -1033,32 +968,29 @@ msgid "11 x 17 in"
msgstr "11 x 17 polz."
#: ../src/common/paper.cpp:184
-#, fuzzy
msgid "12 x 11 in"
-msgstr "10 x 14 polz."
+msgstr "12 x 11 polz."
#: ../src/common/paper.cpp:141
-#, fuzzy
msgid "15 x 11 in"
-msgstr "10 x 14 polz."
+msgstr "15 x 11 polz."
#: ../src/richtext/richtextindentspage.cpp:285
#: ../src/richtext/richtextliststylepage.cpp:459
msgid "2"
-msgstr ""
+msgstr "2"
#: ../src/common/paper.cpp:132
msgid "6 3/4 Envelope, 3 5/8 x 6 1/2 in"
-msgstr "6 3/4 Sobre, 3 5/8 x 6 1/2 polz."
+msgstr "Sobre 6 3/4, 3 5/8 x 6 1/2 polz."
#: ../src/common/paper.cpp:139
-#, fuzzy
msgid "9 x 11 in"
-msgstr "11 x 17 polz."
+msgstr "9 x 11 polz."
#: ../src/html/htmprint.cpp:431
msgid ": file does not exist!"
-msgstr ": fitxer no existeix!"
+msgstr ": el fitxer no existeix!"
#: ../src/common/fontmap.cpp:199
msgid ": unknown charset"
@@ -1070,56 +1002,49 @@ msgstr ": codificació desconeguda"
#: ../src/generic/wizard.cpp:443
msgid "< &Back"
-msgstr "< &Enrere"
+msgstr "< &Endarrere"
#: ../src/osx/carbon/fontdlg.cpp:422 ../src/osx/carbon/fontdlg.cpp:628
#: ../src/osx/carbon/fontdlg.cpp:648
-#, fuzzy
msgid ""
-msgstr "Decoratiu"
+msgstr ""
#: ../src/osx/carbon/fontdlg.cpp:423 ../src/osx/carbon/fontdlg.cpp:630
#: ../src/osx/carbon/fontdlg.cpp:650
-#, fuzzy
msgid ""
-msgstr "Modern"
+msgstr ""
#: ../src/osx/carbon/fontdlg.cpp:421 ../src/osx/carbon/fontdlg.cpp:626
#: ../src/osx/carbon/fontdlg.cpp:646
-#, fuzzy
msgid ""
-msgstr "Roman"
+msgstr ""
#: ../src/osx/carbon/fontdlg.cpp:424 ../src/osx/carbon/fontdlg.cpp:632
#: ../src/osx/carbon/fontdlg.cpp:652
-#, fuzzy
msgid ""
-msgstr "Script"
+msgstr ""
#: ../src/osx/carbon/fontdlg.cpp:425 ../src/osx/carbon/fontdlg.cpp:637
#: ../src/osx/carbon/fontdlg.cpp:656
-#, fuzzy
msgid ""
-msgstr "SuÃs"
+msgstr ""
#: ../src/osx/carbon/fontdlg.cpp:426 ../src/osx/carbon/fontdlg.cpp:634
#: ../src/osx/carbon/fontdlg.cpp:654
-#, fuzzy
msgid ""
-msgstr "Teletip"
+msgstr ""
#: ../src/osx/carbon/fontdlg.cpp:420
msgid ""
-msgstr ""
+msgstr ""
#: ../src/generic/filectrlg.cpp:250 ../src/generic/filectrlg.cpp:273
msgid ""
-msgstr ""
+msgstr ""
#: ../src/generic/filectrlg.cpp:254 ../src/generic/filectrlg.cpp:277
-#, fuzzy
msgid ""
-msgstr ""
+msgstr ""
#: ../src/generic/filectrlg.cpp:252 ../src/generic/filectrlg.cpp:275
msgid ""
@@ -1127,77 +1052,71 @@ msgstr ""
#: ../src/html/helpwnd.cpp:1266
msgid "Bold italic face.
"
-msgstr ""
+msgstr "Negreta i cursiva.
"
#: ../src/html/helpwnd.cpp:1270
msgid "bold italic underlined
"
-msgstr ""
+msgstr "negreta i cursiva subratllada
"
#: ../src/html/helpwnd.cpp:1265
msgid "Bold face. "
-msgstr ""
+msgstr "Negreta. "
#: ../src/html/helpwnd.cpp:1264
msgid "Italic face. "
-msgstr ""
+msgstr "Cursiva. "
#: ../src/richtext/richtextliststylepage.cpp:494
#: ../src/richtext/richtextbulletspage.cpp:286
msgid ">"
-msgstr ""
+msgstr ">"
#: ../src/generic/dbgrptg.cpp:318
msgid "A debug report has been generated in the directory\n"
-msgstr ""
+msgstr "S'ha generat un informe de depuració al driectori\n"
#: ../src/common/debugrpt.cpp:573
msgid "A debug report has been generated. It can be found in"
-msgstr ""
+msgstr "S'ha generat un informe de depuració. Podeu trobar-lo a"
#: ../src/common/xtixml.cpp:418
msgid "A non empty collection must consist of 'element' nodes"
-msgstr ""
+msgstr "Una col·lecció no buida ha de consistir de nodes 'element'"
#: ../src/richtext/richtextliststylepage.cpp:304
#: ../src/richtext/richtextliststylepage.cpp:306
#: ../src/richtext/richtextbulletspage.cpp:244
#: ../src/richtext/richtextbulletspage.cpp:246
msgid "A standard bullet name."
-msgstr ""
+msgstr "Un nom de pic està ndard."
#: ../src/common/paper.cpp:217
-#, fuzzy
msgid "A0 sheet, 841 x 1189 mm"
-msgstr "Full A4, 210 x 297 mm"
+msgstr "Full A0, 841 x 1189 mm"
#: ../src/common/paper.cpp:218
-#, fuzzy
msgid "A1 sheet, 594 x 841 mm"
-msgstr "Full A3, 297 x 420 mm"
+msgstr "Full A1, 594 x 841 mm"
#: ../src/common/paper.cpp:159
msgid "A2 420 x 594 mm"
-msgstr ""
+msgstr "A2, 420 x 594 mm"
#: ../src/common/paper.cpp:156
-#, fuzzy
msgid "A3 Extra 322 x 445 mm"
-msgstr "C3 Sobre, 324 x 458 mm"
+msgstr "A3 extra, 322 x 445 mm"
#: ../src/common/paper.cpp:161
-#, fuzzy
msgid "A3 Extra Transverse 322 x 445 mm"
-msgstr "C3 Sobre, 324 x 458 mm"
+msgstr "A3 extra transversal, 322 x 445 mm"
#: ../src/common/paper.cpp:170
-#, fuzzy
msgid "A3 Rotated 420 x 297 mm"
-msgstr "Full A4, 210 x 297 mm"
+msgstr "A3 girat, 420 x 297 mm"
#: ../src/common/paper.cpp:160
-#, fuzzy
msgid "A3 Transverse 297 x 420 mm"
-msgstr "Full A3, 297 x 420 mm"
+msgstr "A3 transversal, 297 x 420 mm"
#: ../src/common/paper.cpp:106
msgid "A3 sheet, 297 x 420 mm"
@@ -1205,22 +1124,19 @@ msgstr "Full A3, 297 x 420 mm"
#: ../src/common/paper.cpp:146
msgid "A4 Extra 9.27 x 12.69 in"
-msgstr ""
+msgstr "A4 extra, 9,27 x 12,69 polz."
#: ../src/common/paper.cpp:153
-#, fuzzy
msgid "A4 Plus 210 x 330 mm"
-msgstr "Full A4, 210 x 297 mm"
+msgstr "A4 plus, 210 x 330 mm"
#: ../src/common/paper.cpp:171
-#, fuzzy
msgid "A4 Rotated 297 x 210 mm"
-msgstr "Full A3, 297 x 420 mm"
+msgstr "A4 girat, 297 x 210 mm"
#: ../src/common/paper.cpp:148
-#, fuzzy
msgid "A4 Transverse 210 x 297 mm"
-msgstr "Full A4, 210 x 297 mm"
+msgstr "A4 transversal, 210 x 297 mm"
#: ../src/common/paper.cpp:97
msgid "A4 sheet, 210 x 297 mm"
@@ -1231,37 +1147,33 @@ msgid "A4 small sheet, 210 x 297 mm"
msgstr "Full petit A4, 210 x 297 mm"
#: ../src/common/paper.cpp:157
-#, fuzzy
msgid "A5 Extra 174 x 235 mm"
-msgstr "Full A5, 148 x 210 mm"
+msgstr "A5 extra, 174 x 235 mm"
#: ../src/common/paper.cpp:172
msgid "A5 Rotated 210 x 148 mm"
-msgstr ""
+msgstr "A5 girat, 210 x 148 mm"
#: ../src/common/paper.cpp:154
-#, fuzzy
msgid "A5 Transverse 148 x 210 mm"
-msgstr "Full A5, 148 x 210 mm"
+msgstr "A5 transversal, 148 x 210 mm"
#: ../src/common/paper.cpp:108
msgid "A5 sheet, 148 x 210 mm"
msgstr "Full A5, 148 x 210 mm"
#: ../src/common/paper.cpp:164
-#, fuzzy
msgid "A6 105 x 148 mm"
-msgstr "10 x 14 polz."
+msgstr "A6, 105 x 148 mm"
#: ../src/common/paper.cpp:177
-#, fuzzy
msgid "A6 Rotated 148 x 105 mm"
-msgstr "Full A5, 148 x 210 mm"
+msgstr "A6 girat, 148 x 105 mm"
#: ../src/generic/fontdlgg.cpp:83 ../src/richtext/richtextformatdlg.cpp:529
#: ../src/osx/carbon/fontdlg.cpp:153
msgid "ABCDEFGabcdefg12345"
-msgstr "ABCDEFGabcdefg12345"
+msgstr "ABCDabcd1234ÀÈÉÃÃÒóúüçl·l"
#: ../src/richtext/richtextsymboldlg.cpp:458 ../src/common/ftp.cpp:403
msgid "ASCII"
@@ -1269,65 +1181,64 @@ msgstr "ASCII"
#: ../src/common/stockitem.cpp:139
msgid "About"
-msgstr ""
+msgstr "Quant a"
#: ../src/generic/aboutdlgg.cpp:140 ../src/osx/menu_osx.cpp:558
#: ../src/msw/aboutdlg.cpp:64
#, c-format
msgid "About %s"
-msgstr ""
+msgstr "Quant a %s"
#: ../src/osx/menu_osx.cpp:560
msgid "About..."
-msgstr ""
+msgstr "Quant a..."
#: ../src/richtext/richtextsizepage.cpp:520
msgid "Absolute"
-msgstr ""
+msgstr "Absolut"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:873
-#, fuzzy
msgid "ActiveBorder"
-msgstr "Modern"
+msgstr "ActiveBorder"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:874
msgid "ActiveCaption"
-msgstr ""
+msgstr "ActiveCaption"
#: ../src/common/stockitem.cpp:207
msgid "Actual Size"
-msgstr ""
+msgstr "Mida real"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/stockitem.cpp:140 ../src/common/accelcmn.cpp:81
msgid "Add"
-msgstr ""
+msgstr "Suma"
#: ../src/richtext/richtextbuffer.cpp:11455
msgid "Add Column"
-msgstr ""
+msgstr "Afegeix una columna"
#: ../src/richtext/richtextbuffer.cpp:11392
msgid "Add Row"
-msgstr ""
+msgstr "Afegeix una fila"
#: ../src/html/helpwnd.cpp:432
msgid "Add current page to bookmarks"
-msgstr "Afegeix la pà gina actual a preferits"
+msgstr "Afegeix la pà gina actual als preferits"
#: ../src/generic/colrdlgg.cpp:366
msgid "Add to custom colours"
-msgstr "Afegeix a colors personalitzats"
+msgstr "Afegeix als colors personalitzats"
#: ../include/wx/xtiprop.h:255
msgid "AddToPropertyCollection called on a generic accessor"
-msgstr ""
+msgstr "S'ha cridat AddToPropertyCollection en un mètode d'accés genèric"
#: ../include/wx/xtiprop.h:193
msgid "AddToPropertyCollection called w/o valid adder"
-msgstr ""
+msgstr "S'ha cridat AddToPropertyCollection sense un afegidor và lid"
#: ../src/html/helpctrl.cpp:159
#, c-format
@@ -1336,34 +1247,32 @@ msgstr "S'està afegint el llibre %s"
#: ../src/common/preferencescmn.cpp:43
msgid "Advanced"
-msgstr ""
+msgstr "Avançat"
#: ../src/richtext/richtextliststylepage.cpp:435
msgid "After a paragraph:"
-msgstr ""
+msgstr "Després d'un parà graf:"
#: ../src/common/stockitem.cpp:172
msgid "Align Left"
-msgstr ""
+msgstr "Alinea a l'esquerra"
#: ../src/common/stockitem.cpp:173
-#, fuzzy
msgid "Align Right"
-msgstr "mitja nit"
+msgstr "Alinea a la dreta"
#: ../src/richtext/richtextsizepage.cpp:266
-#, fuzzy
msgid "Alignment"
-msgstr "dinovè"
+msgstr "Alineació"
#: ../src/generic/prntdlgg.cpp:215
msgid "All"
msgstr "Tot"
#: ../src/generic/filectrlg.cpp:1197 ../src/common/fldlgcmn.cpp:107
-#, fuzzy, c-format
+#, c-format
msgid "All files (%s)|%s"
-msgstr "Tots els fitxers (*)|*"
+msgstr "Tots els fitxers (%s)|%s"
#: ../include/wx/defs.h:2886
msgid "All files (*)|*"
@@ -1371,117 +1280,113 @@ msgstr "Tots els fitxers (*)|*"
#: ../include/wx/defs.h:2883
msgid "All files (*.*)|*.*"
-msgstr "Tots els fitxers (*.*) *.* "
+msgstr "Tots els fitxers (*.*)|*.*"
#: ../src/richtext/richtextstyles.cpp:1061
msgid "All styles"
-msgstr ""
+msgstr "Tots els estils"
#: ../src/propgrid/manager.cpp:1528
msgid "Alphabetic Mode"
-msgstr ""
+msgstr "Mode alfabètic"
#: ../src/common/xtistrm.cpp:425
msgid "Already Registered Object passed to SetObjectClassInfo"
-msgstr ""
+msgstr "S'ha passat un objecte ja registrat a SetObjectClassInfo"
#: ../src/unix/dialup.cpp:353
msgid "Already dialling ISP."
-msgstr "Ja s'està trucant a l'ISP."
+msgstr "Ja s'està trucant al proveïdor d'Internet."
#: ../src/common/accelcmn.cpp:331 ../src/univ/themes/win32.cpp:3756
msgid "Alt+"
-msgstr ""
+msgstr "Alt+"
#: ../src/richtext/richtextborderspage.cpp:577
#: ../src/richtext/richtextborderspage.cpp:579
msgid "An optional corner radius for adding rounded corners."
-msgstr ""
+msgstr "Un radi de cantonada opcional per a afegir cantonades arrodonides."
#: ../src/common/debugrpt.cpp:576
msgid "And includes the following files:\n"
-msgstr ""
+msgstr "I inclou els següents fitxers:\n"
#: ../src/generic/animateg.cpp:162
-#, fuzzy, c-format
+#, c-format
msgid "Animation file is not of type %ld."
-msgstr "El fitxer d'imatge no és del tipus %d."
+msgstr "El fitxer d'animació no és del tipus %ld."
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:872
msgid "AppWorkspace"
-msgstr ""
+msgstr "AppWorkspace"
#: ../src/generic/logg.cpp:1014
#, c-format
msgid "Append log to file '%s' (choosing [No] will overwrite it)?"
msgstr ""
-"Afegeix el registre al fitxer '%s' (escollir [No] sobrescriurà el fitxer)?"
+"Voleu afegir el registre al fitxer '%s'? (si trieu [No], se sobreescriurà )"
#: ../src/osx/menu_osx.cpp:577 ../src/osx/menu_osx.cpp:585
-#, fuzzy
msgid "Application"
-msgstr "Seccions"
+msgstr "Aplicació"
#: ../src/common/stockitem.cpp:141
msgid "Apply"
-msgstr ""
+msgstr "Aplica"
#: ../src/propgrid/advprops.cpp:1609
msgid "Aqua"
-msgstr ""
+msgstr "Cian"
#: ../src/richtext/richtextliststylepage.cpp:482
#: ../src/richtext/richtextbulletspage.cpp:274
msgid "Arabic"
-msgstr ""
+msgstr "Àrab"
#: ../src/common/fmapbase.cpp:153
msgid "Arabic (ISO-8859-6)"
msgstr "Àrab (ISO-8859-6)"
#: ../src/msw/ole/automtn.cpp:672
-#, fuzzy, c-format
+#, c-format
msgid "Argument %u not found."
-msgstr "no s'ha trobat el fitxer de catà leg per al domini '%s'"
+msgstr "No s'ha trobat l'argument %u."
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1753
-#, fuzzy
msgid "Arrow"
-msgstr "demà "
+msgstr "Fletxa"
#: ../src/generic/aboutdlgg.cpp:184
msgid "Artists"
-msgstr ""
+msgstr "Artistes"
#: ../src/common/stockitem.cpp:195
-#, fuzzy
msgid "Ascending"
-msgstr "s'està llegint"
+msgstr "Ascendent"
#: ../src/generic/filectrlg.cpp:433
msgid "Attributes"
-msgstr ""
+msgstr "Atributs"
#: ../src/richtext/richtextliststylepage.cpp:294
#: ../src/richtext/richtextbulletspage.cpp:232
#: ../src/richtext/richtextbulletspage.cpp:234
msgid "Available fonts."
-msgstr ""
+msgstr "Tipus de lletra disponibles."
#: ../src/common/paper.cpp:137
-#, fuzzy
msgid "B4 (ISO) 250 x 353 mm"
-msgstr "Full B4, 250 x 354 mm"
+msgstr "B4 (ISO), 250 x 354 mm"
#: ../src/common/paper.cpp:173
msgid "B4 (JIS) Rotated 364 x 257 mm"
-msgstr ""
+msgstr "B4 (JIS) girat, 364 x 257 mm"
#: ../src/common/paper.cpp:127
msgid "B4 Envelope, 250 x 353 mm"
-msgstr "B4 Sobre, 250 x 353 mm"
+msgstr "Sobre B4, 250 x 353 mm"
#: ../src/common/paper.cpp:109
msgid "B4 sheet, 250 x 354 mm"
@@ -1489,20 +1394,19 @@ msgstr "Full B4, 250 x 354 mm"
#: ../src/common/paper.cpp:158
msgid "B5 (ISO) Extra 201 x 276 mm"
-msgstr ""
+msgstr "B5 (ISO) extra, 201 x 276 mm"
#: ../src/common/paper.cpp:174
msgid "B5 (JIS) Rotated 257 x 182 mm"
-msgstr ""
+msgstr "B5 (JIS) girat, 257 x 182 mm"
#: ../src/common/paper.cpp:155
-#, fuzzy
msgid "B5 (JIS) Transverse 182 x 257 mm"
-msgstr "Full B5, 182 x 257 mil·lÃmetres"
+msgstr "B5 (JIS) transversal, 182 x 257 mm"
#: ../src/common/paper.cpp:128
msgid "B5 Envelope, 176 x 250 mm"
-msgstr "B5 Sobre, 176 x 250 mm"
+msgstr "Sobre B5, 176 x 250 mm"
#: ../src/common/paper.cpp:110
msgid "B5 sheet, 182 x 257 millimeter"
@@ -1510,24 +1414,24 @@ msgstr "Full B5, 182 x 257 mil·lÃmetres"
#: ../src/common/paper.cpp:182
msgid "B6 (JIS) 128 x 182 mm"
-msgstr ""
+msgstr "B6 (JIS), 128 x 182 mm"
#: ../src/common/paper.cpp:183
msgid "B6 (JIS) Rotated 182 x 128 mm"
-msgstr ""
+msgstr "B6 (JIS) girat, 182 x 128 mm"
#: ../src/common/paper.cpp:129
msgid "B6 Envelope, 176 x 125 mm"
-msgstr "B6 Sobre, 176 x 125 mm"
+msgstr "Sobre B6, 176 x 125 mm"
#: ../src/common/imagbmp.cpp:531 ../src/common/imagbmp.cpp:561
#: ../src/common/imagbmp.cpp:576
msgid "BMP: Couldn't allocate memory."
-msgstr "BMP: No s'ha pogut localitzar la memòria."
+msgstr "BMP: No s'ha pogut assignar la memòria."
#: ../src/common/imagbmp.cpp:100
msgid "BMP: Couldn't save invalid image."
-msgstr "BMP:No s'ha pogut desar la imatge invà lida."
+msgstr "BMP: No s'ha pogut desar una imatge invà lida."
#: ../src/common/imagbmp.cpp:356
msgid "BMP: Couldn't write RGB color map."
@@ -1535,11 +1439,11 @@ msgstr "BMP: No s'ha pogut escriure el mapa de colors RGB."
#: ../src/common/imagbmp.cpp:490
msgid "BMP: Couldn't write data."
-msgstr "BMP: No s'ha pogut escriure la dada."
+msgstr "BMP: No s'han pogut escriure les dades."
#: ../src/common/imagbmp.cpp:246
msgid "BMP: Couldn't write the file (Bitmap) header."
-msgstr "BMP: No s'ha pogut escriure la capçalera del fitxer (Mapa de bits)."
+msgstr "BMP: No s'ha pogut escriure la capçalera del fitxer (Bitmap)."
#: ../src/common/imagbmp.cpp:269
msgid "BMP: Couldn't write the file (BitmapInfo) header."
@@ -1547,33 +1451,30 @@ msgstr "BMP: No s'ha pogut escriure la capçalera del fitxer (BitmapInfo)."
#: ../src/common/imagbmp.cpp:140
msgid "BMP: wxImage doesn't have own wxPalette."
-msgstr "BMP:wxImage no té una wxPallette pròpia."
+msgstr "BMP: wxImage no té una wxPallette pròpia."
#. TRANSLATORS: Name of keyboard key
#: ../src/common/stockitem.cpp:142 ../src/common/accelcmn.cpp:52
-#, fuzzy
msgid "Back"
-msgstr "< &Enrere"
+msgstr "Endarrere"
#: ../src/richtext/richtextbackgroundpage.cpp:148
#: ../src/richtext/richtextformatdlg.cpp:384
-#, fuzzy
msgid "Background"
-msgstr "Enrere"
+msgstr "Fons"
#: ../src/richtext/richtextbackgroundpage.cpp:160
msgid "Background &colour:"
-msgstr ""
+msgstr "&Color de fons:"
#: ../src/osx/carbon/fontdlg.cpp:220
msgid "Background colour"
-msgstr ""
+msgstr "Color de fons"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:52
-#, fuzzy
msgid "Backspace"
-msgstr "< &Enrere"
+msgstr "Retrocés"
#: ../src/common/fmapbase.cpp:160
msgid "Baltic (ISO-8859-13)"
@@ -1585,29 +1486,29 @@ msgstr "BÃ ltic (antic) (ISO-8859-4)"
#: ../src/richtext/richtextliststylepage.cpp:426
msgid "Before a paragraph:"
-msgstr ""
+msgstr "Abans d'un parà graf:"
#: ../src/richtext/richtextliststylepage.cpp:489
#: ../src/richtext/richtextbulletspage.cpp:281
msgid "Bitmap"
-msgstr ""
+msgstr "Mapa de bits"
#: ../src/propgrid/advprops.cpp:1594
msgid "Black"
-msgstr ""
+msgstr "Negre"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1755
msgid "Blank"
-msgstr ""
+msgstr "Buit"
#: ../src/propgrid/advprops.cpp:1603
msgid "Blue"
-msgstr ""
+msgstr "Blau"
#: ../src/generic/colrdlgg.cpp:345
msgid "Blue:"
-msgstr ""
+msgstr "Blau:"
#: ../src/generic/fontdlgg.cpp:333 ../src/richtext/richtextfontpage.cpp:355
#: ../src/osx/carbon/fontdlg.cpp:354 ../src/common/stockitem.cpp:143
@@ -1616,78 +1517,74 @@ msgstr "Negreta"
#: ../src/richtext/richtextborderspage.cpp:230
#: ../src/richtext/richtextborderspage.cpp:388
-#, fuzzy
msgid "Border"
-msgstr "Modern"
+msgstr "Vora"
#: ../src/richtext/richtextformatdlg.cpp:379
-#, fuzzy
msgid "Borders"
-msgstr "Modern"
+msgstr "Vores"
#: ../src/richtext/richtextsizepage.cpp:288 ../src/common/stockitem.cpp:144
msgid "Bottom"
-msgstr ""
+msgstr "Inferior"
#: ../src/generic/prntdlgg.cpp:893
msgid "Bottom margin (mm):"
msgstr "Marge inferior (mm):"
#: ../src/richtext/richtextbuffer.cpp:9383
-#, fuzzy
msgid "Box Properties"
-msgstr "&Previ"
+msgstr "Propietats de la caixa"
#: ../src/richtext/richtextstyles.cpp:1065
-#, fuzzy
msgid "Box styles"
-msgstr "&Següent >"
+msgstr "Estils de caixa"
#: ../src/propgrid/advprops.cpp:1602
msgid "Brown"
-msgstr ""
+msgstr "Marró"
#: ../src/common/filepickercmn.cpp:43 ../src/common/filepickercmn.cpp:44
msgid "Browse"
-msgstr ""
+msgstr "Navega"
#: ../src/richtext/richtextliststylepage.cpp:245
#: ../src/richtext/richtextbulletspage.cpp:182
msgid "Bullet &Alignment:"
-msgstr ""
+msgstr "&Alineació del pic:"
#: ../src/richtext/richtextliststylepage.cpp:309
msgid "Bullet style"
-msgstr ""
+msgstr "Estil de pic"
#: ../src/richtext/richtextformatdlg.cpp:359
msgid "Bullets"
-msgstr ""
+msgstr "Pics"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1756
msgid "Bullseye"
-msgstr ""
+msgstr "Diana"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:875
msgid "ButtonFace"
-msgstr ""
+msgstr "ButtonFace"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:876
msgid "ButtonHighlight"
-msgstr ""
+msgstr "ButtonHighlight"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:877
msgid "ButtonShadow"
-msgstr ""
+msgstr "ButtonShadow"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:878
msgid "ButtonText"
-msgstr ""
+msgstr "ButtonText"
#: ../src/common/paper.cpp:98
msgid "C sheet, 17 x 22 in"
@@ -1699,48 +1596,49 @@ msgstr "&Neteja"
#: ../src/generic/fontdlgg.cpp:406
msgid "C&olour:"
-msgstr ""
+msgstr "C&olor:"
#: ../src/common/paper.cpp:123
msgid "C3 Envelope, 324 x 458 mm"
-msgstr "C3 Sobre, 324 x 458 mm"
+msgstr "Sobre C3, 324 x 458 mm"
#: ../src/common/paper.cpp:124
msgid "C4 Envelope, 229 x 324 mm"
-msgstr "C4 Sobre, 229 x 324 mm"
+msgstr "Sobre C4, 229 x 324 mm"
#: ../src/common/paper.cpp:122
msgid "C5 Envelope, 162 x 229 mm"
-msgstr "C5 Sobre, 162 x 229 mm"
+msgstr "Sobre C5, 162 x 229 mm"
#: ../src/common/paper.cpp:125
msgid "C6 Envelope, 114 x 162 mm"
-msgstr "C6 Sobre, 114 x 162 mm"
+msgstr "Sobre C6, 114 x 162 mm"
#: ../src/common/paper.cpp:126
msgid "C65 Envelope, 114 x 229 mm"
-msgstr "C65 Sobre, 114 x 229 mm"
+msgstr "Sobre C65, 114 x 229 mm"
#: ../src/common/stockitem.cpp:146
msgid "CD-Rom"
-msgstr ""
+msgstr "CD-ROM"
#: ../src/html/chm.cpp:815 ../src/html/chm.cpp:874
-#, fuzzy
msgid "CHM handler currently supports only local files!"
-msgstr "El manegador ZIP generalment només permet l'ús de fitxers locals!"
+msgstr "El gestor de CHM actualment només suporta fitxers locals!"
#: ../src/richtext/richtextfontpage.cpp:282
msgid "Ca&pitals"
-msgstr ""
+msgstr "Ma&júscules"
#: ../src/common/cmdproc.cpp:267
msgid "Can't &Undo "
-msgstr "No s'ha pogut &desfer"
+msgstr "No es pot &desfer "
#: ../src/common/image.cpp:2824
msgid "Can't automatically determine the image format for non-seekable input."
msgstr ""
+"No es pot determinar automà ticament el format d'imatge en una entrada "
+"seqüencial."
#: ../src/msw/registry.cpp:506
#, c-format
@@ -1750,7 +1648,7 @@ msgstr "No es pot tancar la clau de registre '%s'"
#: ../src/msw/registry.cpp:584
#, c-format
msgid "Can't copy values of unsupported type %d."
-msgstr "No es pot copiar els valors del tipus %d no suportat."
+msgstr "No es poden copiar els valors del tipus no suportat %d."
#: ../src/msw/registry.cpp:487
#, c-format
@@ -1759,7 +1657,7 @@ msgstr "No es pot crear la clau de registre '%s'"
#: ../src/msw/thread.cpp:665
msgid "Can't create thread"
-msgstr "No es pot crear un fil"
+msgstr "No es pot crear el fil d'execució"
#: ../src/msw/window.cpp:3691
#, c-format
@@ -1769,71 +1667,69 @@ msgstr "No es pot crear una finestra de la classe '%s'"
#: ../src/msw/registry.cpp:777
#, c-format
msgid "Can't delete key '%s'"
-msgstr "No es pot eliminar la tecla '%s'"
+msgstr "No es pot suprimir la clau '%s'"
#: ../src/msw/iniconf.cpp:458
#, c-format
msgid "Can't delete the INI file '%s'"
-msgstr "No es pot eliminar el fitxer INI '%s'"
+msgstr "No es pot suprimir el fitxer INI '%s'"
#: ../src/msw/registry.cpp:805
#, c-format
msgid "Can't delete value '%s' from key '%s'"
-msgstr "No es pot eliminar el valor '%s' de la clau '%s'"
+msgstr "No es pot suprimir el valor '%s' de la clau '%s'"
#: ../src/msw/registry.cpp:1171
#, c-format
msgid "Can't enumerate subkeys of key '%s'"
-msgstr "No es poden enumerar subclaus de la clau '%s'"
+msgstr "No es poden enumerar les subclaus de la clau '%s'"
#: ../src/msw/registry.cpp:1132
#, c-format
msgid "Can't enumerate values of key '%s'"
-msgstr "No es pot enumerar els valors de la clau '%s'"
+msgstr "No es poden enumerar els valors de la clau '%s'"
#: ../src/msw/registry.cpp:1389
-#, fuzzy, c-format
+#, c-format
msgid "Can't export value of unsupported type %d."
-msgstr "No es pot copiar els valors del tipus %d no suportat."
+msgstr "No es pot exportar el valor del tipus de no suportat %d."
#: ../src/common/ffile.cpp:254
#, c-format
msgid "Can't find current position in file '%s'"
-msgstr "No es pot trobar la posició actual en el fitxer '%s'"
+msgstr "No es pot trobar la posició actual al fitxer '%s'"
#: ../src/msw/registry.cpp:418
#, c-format
msgid "Can't get info about registry key '%s'"
-msgstr "No es pot obtenir informació sobre la clau de registre '%s'"
+msgstr "No es pot obtenir informació de la clau del registre '%s'"
#: ../src/common/zstream.cpp:346
-#, fuzzy
msgid "Can't initialize zlib deflate stream."
-msgstr "No es pot començar a mostrar."
+msgstr "No es pot inicialitzar el flux de deflació de zlib."
#: ../src/common/zstream.cpp:185
-#, fuzzy
msgid "Can't initialize zlib inflate stream."
-msgstr "No es pot començar a mostrar."
+msgstr "No es pot inicialitzar el flux d'inflació de zlib."
#: ../src/msw/fswatcher.cpp:476
#, c-format
msgid "Can't monitor non-existent directory \"%s\" for changes."
-msgstr ""
+msgstr "No es pot supervisar si hi ha canvis al directori inexistent \"%s\"."
#: ../src/msw/registry.cpp:454
#, c-format
msgid "Can't open registry key '%s'"
-msgstr "No es pot obrir la clau de registre '%s'"
+msgstr "No es pot obrir la clau del registre '%s'"
#: ../src/common/zstream.cpp:252
-#, fuzzy, c-format
+#, c-format
msgid "Can't read from inflate stream: %s"
-msgstr "no es pot llegir des del fitxer descriptor %s"
+msgstr "No es pot llegir del flux d'inflació: %s"
#: ../src/common/zstream.cpp:244
msgid "Can't read inflate stream: unexpected EOF in underlying stream."
-msgstr ""
+msgstr "No es pot llegir el flux d'inflació: EOF inesperat al flux subjacent."
#: ../src/msw/registry.cpp:1064
#, c-format
@@ -1849,31 +1745,30 @@ msgstr "No es pot llegir el valor de la clau '%s'"
#: ../src/common/image.cpp:2620
#, c-format
msgid "Can't save image to file '%s': unknown extension."
-msgstr "No es pot desar la imatge en el format '%s': extensió desconeguda."
+msgstr "No es pot desar la imatge al fitxer '%s': extensió desconeguda."
#: ../src/generic/logg.cpp:573 ../src/generic/logg.cpp:976
msgid "Can't save log contents to file."
-msgstr "No es pot desar els continguts de registre al fitxer."
+msgstr "No es pot desar el contingut de registre al fitxer."
#: ../src/msw/thread.cpp:629
msgid "Can't set thread priority"
-msgstr "No es pot fixar la prioritat fils"
+msgstr "No es pot definir la prioritat del fil d'execució"
#: ../src/msw/registry.cpp:896 ../src/msw/registry.cpp:938
#: ../src/msw/registry.cpp:1081
#, c-format
msgid "Can't set value of '%s'"
-msgstr "No es pot fixar un valor de '%s'"
+msgstr "No es pot definir el valor de '%s'"
#: ../src/unix/utilsunx.cpp:351
-#, fuzzy
msgid "Can't write to child process's stdin"
-msgstr "No s'ha pogut acabar el procés %d"
+msgstr "No es pot escriure a l'entrada està ndard del procés fill"
#: ../src/common/zstream.cpp:427
-#, fuzzy, c-format
+#, c-format
msgid "Can't write to deflate stream: %s"
-msgstr "no es pot escriure en el fitxer descriptiu %d"
+msgstr "No es pot escriure al flux de deflació: %s"
#. TRANSLATORS: Name of keyboard key
#: ../include/wx/msgdlg.h:279 ../src/richtext/richtextstyledlg.cpp:300
@@ -1881,78 +1776,77 @@ msgstr "no es pot escriure en el fitxer descriptiu %d"
#: ../src/msw/msgdlg.cpp:454 ../src/msw/progdlg.cpp:673
#: ../src/gtk1/fontdlg.cpp:144 ../src/motif/msgdlg.cpp:196
msgid "Cancel"
-msgstr "Anul·la"
+msgstr "Cancel·la"
#: ../src/common/filefn.cpp:1261
#, c-format
msgid "Cannot enumerate files '%s'"
-msgstr "No es pot enumerar els fitxers '%s'"
+msgstr "No es poden enumerar els fitxers '%s'"
#: ../src/msw/dir.cpp:263
#, c-format
msgid "Cannot enumerate files in directory '%s'"
-msgstr "No es pot enumerar els fitxers en el directori '%s'"
+msgstr "No es poden enumerar els fitxers del directori '%s'"
#: ../src/msw/dialup.cpp:523
#, c-format
msgid "Cannot find active dialup connection: %s"
-msgstr "No es pot trobar connexió activa de marcatge directe: %s"
+msgstr "No es pot trobar cap connexió activa de marcatge telefònic: %s"
#: ../src/msw/dialup.cpp:827
msgid "Cannot find the location of address book file"
-msgstr "No es pot localitzar el fitxer del llibre d'adreces"
+msgstr "No es pot trobar la ubicació del fitxer de la llibreta d'adreces"
#: ../src/msw/ole/automtn.cpp:562
-#, fuzzy, c-format
+#, c-format
msgid "Cannot get an active instance of \"%s\""
-msgstr "No es pot trobar connexió activa de marcatge directe: %s"
+msgstr "No es pot obtenir una instà ncia activa de \"%s\""
#: ../src/unix/threadpsx.cpp:1035
#, c-format
msgid "Cannot get priority range for scheduling policy %d."
msgstr ""
-"No es pot obtenir un rang de prioritats per la polÃtica de planificació %d."
+"No es pot obtenir el rang de prioritats per a la polÃtica de planificació %d."
#: ../src/unix/utilsunx.cpp:987
msgid "Cannot get the hostname"
-msgstr "No es pot obtenir el nom d'hostatger"
+msgstr "No es pot obtenir el nom del servidor"
#: ../src/unix/utilsunx.cpp:1023
msgid "Cannot get the official hostname"
-msgstr "No es pot obtenir el nom oficial de l'hostatger"
+msgstr "No es pot obtenir el nom oficial del servidor"
#: ../src/msw/dialup.cpp:928
msgid "Cannot hang up - no active dialup connection."
-msgstr "No es pot penjar - no hi ha activa cap connexió de marcatge directe."
+msgstr "No es pot penjar - no hi ha cap connexió de marcatge telefònic activa."
#: ../include/wx/msw/ole/oleutils.h:51
msgid "Cannot initialize OLE"
msgstr "No es pot inicialitzar OLE"
#: ../src/common/socket.cpp:853
-#, fuzzy
msgid "Cannot initialize sockets"
-msgstr "No es pot inicialitzar OLE"
+msgstr "No es poden inicialitzar els sòcols"
#: ../src/msw/volume.cpp:619
#, c-format
msgid "Cannot load icon from '%s'."
-msgstr "No es pot carregar la icona des de '%s'"
+msgstr "No es pot carregar la icona de '%s'."
#: ../src/xrc/xmlres.cpp:360
-#, fuzzy, c-format
+#, c-format
msgid "Cannot load resources from '%s'."
-msgstr "No es pot carregar recursos des del fitxer '%s'."
+msgstr "No es poden carregar recursos de '%s'."
#: ../src/xrc/xmlres.cpp:742
#, c-format
msgid "Cannot load resources from file '%s'."
-msgstr "No es pot carregar recursos des del fitxer '%s'."
+msgstr "No es poden carregar els recursos del fitxer '%s'."
#: ../src/html/htmlfilt.cpp:137
#, c-format
msgid "Cannot open HTML document: %s"
-msgstr "No es pot obrir el document HTML %s"
+msgstr "No es pot obrir el document HTML: %s"
#: ../src/html/helpdata.cpp:667
#, c-format
@@ -1962,7 +1856,7 @@ msgstr "No es pot obrir el llibre d'ajuda HTML: %s"
#: ../src/html/helpdata.cpp:299
#, c-format
msgid "Cannot open contents file: %s"
-msgstr "No es pot obrir fitxers de contingut: %s"
+msgstr "No es pot obrir el fitxer de continguts: %s"
#: ../src/generic/dcpsg.cpp:1667
msgid "Cannot open file for PostScript printing!"
@@ -1974,9 +1868,9 @@ msgid "Cannot open index file: %s"
msgstr "No es pot obrir el fitxer d'Ãndex: %s"
#: ../src/xrc/xmlres.cpp:724
-#, fuzzy, c-format
+#, c-format
msgid "Cannot open resources file '%s'."
-msgstr "No es pot carregar recursos des del fitxer '%s'."
+msgstr "No es pot obrir el fitxer de recursos '%s'."
#: ../src/html/helpwnd.cpp:1534
msgid "Cannot print empty page."
@@ -1985,45 +1879,46 @@ msgstr "No es pot imprimir una pà gina buida."
#: ../src/msw/volume.cpp:507
#, c-format
msgid "Cannot read typename from '%s'!"
-msgstr "No es pot llegir el tipus de nom des de '%s'!"
+msgstr "No es pot llegir el nom del tipus de '%s'!"
#: ../src/msw/thread.cpp:888
-#, fuzzy, c-format
+#, c-format
msgid "Cannot resume thread %lx"
-msgstr "No es pot enumerar els fitxers en el directori '%s'"
+msgstr "No es pot reprendre el fil d'execució %lx"
#: ../src/unix/threadpsx.cpp:1016
msgid "Cannot retrieve thread scheduling policy."
-msgstr "No es pot recuperar la cadena de polÃtica de planificació."
+msgstr "No es pot obtenir la polÃtica de planificació de fils d'execució."
#: ../src/common/intl.cpp:558
#, c-format
msgid "Cannot set locale to language \"%s\"."
-msgstr ""
+msgstr "No es pot definir la configuració local a la llengua \"%s\"."
#: ../src/unix/threadpsx.cpp:831 ../src/msw/thread.cpp:546
msgid "Cannot start thread: error writing TLS."
-msgstr "No es pot iniciar la cadena: error en escriure TLS."
+msgstr ""
+"No es pot iniciar el fil d'execució: s'ha produït un error en escriure el "
+"TLS."
#: ../src/msw/thread.cpp:872
-#, fuzzy, c-format
+#, c-format
msgid "Cannot suspend thread %lx"
-msgstr "No es pot suspendre en fil %x"
+msgstr "No es pot suspendre el fil d'execució %lx"
#: ../src/msw/thread.cpp:794
msgid "Cannot wait for thread termination"
-msgstr "No es pot esperar per a l'acabament de cadena"
+msgstr "No es pot esperar a la finalització del fil d'execució"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:75
-#, fuzzy
msgid "Capital"
-msgstr "cursiva"
+msgstr "Majúscules"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:879
msgid "CaptionText"
-msgstr ""
+msgstr "CaptionText"
#: ../src/html/helpwnd.cpp:533
msgid "Case sensitive"
@@ -2031,12 +1926,11 @@ msgstr "Distingeix entre majúscules i minúscules"
#: ../src/propgrid/manager.cpp:1509
msgid "Categorized Mode"
-msgstr ""
+msgstr "Mode categoritzat"
#: ../src/richtext/richtextbuffer.cpp:9968
-#, fuzzy
msgid "Cell Properties"
-msgstr "&Previ"
+msgstr "Propietats de la cel·la"
#: ../src/common/fmapbase.cpp:161
msgid "Celtic (ISO-8859-14)"
@@ -2045,11 +1939,11 @@ msgstr "Cèltic (ISO-8859-14)"
#: ../src/richtext/richtextindentspage.cpp:160
#: ../src/richtext/richtextliststylepage.cpp:349
msgid "Cen&tred"
-msgstr ""
+msgstr "Cen&trat"
#: ../src/common/stockitem.cpp:170
msgid "Centered"
-msgstr ""
+msgstr "Centrat"
#: ../src/common/fmapbase.cpp:149
msgid "Central European (ISO-8859-2)"
@@ -2058,295 +1952,286 @@ msgstr "Europeu central (ISO-8859-2)"
#: ../src/richtext/richtextliststylepage.cpp:250
#: ../src/richtext/richtextbulletspage.cpp:187
msgid "Centre"
-msgstr ""
+msgstr "Centre"
#: ../src/richtext/richtextindentspage.cpp:162
#: ../src/richtext/richtextindentspage.cpp:164
#: ../src/richtext/richtextliststylepage.cpp:351
#: ../src/richtext/richtextliststylepage.cpp:353
-#, fuzzy
msgid "Centre text."
-msgstr "No es pot crear un fil"
+msgstr "Centra el text."
#: ../src/richtext/richtextsizepage.cpp:287
-#, fuzzy
msgid "Centred"
-msgstr "No es pot crear un fil"
+msgstr "Centrat"
#: ../src/richtext/richtextliststylepage.cpp:280
#: ../src/richtext/richtextbulletspage.cpp:219
-#, fuzzy
msgid "Ch&oose..."
-msgstr "&Tanca"
+msgstr "T&ria..."
#: ../src/richtext/richtextbuffer.cpp:4354
msgid "Change List Style"
-msgstr ""
+msgstr "Canvia l'estil de llista"
#: ../src/richtext/richtextbuffer.cpp:3709
msgid "Change Object Style"
-msgstr ""
+msgstr "Canvia l'estil d'objecte"
#: ../src/richtext/richtextbuffer.cpp:3982
#: ../src/richtext/richtextbuffer.cpp:8129
-#, fuzzy
msgid "Change Properties"
-msgstr "&Previ"
+msgstr "Canvia les propietats"
#: ../src/richtext/richtextbuffer.cpp:3526
msgid "Change Style"
-msgstr ""
+msgstr "Canvia l'estil"
#: ../src/common/fileconf.cpp:341
#, c-format
msgid "Changes won't be saved to avoid overwriting the existing file \"%s\""
msgstr ""
+"Els canvis no es desaran per a evitar sobreescriure el fitxer existent \"%s\""
#: ../src/gtk/filepicker.cpp:190 ../src/gtk/filedlg.cpp:87
-#, fuzzy, c-format
+#, c-format
msgid "Changing current directory to \"%s\" failed"
-msgstr "No s'ha pogut crear un directori %s/.gnome."
+msgstr "No s'ha pogut canviar el directori actual a \"%s\""
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1757
msgid "Character"
-msgstr ""
+msgstr "Carà cter"
#: ../src/richtext/richtextstyles.cpp:1063
msgid "Character styles"
-msgstr ""
+msgstr "Estils de carà cter"
#: ../src/richtext/richtextliststylepage.cpp:224
#: ../src/richtext/richtextliststylepage.cpp:226
#: ../src/richtext/richtextbulletspage.cpp:161
#: ../src/richtext/richtextbulletspage.cpp:163
msgid "Check to add a period after the bullet."
-msgstr ""
+msgstr "Marqueu-ho per a afegir un punt després del pic."
#: ../src/richtext/richtextliststylepage.cpp:238
#: ../src/richtext/richtextliststylepage.cpp:240
#: ../src/richtext/richtextbulletspage.cpp:175
#: ../src/richtext/richtextbulletspage.cpp:177
msgid "Check to add a right parenthesis."
-msgstr ""
+msgstr "Marqueu-ho per a afegir un parèntesi a la dreta."
#: ../src/richtext/richtextborderspage.cpp:383
#: ../src/richtext/richtextborderspage.cpp:385
#: ../src/richtext/richtextborderspage.cpp:551
#: ../src/richtext/richtextborderspage.cpp:553
msgid "Check to edit all borders simultaneously."
-msgstr ""
+msgstr "Marqueu-ho per a editar totes les vores alhora."
#: ../src/richtext/richtextliststylepage.cpp:231
#: ../src/richtext/richtextliststylepage.cpp:233
#: ../src/richtext/richtextbulletspage.cpp:168
#: ../src/richtext/richtextbulletspage.cpp:170
msgid "Check to enclose the bullet in parentheses."
-msgstr ""
+msgstr "Marqueu-ho per a envoltar el pic entre parèntesis."
#: ../src/richtext/richtextfontpage.cpp:315
#: ../src/richtext/richtextfontpage.cpp:317
msgid "Check to indicate right-to-left text layout."
-msgstr ""
+msgstr "Marqueu-ho per a indicar una disposició de text de dreta a esquerra."
#: ../src/osx/carbon/fontdlg.cpp:356 ../src/osx/carbon/fontdlg.cpp:358
msgid "Check to make the font bold."
-msgstr ""
+msgstr "Marqueu-ho per a fer que la lletra sigui negreta."
#: ../src/osx/carbon/fontdlg.cpp:363 ../src/osx/carbon/fontdlg.cpp:365
msgid "Check to make the font italic."
-msgstr ""
+msgstr "Marqueu-ho per a fer que la lletra sigui cursiva."
#: ../src/osx/carbon/fontdlg.cpp:372 ../src/osx/carbon/fontdlg.cpp:374
msgid "Check to make the font underlined."
-msgstr ""
+msgstr "Marqueu-ho per a fer que la lletra sigui subratllada."
#: ../src/richtext/richtextstyledlg.cpp:289
#: ../src/richtext/richtextstyledlg.cpp:291
msgid "Check to restart numbering."
-msgstr ""
+msgstr "Marqueu-ho per a reiniciar la numeració."
#: ../src/richtext/richtextfontpage.cpp:277
#: ../src/richtext/richtextfontpage.cpp:279
msgid "Check to show a line through the text."
-msgstr ""
+msgstr "Marqueu-ho per a mostrar una ratlla a través del text."
#: ../src/richtext/richtextfontpage.cpp:284
#: ../src/richtext/richtextfontpage.cpp:286
msgid "Check to show the text in capitals."
-msgstr ""
+msgstr "Marqueu-ho per a mostrar el text en majúscules."
#: ../src/richtext/richtextfontpage.cpp:291
#: ../src/richtext/richtextfontpage.cpp:293
msgid "Check to show the text in small capitals."
-msgstr ""
+msgstr "Marqueu-ho per a mostrar el text en versaleta."
#: ../src/richtext/richtextfontpage.cpp:305
#: ../src/richtext/richtextfontpage.cpp:307
msgid "Check to show the text in subscript."
-msgstr ""
+msgstr "Marqueu-ho per a mostrar el text en subÃndex."
#: ../src/richtext/richtextfontpage.cpp:298
#: ../src/richtext/richtextfontpage.cpp:300
msgid "Check to show the text in superscript."
-msgstr ""
+msgstr "Marqueu-ho per a mostrar el text en superÃndex."
#: ../src/richtext/richtextfontpage.cpp:322
#: ../src/richtext/richtextfontpage.cpp:324
msgid "Check to suppress hyphenation."
-msgstr ""
+msgstr "Marqueu-ho per a suprimir la divisió de paraules."
#: ../src/msw/dialup.cpp:763
msgid "Choose ISP to dial"
-msgstr "Trieu l'ISP a trucar"
+msgstr "Trieu el proveïdor d'Internet a qui voleu trucar"
#: ../src/propgrid/props.cpp:1922
-#, fuzzy
msgid "Choose a directory:"
-msgstr "Crea directori"
+msgstr "Trieu un directori:"
#: ../src/propgrid/props.cpp:1975
-#, fuzzy
msgid "Choose a file"
-msgstr "Trieu la font"
+msgstr "Trieu un fitxer"
#: ../src/generic/colrdlgg.cpp:158 ../src/gtk/colordlg.cpp:54
-#, fuzzy
msgid "Choose colour"
-msgstr "Trieu la font"
+msgstr "Trieu un color"
#: ../src/generic/fontpickerg.cpp:50 ../src/gtk/fontdlg.cpp:77
#: ../src/gtk1/fontdlg.cpp:125
msgid "Choose font"
-msgstr "Trieu la font"
+msgstr "Trieu el tipus de lletra"
#: ../src/common/module.cpp:74
#, c-format
msgid "Circular dependency involving module \"%s\" detected."
-msgstr ""
+msgstr "S'ha detectat una dependència circular que implica el mòdul \"%s\"."
#: ../src/aui/tabmdi.cpp:108 ../src/generic/mdig.cpp:97
msgid "Cl&ose"
msgstr "&Tanca"
#: ../src/msw/ole/automtn.cpp:684
-#, fuzzy
msgid "Class not registered."
-msgstr "No es pot crear un fil"
+msgstr "Classe no registrada."
#. TRANSLATORS: Name of keyboard key
#: ../src/common/stockitem.cpp:147 ../src/common/accelcmn.cpp:72
-#, fuzzy
msgid "Clear"
-msgstr "&Neteja"
+msgstr "Neteja"
#: ../src/generic/logg.cpp:514
msgid "Clear the log contents"
-msgstr "Neteja els continguts del registre."
+msgstr "Neteja el contingut del registre"
#: ../src/richtext/richtextstyledlg.cpp:252
#: ../src/richtext/richtextstyledlg.cpp:254
msgid "Click to apply the selected style."
-msgstr ""
+msgstr "Feu clic per a aplicar l'estil seleccionat."
#: ../src/richtext/richtextliststylepage.cpp:281
#: ../src/richtext/richtextliststylepage.cpp:283
#: ../src/richtext/richtextbulletspage.cpp:220
#: ../src/richtext/richtextbulletspage.cpp:222
msgid "Click to browse for a symbol."
-msgstr ""
+msgstr "Feu clic per a cercar un sÃmbol."
#: ../src/osx/carbon/fontdlg.cpp:403 ../src/osx/carbon/fontdlg.cpp:405
msgid "Click to cancel changes to the font."
-msgstr ""
+msgstr "Feu clic per a cancel·lar els canvis al tipus de lletra."
#: ../src/generic/fontdlgg.cpp:472 ../src/generic/fontdlgg.cpp:491
msgid "Click to cancel the font selection."
-msgstr ""
+msgstr "Feu clic per a cancel·lar la selecció del tipus de lletra."
#: ../src/osx/carbon/fontdlg.cpp:384 ../src/osx/carbon/fontdlg.cpp:386
msgid "Click to change the font colour."
-msgstr ""
+msgstr "Feu clic per a canviar el color de la lletra."
#: ../src/richtext/richtextfontpage.cpp:267
#: ../src/richtext/richtextfontpage.cpp:269
msgid "Click to change the text background colour."
-msgstr ""
+msgstr "Feu clic per a canviar el color de fons del text."
#: ../src/richtext/richtextfontpage.cpp:254
#: ../src/richtext/richtextfontpage.cpp:256
msgid "Click to change the text colour."
-msgstr ""
+msgstr "Feu clic per a canviar el text del color."
#: ../src/richtext/richtextliststylepage.cpp:195
#: ../src/richtext/richtextliststylepage.cpp:197
msgid "Click to choose the font for this level."
-msgstr ""
+msgstr "Feu clic per a triar el tipus de lletra d'aquest nivell."
#: ../src/richtext/richtextstyledlg.cpp:279
#: ../src/richtext/richtextstyledlg.cpp:281
-#, fuzzy
msgid "Click to close this window."
-msgstr "Tanca aquesta finestra"
+msgstr "Feu clic per a tancar aquesta finestra."
#: ../src/osx/carbon/fontdlg.cpp:410 ../src/osx/carbon/fontdlg.cpp:412
msgid "Click to confirm changes to the font."
-msgstr ""
+msgstr "Feu clic per a confirmar els canvis al tipus de lletra."
#: ../src/generic/fontdlgg.cpp:477 ../src/generic/fontdlgg.cpp:479
#: ../src/generic/fontdlgg.cpp:484 ../src/generic/fontdlgg.cpp:486
msgid "Click to confirm the font selection."
-msgstr ""
+msgstr "Feu clic per a confirmació la selecció del tipus de lletra."
#: ../src/richtext/richtextstyledlg.cpp:244
#: ../src/richtext/richtextstyledlg.cpp:246
msgid "Click to create a new box style."
-msgstr ""
+msgstr "Feu clic per a crear un estil de caixa nou."
#: ../src/richtext/richtextstyledlg.cpp:226
#: ../src/richtext/richtextstyledlg.cpp:228
msgid "Click to create a new character style."
-msgstr ""
+msgstr "Feu clic per a crear un estil de carà cter nou."
#: ../src/richtext/richtextstyledlg.cpp:238
#: ../src/richtext/richtextstyledlg.cpp:240
msgid "Click to create a new list style."
-msgstr ""
+msgstr "Feu clic per a crear un estil de llista nou."
#: ../src/richtext/richtextstyledlg.cpp:232
#: ../src/richtext/richtextstyledlg.cpp:234
msgid "Click to create a new paragraph style."
-msgstr ""
+msgstr "Feu clic per a crear un estil de parà graf nou."
#: ../src/richtext/richtexttabspage.cpp:133
#: ../src/richtext/richtexttabspage.cpp:135
msgid "Click to create a new tab position."
-msgstr ""
+msgstr "Feu clic per a crear una posició de tabulació nova."
#: ../src/richtext/richtexttabspage.cpp:145
#: ../src/richtext/richtexttabspage.cpp:147
msgid "Click to delete all tab positions."
-msgstr ""
+msgstr "Feu clic per a suprimir totes les posicions de tabulació."
#: ../src/richtext/richtextstyledlg.cpp:270
#: ../src/richtext/richtextstyledlg.cpp:272
msgid "Click to delete the selected style."
-msgstr ""
+msgstr "Feu clic per a suprimir l'estil seleccionat."
#: ../src/richtext/richtexttabspage.cpp:139
#: ../src/richtext/richtexttabspage.cpp:141
msgid "Click to delete the selected tab position."
-msgstr ""
+msgstr "Feu clic per a suprimir la posició de tabulació seleccionada."
#: ../src/richtext/richtextstyledlg.cpp:264
#: ../src/richtext/richtextstyledlg.cpp:266
msgid "Click to edit the selected style."
-msgstr ""
+msgstr "Feu clic per a editar l'estil seleccionat."
#: ../src/richtext/richtextstyledlg.cpp:258
#: ../src/richtext/richtextstyledlg.cpp:260
msgid "Click to rename the selected style."
-msgstr ""
+msgstr "Feu clic per a canviar el nom de l'estil seleccionat."
#: ../src/generic/dbgrptg.cpp:97 ../src/generic/progdlgg.cpp:759
#: ../src/richtext/richtextstyledlg.cpp:277
@@ -2362,7 +2247,7 @@ msgstr "Tanca-ho tot"
#: ../src/common/stockitem.cpp:266
msgid "Close current document"
-msgstr ""
+msgstr "Tanca el document actual"
#: ../src/generic/logg.cpp:516
msgid "Close this window"
@@ -2371,36 +2256,34 @@ msgstr "Tanca aquesta finestra"
#. TRANSLATORS: Action for manipulating a tree control
#: ../src/generic/datavgen.cpp:6006
msgid "Collapse"
-msgstr ""
+msgstr "Contrau"
#: ../src/common/stockitem.cpp:193
-#, fuzzy
msgid "Color"
-msgstr "Trieu la font"
+msgstr "Color"
#: ../src/richtext/richtextformatdlg.cpp:776
-#, fuzzy
msgid "Colour"
-msgstr "Trieu la font"
+msgstr "Color"
#: ../src/msw/colordlg.cpp:158
-#, fuzzy, c-format
+#, c-format
msgid "Colour selection dialog failed with error %0lx."
-msgstr "L'execució de l'ordre '%s' ha fallit."
+msgstr "El dià leg de selecció de color ha fallat amb l'error %0lx."
#: ../src/osx/carbon/fontdlg.cpp:380
msgid "Colour:"
-msgstr ""
+msgstr "Color:"
#: ../src/generic/datavgen.cpp:6077
#, c-format
msgid "Column %u"
-msgstr ""
+msgstr "Columna %u"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:114
msgid "Command"
-msgstr ""
+msgstr "Ordre"
#: ../src/common/init.cpp:196
#, c-format
@@ -2408,21 +2291,25 @@ msgid ""
"Command line argument %d couldn't be converted to Unicode and will be "
"ignored."
msgstr ""
+"No s'ha pogut convertir a Unicode l'argument %d de la lÃnia d'ordres i "
+"s'ignorarà ."
#: ../src/msw/fontdlg.cpp:120
-#, fuzzy, c-format
+#, c-format
msgid "Common dialog failed with error code %0lx."
-msgstr "L'execució de l'ordre '%s' ha fallit."
+msgstr "El dià leg normal ha fallat amb el codi d'error %0lx."
#: ../src/gtk/window.cpp:4649
msgid ""
"Compositing not supported by this system, please enable it in your Window "
"Manager."
msgstr ""
+"Aquest sistema no suporta la composició, activeu-la al vostre gestor de "
+"finestres."
#: ../src/html/helpwnd.cpp:1551
msgid "Compressed HTML Help file (*.chm)|*.chm|"
-msgstr ""
+msgstr "Fitxer d'ajuda HTML comprimit (*.chm)|*.chm|"
#: ../src/generic/dirctrlg.cpp:444
msgid "Computer"
@@ -2431,7 +2318,7 @@ msgstr "Ordinador"
#: ../src/common/fileconf.cpp:934
#, c-format
msgid "Config entry name cannot start with '%c'."
-msgstr "No es pot iniciar un nom d'entrada de configuració per '%c'."
+msgstr "El nom d'una entrada de configuració no pot començar amb '%c'."
#: ../src/generic/filedlgg.cpp:349 ../src/gtk/filedlg.cpp:60
msgid "Confirm"
@@ -2439,7 +2326,7 @@ msgstr "Confirma"
#: ../src/html/htmlwin.cpp:566
msgid "Connecting..."
-msgstr "S'està connectant"
+msgstr "S'està connectant..."
#: ../src/html/helpwnd.cpp:475
msgid "Contents"
@@ -2448,12 +2335,12 @@ msgstr "Contingut"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:880
msgid "ControlDark"
-msgstr ""
+msgstr "ControlDark"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:881
msgid "ControlLight"
-msgstr ""
+msgstr "ControlLight"
#: ../src/common/strconv.cpp:2262
#, c-format
@@ -2461,66 +2348,61 @@ msgid "Conversion to charset '%s' doesn't work."
msgstr "La conversió al joc de carà cters '%s' no funciona."
#: ../src/common/stockitem.cpp:149
-#, fuzzy
msgid "Convert"
-msgstr "Contingut"
+msgstr "Converteix"
#: ../src/html/htmlwin.cpp:1079
-#, fuzzy, c-format
+#, c-format
msgid "Copied to clipboard:\"%s\""
-msgstr "No s'ha pogut fixar les dades del porta-retalls"
+msgstr "S'ha copiat al porta-retalls: \"%s\""
#: ../src/generic/prntdlgg.cpp:247
msgid "Copies:"
msgstr "Còpies:"
#: ../src/common/stockitem.cpp:150 ../src/stc/stc_i18n.cpp:18
-#, fuzzy
msgid "Copy"
-msgstr "&Copia"
+msgstr "Copia"
#: ../src/common/stockitem.cpp:258
-#, fuzzy
msgid "Copy selection"
-msgstr "Seccions"
+msgstr "Copia la selecció"
#: ../src/richtext/richtextborderspage.cpp:566
#: ../src/richtext/richtextborderspage.cpp:601
msgid "Corner"
-msgstr ""
+msgstr "Cantonada"
#: ../src/richtext/richtextborderspage.cpp:575
msgid "Corner &radius:"
-msgstr ""
+msgstr "&Radi de la cantonada:"
#: ../src/html/chm.cpp:718
-#, fuzzy, c-format
+#, c-format
msgid "Could not create temporary file '%s'"
-msgstr "no es pot extreure el fitxer temporal '%s'"
+msgstr "No s'ha pogut crear el fitxer temporal '%s'"
#: ../src/html/chm.cpp:273
#, c-format
msgid "Could not extract %s into %s: %s"
-msgstr ""
+msgstr "No s'ha pogut extreure %s a %s: %s"
#: ../src/generic/tabg.cpp:1048
msgid "Could not find tab for id"
-msgstr "No es pot trobar la pestanya per a id"
+msgstr "No s'ha pogut trobar la pestanya per a l'identificador"
#: ../src/gtk/notifmsg.cpp:108
-#, fuzzy
msgid "Could not initalize libnotify."
-msgstr "No s'ha pogut iniciar la impressió"
+msgstr "No s'ha pogut inicialitzar libnotify."
#: ../src/html/chm.cpp:444
-#, fuzzy, c-format
+#, c-format
msgid "Could not locate file '%s'."
-msgstr "No es pot obrir el fitxer '%s'."
+msgstr "No s'ha pogut trobar el fitxer '%s'."
#: ../src/common/filefn.cpp:1403
-#, fuzzy
msgid "Could not set current working directory"
-msgstr "No s'ha pogut obtenir el directori en funcionament"
+msgstr "No s'ha pogut definir el directori de treball actual"
#: ../src/common/prntbase.cpp:2015
msgid "Could not start document preview."
@@ -2529,77 +2411,71 @@ msgstr "No s'ha pogut iniciar la previsualització del document."
#: ../src/generic/printps.cpp:178 ../src/msw/printwin.cpp:210
#: ../src/gtk/print.cpp:1132
msgid "Could not start printing."
-msgstr "No s'ha pogut iniciar la impressió"
+msgstr "No s'ha pogut iniciar la impressió."
#: ../src/common/wincmn.cpp:2125
msgid "Could not transfer data to window"
-msgstr "No s'ha pogut transferir dades a la finestra"
+msgstr "No s'han pogut transferir dades a la finestra"
#: ../src/msw/imaglist.cpp:187 ../src/msw/imaglist.cpp:224
#: ../src/msw/imaglist.cpp:249 ../src/msw/dragimag.cpp:185
#: ../src/msw/dragimag.cpp:220
msgid "Couldn't add an image to the image list."
-msgstr "No s'ha pogut afegir una imatge al llistat d'imatges."
+msgstr "No s'ha pogut afegir una imatge a la llista d'imatges."
#: ../src/osx/glcanvas_osx.cpp:414 ../src/unix/glx11.cpp:558
#: ../src/msw/glcanvas.cpp:616
-#, fuzzy
msgid "Couldn't create OpenGL context"
-msgstr "No s'ha pogut crear un temporitzador"
+msgstr "No s'ha pogut crear el context d'OpenGL"
#: ../src/msw/timer.cpp:134
msgid "Couldn't create a timer"
msgstr "No s'ha pogut crear un temporitzador"
#: ../src/osx/carbon/overlay.cpp:122
-#, fuzzy
msgid "Couldn't create the overlay window"
-msgstr "No s'ha pogut crear un temporitzador"
+msgstr "No s'ha pogut crear la finestra de superposició"
#: ../src/common/translation.cpp:2024
-#, fuzzy
msgid "Couldn't enumerate translations"
-msgstr "No s'ha acabat la cadena"
+msgstr "No s'han pogut enumerar les traduccions"
#: ../src/common/dynlib.cpp:120
#, c-format
msgid "Couldn't find symbol '%s' in a dynamic library"
-msgstr "No s'ha pogut trobar el sÃmbol '%s' en una llibreria dinà mica"
+msgstr "No s'ha pogut trobar el sÃmbol '%s' en una biblioteca dinà mica"
#: ../src/msw/thread.cpp:915
msgid "Couldn't get the current thread pointer"
-msgstr "No es pot obtenir l'actual cadena de punter"
+msgstr "No s'ha pogut obtenir el punter del fil d'execució actual"
#: ../src/osx/carbon/overlay.cpp:129
-#, fuzzy
msgid "Couldn't init the context on the overlay window"
-msgstr "No es pot obtenir l'actual cadena de punter"
+msgstr "No s'ha pogut inicialitzar el context a la finestra de superposició"
#: ../src/common/imaggif.cpp:244
-#, fuzzy
msgid "Couldn't initialize GIF hash table."
-msgstr "No es pot començar a mostrar."
+msgstr "No s'ha pogut inicialitzar la taula de resums del GIF."
#: ../src/common/imagpng.cpp:409
msgid "Couldn't load a PNG image - file is corrupted or not enough memory."
msgstr ""
-"No s'ha pogut carregar una imatge PNG - el fitxer és corromput o no hi ha "
+"No s'ha pogut carregar una imatge PNG - el fitxer és corrupte o no hi ha "
"prou memòria."
#: ../src/unix/sound.cpp:470
-#, fuzzy, c-format
+#, c-format
msgid "Couldn't load sound data from '%s'."
-msgstr "No es pot carregar la icona des de '%s'"
+msgstr "No s'han pogut carregar les dades de so de '%s'."
#: ../src/msw/dirdlg.cpp:435
-#, fuzzy
msgid "Couldn't obtain folder name"
-msgstr "No s'ha pogut crear un temporitzador"
+msgstr "No s'ha pogut obtenir el nom de la carpeta"
#: ../src/unix/sound_sdl.cpp:229
-#, fuzzy, c-format
+#, c-format
msgid "Couldn't open audio: %s"
-msgstr "No es pot obrir el fitxer '%s'"
+msgstr "No s'ha pogut obrir l'Ã udio: %s"
#: ../src/msw/ole/dataobj.cpp:377
#, c-format
@@ -2610,7 +2486,7 @@ msgstr "No s'ha pogut registrar el format '%s' del porta-retalls."
#, c-format
msgid "Couldn't retrieve information about list control item %d."
msgstr ""
-"No es pot recuperar informació sobre els llistat %d de controls d'elements."
+"No es pot obtenir la informació de l'element de control de la llista %d."
#: ../src/common/imagpng.cpp:498 ../src/common/imagpng.cpp:509
#: ../src/common/imagpng.cpp:519
@@ -2619,35 +2495,34 @@ msgstr "No s'ha pogut desar la imatge PNG."
#: ../src/msw/thread.cpp:684
msgid "Couldn't terminate thread"
-msgstr "No s'ha acabat la cadena"
+msgstr "No s'ha pogut finalitzar el fil d'execució"
#: ../src/common/xtistrm.cpp:166
#, c-format
msgid "Create Parameter %s not found in declared RTTI Parameters"
-msgstr ""
+msgstr "No s'ha trobat el parà metre Create %s als parà metres RTTI declarats"
#: ../src/generic/dirdlgg.cpp:288
msgid "Create directory"
-msgstr "Crea directori"
+msgstr "Crea un directori"
#: ../src/generic/filedlgg.cpp:212 ../src/generic/dirdlgg.cpp:111
msgid "Create new directory"
msgstr "Crea un directori nou"
#: ../src/xrc/xmlres.cpp:2460
-#, fuzzy, c-format
+#, c-format
msgid "Creating %s \"%s\" failed."
-msgstr "L'execució de l'ordre '%s' ha fallit."
+msgstr "No s'ha pogut crear %s \"%s\"."
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1758
msgid "Cross"
-msgstr ""
+msgstr "Creu"
#: ../src/common/accelcmn.cpp:333
-#, fuzzy
msgid "Ctrl+"
-msgstr "control"
+msgstr "Ctrl+"
#: ../src/richtext/richtextctrl.cpp:332 ../src/osx/textctrl_osx.cpp:576
#: ../src/common/stockitem.cpp:151 ../src/msw/textctrl.cpp:2507
@@ -2661,29 +2536,24 @@ msgstr "Directori actual:"
#. TRANSLATORS: Custom colour choice entry
#: ../src/propgrid/advprops.cpp:896 ../src/propgrid/advprops.cpp:1574
#: ../src/propgrid/advprops.cpp:1612
-#, fuzzy
msgid "Custom"
-msgstr "Mida de la font:"
+msgstr "Personalitzat"
#: ../src/gtk/print.cpp:217
-#, fuzzy
msgid "Custom size"
-msgstr "Mida de la font:"
+msgstr "Mida personalitzada"
#: ../src/common/headerctrlcmn.cpp:60
-#, fuzzy
msgid "Customize Columns"
-msgstr "Mida de la font:"
+msgstr "Personalitza les columnes"
#: ../src/common/stockitem.cpp:151 ../src/stc/stc_i18n.cpp:17
-#, fuzzy
msgid "Cut"
-msgstr "Re&talla"
+msgstr "Retalla"
#: ../src/common/stockitem.cpp:259
-#, fuzzy
msgid "Cut selection"
-msgstr "Seccions"
+msgstr "Retalla la selecció"
#: ../src/common/fmapbase.cpp:152
msgid "Cyrillic (ISO-8859-5)"
@@ -2691,60 +2561,57 @@ msgstr "CirÃl·lic (ISO-8859-5)"
#: ../src/common/paper.cpp:99
msgid "D sheet, 22 x 34 in"
-msgstr "Full D 22 x 34 polzades"
+msgstr "Full D, 22 x 34 polz."
#: ../src/msw/dde.cpp:703
msgid "DDE poke request failed"
-msgstr "Sol·licitud de DDE poke fallida"
+msgstr "Ha fallat la petició d'atiar el DDE"
#: ../src/common/imagbmp.cpp:1169
msgid "DIB Header: Encoding doesn't match bitdepth."
-msgstr ""
-"Capçalera DIB: la codificació no coincideix amb la profunditat de bits."
+msgstr "Capçalera DIB: La codificació no coincideix amb la profunditat de bits."
#: ../src/common/imagbmp.cpp:1074
msgid "DIB Header: Image height > 32767 pixels for file."
-msgstr "Capçalera DIB: Imatge amb alçada > 32767 pÃxels per fitxer."
+msgstr "Capçalera DIB: Alçada de la imatge > 32767 pÃxels per fitxer."
#: ../src/common/imagbmp.cpp:1066
msgid "DIB Header: Image width > 32767 pixels for file."
-msgstr "Capçalera DIB: Imatge amb amplada > 32767 pÃxels per fitxer."
+msgstr "Capçalera DIB: Amplada de la imatge > 32767 pÃxels per fitxer."
#: ../src/common/imagbmp.cpp:1094
msgid "DIB Header: Unknown bitdepth in file."
-msgstr "Capçalera DIB: profunditat de bits desconeguda en el fitxer."
+msgstr "Capçalera DIB: Profunditat de bits desconeguda al fitxer."
#: ../src/common/imagbmp.cpp:1149
msgid "DIB Header: Unknown encoding in file."
-msgstr "Capçalera DIB: codificació desconeguda en el fitxer."
+msgstr "Capçalera DIB: Codificació desconeguda al fitxer."
#: ../src/common/paper.cpp:121
msgid "DL Envelope, 110 x 220 mm"
msgstr "Sobre DL, 110 x 220 mm"
#: ../src/richtext/richtextborderspage.cpp:613
-#, fuzzy
msgid "Dashed"
-msgstr "Data"
+msgstr "Ratllat"
#: ../src/generic/dbgrptg.cpp:300
#, c-format
msgid "Debug report \"%s\""
-msgstr ""
+msgstr "Informe de depuració \"%s\""
#: ../src/common/debugrpt.cpp:210
-#, fuzzy
msgid "Debug report couldn't be created."
-msgstr "No s'ha pogut crear el directori '%s'"
+msgstr "No s'ha pogut crear l'informe de depuració."
#: ../src/common/debugrpt.cpp:553
msgid "Debug report generation has failed."
-msgstr ""
+msgstr "No s'ha pogut generar l'informe de depuració."
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:84
msgid "Decimal"
-msgstr ""
+msgstr "Decimal"
#: ../src/generic/fontdlgg.cpp:323
msgid "Decorative"
@@ -2752,118 +2619,104 @@ msgstr "Decoratiu"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1752
-#, fuzzy
msgid "Default"
-msgstr "predeterminat"
+msgstr "Per defecte"
#: ../src/common/fmapbase.cpp:796
msgid "Default encoding"
-msgstr "Codificació predeterminada"
+msgstr "Codificació per defecte"
#: ../src/dfb/fontmgr.cpp:180
-#, fuzzy
msgid "Default font"
-msgstr "Codificació predeterminada"
+msgstr "Tipus de lletra per defecte"
#: ../src/generic/prntdlgg.cpp:510
-#, fuzzy
msgid "Default printer"
-msgstr "Codificació predeterminada"
+msgstr "Impressora per defecte"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:51
-#, fuzzy
msgid "Del"
-msgstr "&Elimina"
+msgstr "Supr"
#. TRANSLATORS: Name of keyboard key
#: ../src/richtext/richtextbuffer.cpp:8221 ../src/common/stockitem.cpp:152
#: ../src/common/accelcmn.cpp:50 ../src/stc/stc_i18n.cpp:20
-#, fuzzy
msgid "Delete"
-msgstr "&Elimina"
+msgstr "Suprimeix"
#: ../src/richtext/richtexttabspage.cpp:144
-#, fuzzy
msgid "Delete A&ll"
-msgstr "Selecciona-ho &tot"
+msgstr "Suprimeix-ho &tot"
#: ../src/richtext/richtextbuffer.cpp:11341
-#, fuzzy
msgid "Delete Column"
-msgstr "Seccions"
+msgstr "Suprimeix la columna"
#: ../src/richtext/richtextbuffer.cpp:11291
-#, fuzzy
msgid "Delete Row"
-msgstr "&Elimina"
+msgstr "Suprimeix la fila"
#: ../src/richtext/richtextstyledlg.cpp:782
-#, fuzzy
msgid "Delete Style"
-msgstr "&Elimina"
+msgstr "Suprimeix l'estil"
#: ../src/richtext/richtextctrl.cpp:1345 ../src/richtext/richtextctrl.cpp:1584
-#, fuzzy
msgid "Delete Text"
-msgstr "&Elimina"
+msgstr "Suprimeix el text"
#: ../src/generic/editlbox.cpp:170
-#, fuzzy
msgid "Delete item"
-msgstr "&Elimina"
+msgstr "Suprimeix l'element"
#: ../src/common/stockitem.cpp:260
-#, fuzzy
msgid "Delete selection"
-msgstr "Seccions"
+msgstr "Suprimeix la selecció"
#: ../src/richtext/richtextstyledlg.cpp:782
-#, fuzzy, c-format
+#, c-format
msgid "Delete style %s?"
-msgstr "&Elimina"
+msgstr "Voleu suprimir l'estil %s?"
#: ../src/unix/snglinst.cpp:301
#, c-format
msgid "Deleted stale lock file '%s'."
-msgstr "S'ha eliminat el fitxer antic de bloqueig '%s'."
+msgstr "S'ha suprimit el fitxer antic de blocatge '%s'."
#: ../src/common/secretstore.cpp:220
-#, fuzzy, c-format
+#, c-format
msgid "Deleting password for \"%s/%s\" failed: %s."
-msgstr "L'execució de l'ordre '%s' ha fallit."
+msgstr "No s'ha pogut suprimir la contrasenya de \"%s/%s\": %s."
#: ../src/common/module.cpp:124
#, c-format
msgid "Dependency \"%s\" of module \"%s\" doesn't exist."
-msgstr ""
+msgstr "La dependència \"%s\" del mòdul \"%s\" no existeix."
#: ../src/common/stockitem.cpp:196
-#, fuzzy
msgid "Descending"
-msgstr "Codificació predeterminada"
+msgstr "Descendent"
#. TRANSLATORS: Keyword of system colour
#: ../src/generic/dirctrlg.cpp:526 ../src/propgrid/advprops.cpp:882
msgid "Desktop"
-msgstr ""
+msgstr "Desktop"
#: ../src/generic/aboutdlgg.cpp:70
msgid "Developed by "
-msgstr ""
+msgstr "Desenvolupat per "
#: ../src/generic/aboutdlgg.cpp:176
msgid "Developers"
-msgstr ""
+msgstr "Desenvolupadors"
#: ../src/msw/dialup.cpp:374
msgid ""
"Dial up functions are unavailable because the remote access service (RAS) is "
"not installed on this machine. Please install it."
msgstr ""
-"Les funcions de marcatge directe no es troben disponibles ja que el servei "
-"d'accés remot (RAS) no es troba instal·lat en aquest maquinari. Reinstal·leu-"
-"ho."
+"Les funcions de marcatge telefònic no estan disponibles perquè el servei "
+"d'accés remot (RAS) no està instal·lat en aquest dispositiu. Instal·leu-lo."
#: ../src/generic/tipdlg.cpp:211
msgid "Did you know..."
@@ -2872,12 +2725,11 @@ msgstr "SabÃeu que..."
#: ../src/dfb/wrapdfb.cpp:63
#, c-format
msgid "DirectFB error %d occurred."
-msgstr ""
+msgstr "S'ha produït un error %d de DirectFB."
#: ../src/motif/filedlg.cpp:219
-#, fuzzy
msgid "Directories"
-msgstr "Decoratiu"
+msgstr "Directoris"
#: ../src/common/filefn.cpp:1183
#, c-format
@@ -2885,22 +2737,22 @@ msgid "Directory '%s' couldn't be created"
msgstr "No s'ha pogut crear el directori '%s'"
#: ../src/common/filefn.cpp:1197
-#, fuzzy, c-format
+#, c-format
msgid "Directory '%s' couldn't be deleted"
-msgstr "No s'ha pogut crear el directori '%s'"
+msgstr "No s'ha pogut suprimir el directori '%s'"
#: ../src/generic/dirdlgg.cpp:204
msgid "Directory does not exist"
-msgstr "Directori no existeix"
+msgstr "El directori no existeix"
#: ../src/generic/filectrlg.cpp:1399
-#, fuzzy
msgid "Directory doesn't exist."
-msgstr "Directori no existeix"
+msgstr "El directori no existeix."
#: ../src/common/docview.cpp:457
msgid "Discard changes and reload the last saved version?"
msgstr ""
+"Voleu descartar els canvis i tornar a carregar la darrera versió desada?"
#: ../src/html/helpwnd.cpp:502
msgid ""
@@ -2908,41 +2760,41 @@ msgid ""
"insensitive."
msgstr ""
"Mostra tots els elements de l'Ãndex que continguin la subcadena donada. La "
-"recerca no distingeix majúscules de minúscules."
+"cerca no distingeix entre majúscules i minúscules."
#: ../src/html/helpwnd.cpp:679
msgid "Display options dialog"
-msgstr "Mostra les opcions del dià leg"
+msgstr "Mostra el dià leg d'opcions"
#: ../src/html/helpwnd.cpp:322
msgid "Displays help as you browse the books on the left."
-msgstr ""
+msgstr "Mostra l'ajuda mentre navegueu pels llibres de l'esquerra."
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:85
msgid "Divide"
-msgstr ""
+msgstr "Divisió"
#: ../src/common/docview.cpp:533
-#, fuzzy, c-format
+#, c-format
msgid "Do you want to save changes to %s?"
-msgstr "Voleu desar els canvis del document"
+msgstr "Voleu desar els canvis fets a %s?"
#: ../src/common/prntbase.cpp:542
msgid "Document:"
-msgstr ""
+msgstr "Document:"
#: ../src/generic/aboutdlgg.cpp:73
msgid "Documentation by "
-msgstr ""
+msgstr "Documentació feta per "
#: ../src/generic/aboutdlgg.cpp:180
msgid "Documentation writers"
-msgstr ""
+msgstr "Redactors de la documentació"
#: ../src/common/sizer.cpp:2799
msgid "Don't Save"
-msgstr ""
+msgstr "No desis"
#: ../src/html/htmlwin.cpp:633
msgid "Done"
@@ -2953,23 +2805,21 @@ msgid "Done."
msgstr "Fet."
#: ../src/richtext/richtextborderspage.cpp:612
-#, fuzzy
msgid "Dotted"
-msgstr "Fet"
+msgstr "Puntejat"
#: ../src/richtext/richtextborderspage.cpp:614
-#, fuzzy
msgid "Double"
-msgstr "Fet"
+msgstr "Doble"
#: ../src/common/paper.cpp:176
msgid "Double Japanese Postcard Rotated 148 x 200 mm"
-msgstr ""
+msgstr "Targeta postal japonesa doble girada, 148 x 200 mm"
#: ../src/common/xtixml.cpp:273
#, c-format
msgid "Doubly used id : %d"
-msgstr ""
+msgstr "Identificador utilitzat dues vegades: %d"
#. TRANSLATORS: Name of keyboard key
#: ../src/generic/fdrepdlg.cpp:152 ../src/common/stockitem.cpp:153
@@ -2979,27 +2829,25 @@ msgstr "Avall"
#: ../src/richtext/richtextctrl.cpp:865
msgid "Drag"
-msgstr ""
+msgstr "Arrossega"
#: ../src/common/paper.cpp:100
msgid "E sheet, 34 x 44 in"
msgstr "Full E, 34 x 44 polz."
#: ../src/unix/fswatcher_inotify.cpp:561
-#, fuzzy
msgid "EOF while reading from inotify descriptor"
-msgstr "no es pot llegir des del fitxer descriptor %s"
+msgstr "EOF mentre es llegia del descriptor inotify"
#: ../src/common/stockitem.cpp:154
msgid "Edit"
-msgstr ""
+msgstr "Edita"
#: ../src/generic/editlbox.cpp:168
msgid "Edit item"
-msgstr ""
+msgstr "Edita l'element"
#: ../include/wx/generic/progdlgg.h:84
-#, fuzzy
msgid "Elapsed time:"
msgstr "Temps transcorregut:"
@@ -3008,119 +2856,113 @@ msgstr "Temps transcorregut:"
#: ../src/richtext/richtextsizepage.cpp:465
#: ../src/richtext/richtextsizepage.cpp:467
msgid "Enable the height value."
-msgstr ""
+msgstr "Activa el valor d'alçada."
#: ../src/richtext/richtextsizepage.cpp:438
#: ../src/richtext/richtextsizepage.cpp:440
-#, fuzzy
msgid "Enable the maximum width value."
-msgstr "No s'ha pogut iniciar la impressió"
+msgstr "Activa el valor mà xim d'amplada."
#: ../src/richtext/richtextsizepage.cpp:411
#: ../src/richtext/richtextsizepage.cpp:413
msgid "Enable the minimum height value."
-msgstr ""
+msgstr "Activa el valor d'alçada mÃnima."
#: ../src/richtext/richtextsizepage.cpp:384
#: ../src/richtext/richtextsizepage.cpp:386
-#, fuzzy
msgid "Enable the minimum width value."
-msgstr "No s'ha pogut iniciar la impressió"
+msgstr "Activa el valor mÃnim d'amplada."
#: ../src/richtext/richtextsizepage.cpp:319
#: ../src/richtext/richtextsizepage.cpp:321
msgid "Enable the width value."
-msgstr ""
+msgstr "Activa el valor d'amplada."
#: ../src/richtext/richtextsizepage.cpp:280
#: ../src/richtext/richtextsizepage.cpp:282
-#, fuzzy
msgid "Enable vertical alignment."
-msgstr "No s'ha pogut iniciar la impressió"
+msgstr "Activa l'alineació vertical."
#: ../src/richtext/richtextbackgroundpage.cpp:162
#: ../src/richtext/richtextbackgroundpage.cpp:164
msgid "Enables a background colour."
-msgstr ""
+msgstr "Activa un color de fons."
#: ../src/richtext/richtextbackgroundpage.cpp:196
#: ../src/richtext/richtextbackgroundpage.cpp:198
msgid "Enables a shadow."
-msgstr ""
+msgstr "Activa una ombra."
#: ../src/richtext/richtextbackgroundpage.cpp:300
#: ../src/richtext/richtextbackgroundpage.cpp:302
-#, fuzzy
msgid "Enables the blur distance."
-msgstr "No s'ha pogut iniciar la impressió"
+msgstr "Activa la distà ncia de difuminat."
#: ../src/richtext/richtextbackgroundpage.cpp:260
#: ../src/richtext/richtextbackgroundpage.cpp:262
msgid "Enables the shadow colour."
-msgstr ""
+msgstr "Activa el color de l'ombra."
#: ../src/richtext/richtextbackgroundpage.cpp:327
#: ../src/richtext/richtextbackgroundpage.cpp:329
msgid "Enables the shadow opacity."
-msgstr ""
+msgstr "Activa l'opacitat de l'ombra."
#: ../src/richtext/richtextbackgroundpage.cpp:273
#: ../src/richtext/richtextbackgroundpage.cpp:275
msgid "Enables the shadow spread."
-msgstr ""
+msgstr "Activa la difusió de l'ombra."
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:66
msgid "End"
-msgstr ""
+msgstr "Fi"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:55
-#, fuzzy
msgid "Enter"
-msgstr "Imprimeix"
+msgstr "Retorn"
#: ../src/richtext/richtextstyledlg.cpp:934
msgid "Enter a box style name"
-msgstr ""
+msgstr "Introduïu un nom per a l'estil de caixa"
#: ../src/richtext/richtextstyledlg.cpp:606
msgid "Enter a character style name"
-msgstr ""
+msgstr "Introduïu un nom per a l'estil de carà cter"
#: ../src/richtext/richtextstyledlg.cpp:820
msgid "Enter a list style name"
-msgstr ""
+msgstr "Introduïu un nom per a l'estil de llista"
#: ../src/richtext/richtextstyledlg.cpp:893
msgid "Enter a new style name"
-msgstr ""
+msgstr "Introduïu un nom per a l'estil nou"
#: ../src/richtext/richtextstyledlg.cpp:654
msgid "Enter a paragraph style name"
-msgstr ""
+msgstr "Introduïu un nom per a l'estil de parà graf"
#: ../src/generic/dbgrptg.cpp:174
-#, fuzzy, c-format
+#, c-format
msgid "Enter command to open file \"%s\":"
-msgstr "no s'ha pogut obrir el fitxer '%s'"
+msgstr "Introduïu l'ordre per a obrir el fitxer \"%s\":"
#: ../src/generic/helpext.cpp:459
msgid "Entries found"
-msgstr "Entrades trobades:"
+msgstr "Entrades trobades"
#: ../src/common/paper.cpp:142
-#, fuzzy
msgid "Envelope Invite 220 x 220 mm"
-msgstr "Sobre DL, 110 x 220 mm"
+msgstr "Sobre d'invitació, 220 x 220 mm"
#: ../src/common/config.cpp:469
-#, fuzzy, c-format
+#, c-format
msgid ""
"Environment variables expansion failed: missing '%c' at position %u in '%s'."
msgstr ""
-"Ha fallat la expansió de las variables d'entorn: falta '%c' en la posició %d "
-"a '%s'."
+"No s'han pogut expandir les variables d'entorn: manca '%c' a la posició %u a "
+"'%s'."
#: ../src/generic/filedlgg.cpp:357 ../src/generic/dirctrlg.cpp:570
#: ../src/generic/dirctrlg.cpp:588 ../src/generic/dirctrlg.cpp:599
@@ -3133,48 +2975,42 @@ msgid "Error"
msgstr "Error"
#: ../src/unix/epolldispatcher.cpp:103
-#, fuzzy
msgid "Error closing epoll descriptor"
-msgstr "Error en crear directori"
+msgstr "S'ha produït un error en tancar el descriptor epoll"
#: ../src/unix/fswatcher_kqueue.cpp:114
-#, fuzzy
msgid "Error closing kqueue instance"
-msgstr "Error en crear directori"
+msgstr "S'ha produït un error en tancar la instà ncia kqueue"
#: ../src/common/filefn.cpp:1049
-#, fuzzy, c-format
+#, c-format
msgid "Error copying the file '%s' to '%s'."
-msgstr "Impossible de copiar el fitxer '%s' a '%s'"
+msgstr "S'ha produït un error en copiar el fitxer '%s' a '%s'."
#: ../src/generic/dirdlgg.cpp:222
msgid "Error creating directory"
-msgstr "Error en crear directori"
+msgstr "S'ha produït un error en crear el directori"
#: ../src/common/imagbmp.cpp:1181
-#, fuzzy
msgid "Error in reading image DIB."
-msgstr "Error en llegir imatge DIB"
+msgstr "S'ha produït un error en llegir la imatge DIB."
#: ../src/propgrid/propgrid.cpp:6696
#, c-format
msgid "Error in resource: %s"
-msgstr ""
+msgstr "S'ha produït un error al recurs: %s"
#: ../src/common/fileconf.cpp:422
-#, fuzzy
msgid "Error reading config options."
-msgstr "Error en llegir imatge DIB"
+msgstr "S'ha produït un error en llegir les opcions de configuració."
#: ../src/common/fileconf.cpp:1029
-#, fuzzy
msgid "Error saving user configuration data."
-msgstr "Error en llegir imatge DIB"
+msgstr "S'ha produït un error en desar les dades de configuració de l'usuari."
#: ../src/gtk/print.cpp:722
-#, fuzzy
msgid "Error while printing: "
-msgstr "Espereu mentre simprimeix\n"
+msgstr "S'ha produït un error en imprimir: "
#: ../src/common/log.cpp:219
msgid "Error: "
@@ -3183,198 +3019,192 @@ msgstr "Error: "
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:69
msgid "Esc"
-msgstr ""
+msgstr "Esc"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:70
-#, fuzzy
msgid "Escape"
-msgstr "Apaïsat"
+msgstr "Escapada"
#: ../src/common/fmapbase.cpp:150
msgid "Esperanto (ISO-8859-3)"
msgstr "Esperanto (ISO-8859-3)"
#: ../include/wx/generic/progdlgg.h:85
-#, fuzzy
msgid "Estimated time:"
msgstr "Temps estimat:"
#: ../src/generic/dbgrptg.cpp:234
-#, fuzzy
msgid "Executable files (*.exe)|*.exe|"
-msgstr "Tots els fitxers (*.*) *.* "
+msgstr "Fitxers executables (*.exe)|*.exe|"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/stockitem.cpp:155 ../src/common/accelcmn.cpp:78
msgid "Execute"
-msgstr ""
+msgstr "Executa"
#: ../src/msw/utilsexc.cpp:876
#, c-format
msgid "Execution of command '%s' failed"
-msgstr "L'execució de l'ordre '%s' ha fallit."
+msgstr "Ha fallat l'execució de l'ordre '%s'"
#: ../src/common/paper.cpp:105
msgid "Executive, 7 1/4 x 10 1/2 in"
-msgstr "Executiu (7 1/4 x 10 1/2 polz. )"
+msgstr "Executiu, 7 1/4 x 10 1/2 polz."
#. TRANSLATORS: Action for manipulating a tree control
#: ../src/generic/datavgen.cpp:6009
msgid "Expand"
-msgstr ""
+msgstr "Expandeix"
#: ../src/msw/registry.cpp:1240
#, c-format
msgid ""
"Exporting registry key: file \"%s\" already exists and won't be overwritten."
msgstr ""
+"Exportació de la clau del registre: el fitxer \"%s\" ja existeix i no se "
+"sobreescriurà ."
#: ../src/common/fmapbase.cpp:195
msgid "Extended Unix Codepage for Japanese (EUC-JP)"
-msgstr "Codificació de pà gina estesa per al japonès (EUC-JP)"
+msgstr "Codificació de pà gina estesa d'Unix per al japonès (EUC-JP)"
#: ../src/html/chm.cpp:725
-#, fuzzy, c-format
+#, c-format
msgid "Extraction of '%s' into '%s' failed."
-msgstr "L'execució de l'ordre '%s' ha fallit."
+msgstr "No s'ha pogut executar '%s' a '%s'."
#: ../src/common/accelcmn.cpp:249 ../src/common/accelcmn.cpp:344
msgid "F"
-msgstr ""
+msgstr "F"
#. TRANSLATORS: Label of font face name
#: ../src/propgrid/advprops.cpp:672
-#, fuzzy
msgid "Face Name"
-msgstr "Nou nom"
+msgstr "Nom del tipus de lletra"
#: ../src/unix/snglinst.cpp:269
msgid "Failed to access lock file."
msgstr "No s'ha pogut accedir el fitxer de blocatge."
#: ../src/unix/epolldispatcher.cpp:116
-#, fuzzy, c-format
+#, c-format
msgid "Failed to add descriptor %d to epoll descriptor %d"
-msgstr "no es pot escriure en el fitxer descriptiu %d"
+msgstr "No s'ha pogut afegir el descriptor %d al descriptor epoll %d"
#: ../src/msw/dib.cpp:489
-#, fuzzy, c-format
+#, c-format
msgid "Failed to allocate %luKb of memory for bitmap data."
-msgstr "No s'ha pogut crear una barra d'estat."
+msgstr "No s'ha pogut assignar %luKb de memòria per a dades de mapa de bits."
#: ../src/common/glcmn.cpp:115
-#, fuzzy
msgid "Failed to allocate colour for OpenGL"
-msgstr "No s'ha pogut crear una barra d'estat."
+msgstr "No s'ha pogut assignar el color per a l'OpenGL"
#: ../src/unix/displayx11.cpp:236
-#, fuzzy
msgid "Failed to change video mode"
-msgstr "No s'ha pogut tancar el manegador de fitxers"
+msgstr "No s'ha pogut canviar el mode de vÃdeo"
#: ../src/common/image.cpp:3277
-#, fuzzy, c-format
+#, c-format
msgid "Failed to check format of image file \"%s\"."
-msgstr "No s'ha pogut carregar la imatge %d des del fitxer '%s'."
+msgstr "No s'ha pogut comprovar el format del fitxer d'imatge \"%s\"."
#: ../src/common/debugrpt.cpp:239
-#, fuzzy, c-format
+#, c-format
msgid "Failed to clean up debug report directory \"%s\""
-msgstr "No s'ha pogut crear un directori %s/.gnome."
+msgstr "No s'ha pogut netejar el directori d'informes de depuració \"%s\""
#: ../src/common/filename.cpp:192
msgid "Failed to close file handle"
-msgstr "No s'ha pogut tancar el manegador de fitxers"
+msgstr "No s'ha pogut tancar el manegador del fitxer"
#: ../src/unix/snglinst.cpp:340
#, c-format
msgid "Failed to close lock file '%s'"
-msgstr "No s'ha pogut tancar el fitxer de bloqueig '%s'"
+msgstr "No s'ha pogut tancar el fitxer de blocatge '%s'"
#: ../src/msw/clipbrd.cpp:112
msgid "Failed to close the clipboard."
-msgstr "No s'ha pogut tancar el porta-retalls"
+msgstr "No s'ha pogut tancar el porta-retalls."
#: ../src/x11/utils.cpp:208
-#, fuzzy, c-format
+#, c-format
msgid "Failed to close the display \"%s\""
-msgstr "No s'ha pogut tancar el porta-retalls"
+msgstr "No s'ha pogut tancar la pantalla \"%s\""
#: ../src/msw/dialup.cpp:797
msgid "Failed to connect: missing username/password."
-msgstr "Connexió fallida: hi manca el nom d'usuari o la contrasenya."
+msgstr "No s'ha pogut connectar: manca el nom d'usuari o la contrasenya."
#: ../src/msw/dialup.cpp:743
msgid "Failed to connect: no ISP to dial."
-msgstr "No s'ha pogut connectar: no hi ha cap ISP a trucar."
+msgstr ""
+"No s'ha pogut connectar: no hi ha cap proveïdor d'Internet al qual trucar."
#: ../src/common/textfile.cpp:203
-#, fuzzy, c-format
+#, c-format
msgid "Failed to convert file \"%s\" to Unicode."
-msgstr "No s'ha pogut tancar el manegador de fitxers"
+msgstr "No s'ha pogut convertir el fitxer \"%s\" a Unicode."
#: ../src/generic/logg.cpp:956
-#, fuzzy
msgid "Failed to copy dialog contents to the clipboard."
-msgstr "No s'ha pogut obrir el porta-retalls"
+msgstr "No s'ha pogut copiar el contingut del dià leg al porta-retalls."
#: ../src/msw/registry.cpp:692
#, c-format
msgid "Failed to copy registry value '%s'"
-msgstr "No s'ha pogut copiar el valor '%s' de registre"
+msgstr "No s'ha pogut copiar el valor del registre '%s'"
#: ../src/msw/registry.cpp:701
#, c-format
msgid "Failed to copy the contents of registry key '%s' to '%s'."
-msgstr ""
-"No s'ha pogut copiar els continguts de la clau de registre '%s' a '%s'."
+msgstr "No s'ha pogut copiar el contingut de la clau del registre '%s' a '%s'."
#: ../src/common/filefn.cpp:1015
#, c-format
msgid "Failed to copy the file '%s' to '%s'"
-msgstr "Impossible de copiar el fitxer '%s' a '%s'"
+msgstr "No s'ha pogut copiar el fitxer '%s' a '%s'"
#: ../src/msw/registry.cpp:679
-#, fuzzy, c-format
+#, c-format
msgid "Failed to copy the registry subkey '%s' to '%s'."
-msgstr "No s'ha pogut reanomenar la clau de registre '%s' a '%s'."
+msgstr "No s'ha pogut copiar la subclau del registre '%s' a '%s'."
#: ../src/msw/dde.cpp:1070
msgid "Failed to create DDE string"
-msgstr "No s'ha pogut crear una cadena DDE"
+msgstr "No s'ha pogut crear la cadena DDE"
#: ../src/msw/mdi.cpp:616
msgid "Failed to create MDI parent frame."
-msgstr "No s'ha pogut crear un marc MDI principal."
+msgstr "No s'ha pogut crear el marc pare de l'MDI."
#: ../src/common/filename.cpp:1027
msgid "Failed to create a temporary file name"
-msgstr "No s'ha pogut crear un nom d'arxiu temporal"
+msgstr "No s'ha pogut crear un nom de fitxer temporal"
#: ../src/msw/utilsexc.cpp:228
msgid "Failed to create an anonymous pipe"
-msgstr "Creació fallida d'un conducte anònim."
+msgstr "No s'ha pogut crear una canonada anònima"
#: ../src/msw/ole/automtn.cpp:522
-#, fuzzy, c-format
+#, c-format
msgid "Failed to create an instance of \"%s\""
-msgstr "No s'ha pogut crear un directori %s/.gnome."
+msgstr "No s'ha pogut crear una instà ncia de \"%s\""
#: ../src/msw/dde.cpp:437
#, c-format
msgid "Failed to create connection to server '%s' on topic '%s'"
-msgstr "No s'ha pogut crear una connexió en el servidor '%s' en el tema '%s'"
+msgstr "No s'ha pogut crear una connexió al servidor '%s' en el tema '%s'"
#: ../src/msw/cursor.cpp:204
-#, fuzzy
msgid "Failed to create cursor."
-msgstr "No s'ha pogut crear una barra d'estat."
+msgstr "No s'ha pogut crear el cursor."
#: ../src/common/debugrpt.cpp:209
-#, fuzzy, c-format
+#, c-format
msgid "Failed to create directory \"%s\""
-msgstr "No s'ha pogut crear un directori %s/.gnome."
+msgstr "No s'ha pogut crear el directori \"%s\""
#: ../src/generic/dirdlgg.cpp:220
#, c-format
@@ -3383,17 +3213,16 @@ msgid ""
"(Do you have the required permissions?)"
msgstr ""
"No s'ha pogut crear el directori '%s'\n"
-"(Disposeu dels permisos requerits?)"
+"(Teniu els permisos necessaris?)"
#: ../src/unix/epolldispatcher.cpp:84
-#, fuzzy
msgid "Failed to create epoll descriptor"
-msgstr "No s'ha pogut crear una barra d'estat."
+msgstr "No s'ha pogut crear el descriptor epoll"
#: ../src/msw/mimetype.cpp:238
#, c-format
msgid "Failed to create registry entry for '%s' files."
-msgstr "No s'ha pogut crear una entrada de registre per '%s' fitxers."
+msgstr "No s'ha pogut crear l'entrada del registre dels fitxers '%s'."
#: ../src/msw/fdrepdlg.cpp:409
#, c-format
@@ -3403,23 +3232,23 @@ msgstr ""
"%d)"
#: ../src/unix/wakeuppipe.cpp:52
-#, fuzzy
msgid "Failed to create wake up pipe used by event loop."
-msgstr "No s'ha pogut crear una barra d'estat."
+msgstr ""
+"No s'ha pogut crear la canonada de despertament utilitzada pel bucle "
+"d'esdeveniments."
#: ../src/html/winpars.cpp:730
#, c-format
msgid "Failed to display HTML document in %s encoding"
-msgstr "No s'ha pogut mostrar el document HTML en codificació %s"
+msgstr "No s'ha pogut mostrar el document HTML amb la codificació %s"
#: ../src/msw/clipbrd.cpp:124
msgid "Failed to empty the clipboard."
-msgstr "No s'ha pogut buidar el porta-retalls"
+msgstr "No s'ha pogut buidar el porta-retalls."
#: ../src/unix/displayx11.cpp:212
-#, fuzzy
msgid "Failed to enumerate video modes"
-msgstr "No s'ha pogut crear un directori %s/.gnome."
+msgstr "No s'han pogut enumerar els modes de vÃdeo"
#: ../src/msw/dde.cpp:722
msgid "Failed to establish an advise loop with DDE server"
@@ -3428,7 +3257,7 @@ msgstr "No s'ha pogut establir un bucle d'avÃs amb el servidor DDE"
#: ../src/msw/dialup.cpp:629 ../src/msw/dialup.cpp:863
#, c-format
msgid "Failed to establish dialup connection: %s"
-msgstr "No s'ha pogut establir la connexió: %s"
+msgstr "No s'ha pogut establir la connexió de marcatge telefònic: %s"
#: ../src/unix/utilsunx.cpp:611
#, c-format
@@ -3437,277 +3266,271 @@ msgstr "No s'ha pogut executar '%s'\n"
#: ../src/common/debugrpt.cpp:720
msgid "Failed to execute curl, please install it in PATH."
-msgstr ""
+msgstr "No s'ha pogut executar curl, instal·leu-lo al PATH."
#: ../src/msw/ole/automtn.cpp:505
-#, fuzzy, c-format
+#, c-format
msgid "Failed to find CLSID of \"%s\""
-msgstr "No s'ha pogut obrir '%s' per %s"
+msgstr "No s'ha pogut trobar el CLSID de \"%s\""
#: ../src/common/regex.cpp:431 ../src/common/regex.cpp:479
-#, fuzzy, c-format
+#, c-format
msgid "Failed to find match for regular expression: %s"
-msgstr "No s'ha pogut coincidir '%s' en l'expressió regular: %s"
+msgstr "No s'ha pogut trobar cap coincidència per a l'expressió regular: %s"
#: ../src/msw/dialup.cpp:695
#, c-format
msgid "Failed to get ISP names: %s"
-msgstr "No s'han pogut obtenir els noms ISP: %s"
+msgstr "No s'han pogut obtenir els noms dels proveïdors d'Internet: %s"
#: ../src/msw/ole/automtn.cpp:574
-#, fuzzy, c-format
+#, c-format
msgid "Failed to get OLE automation interface for \"%s\""
-msgstr "No s'ha pogut crear un directori %s/.gnome."
+msgstr "No s'ha pogut obtenir la interfÃcie d'automatització OLE per a \"%s\""
#: ../src/msw/clipbrd.cpp:711
msgid "Failed to get data from the clipboard"
-msgstr "No s'ha pogut obtenir les dades del porta-retalls"
+msgstr "No s'han pogut obtenir les dades del porta-retalls"
#: ../src/common/time.cpp:223
msgid "Failed to get the local system time"
-msgstr "No s'ha pogut obtenir l'horari local del sistema"
+msgstr "No s'ha pogut obtenir l'hora del sistema local"
#: ../src/common/filefn.cpp:1345
msgid "Failed to get the working directory"
-msgstr "No s'ha pogut obtenir el directori en funcionament"
+msgstr "No s'ha pogut obtenir el directori de treball"
#: ../src/univ/theme.cpp:114
msgid "Failed to initialize GUI: no built-in themes found."
-msgstr ""
-"No s'ha pogut inicialitzar GUI: no s'ha trobat que estigués muntat en temes."
+msgstr "No s'ha pogut inicialitzar la GUI: no s'ha trobat cap tema integrat."
#: ../src/msw/helpchm.cpp:63
msgid "Failed to initialize MS HTML Help."
-msgstr "No s'ha pogut inicialitzar l'ajuda MS HTML"
+msgstr "No s'ha pogut inicialitzar l'ajuda MS HTML."
#: ../src/msw/glcanvas.cpp:1381
msgid "Failed to initialize OpenGL"
msgstr "No s'ha pogut inicialitzar l'OpenGL"
#: ../src/msw/dialup.cpp:858
-#, fuzzy, c-format
+#, c-format
msgid "Failed to initiate dialup connection: %s"
-msgstr "No s'ha pogut acabar la connexió de marcatge directe: %s"
+msgstr "No s'ha pogut inicialitzar la connexió de marcatge telefònic: %s"
#: ../src/gtk/textctrl.cpp:1128
-#, fuzzy
msgid "Failed to insert text in the control."
-msgstr "No s'ha pogut obtenir el directori en funcionament"
+msgstr "No s'ha pogut inserir el text al control."
#: ../src/unix/snglinst.cpp:241
-#, fuzzy, c-format
+#, c-format
msgid "Failed to inspect the lock file '%s'"
-msgstr "No s'ha pogut bloquejar el fitxer de bloqueig '%s'"
+msgstr "No s'ha pogut inspeccionar el fitxer de blocatge '%s'"
#: ../src/unix/appunix.cpp:182
-#, fuzzy
msgid "Failed to install signal handler"
-msgstr "No s'ha pogut tancar el manegador de fitxers"
+msgstr "No s'ha pogut instal·lar el gestor de senyals"
#: ../src/unix/threadpsx.cpp:1167
msgid ""
"Failed to join a thread, potential memory leak detected - please restart the "
"program"
msgstr ""
-"No s'ha pogut sincronitzar amb un fil, s'ha detectat un potencial de pèrdua "
-"de memòria - reinicieu el programa"
+"No s'ha pogut sincronitzar amb un fil d'execució, s'ha detectat una possible "
+"fuita de memòria - reinicieu el programa"
#: ../src/msw/utils.cpp:629
#, c-format
msgid "Failed to kill process %d"
-msgstr "No s'ha pogut acabar el procés %d"
+msgstr "No s'ha pogut matar el procés %d"
#: ../src/common/image.cpp:2500
-#, fuzzy, c-format
+#, c-format
msgid "Failed to load bitmap \"%s\" from resources."
-msgstr "No s'ha pogut carregar la imatge %d des del fitxer '%s'."
+msgstr "No s'ha pogut carregar el mapa de bits \"%s\" dels recursos."
#: ../src/common/image.cpp:2509
-#, fuzzy, c-format
+#, c-format
msgid "Failed to load icon \"%s\" from resources."
-msgstr "No s'ha pogut carregar la imatge %d des del fitxer '%s'."
+msgstr "No s'ha pogut carregar la icona \"%s\" dels recursos."
#: ../src/common/iconbndl.cpp:225
-#, fuzzy, c-format
+#, c-format
msgid "Failed to load icons from resource '%s'."
-msgstr "No s'ha pogut carregar la imatge %d des del fitxer '%s'."
+msgstr "No s'han pogut carregar les icones del recurs '%s'."
#: ../src/common/iconbndl.cpp:200
-#, fuzzy, c-format
+#, c-format
msgid "Failed to load image %%d from file '%s'."
-msgstr "No s'ha pogut carregar la imatge %d des del fitxer '%s'."
+msgstr "No s'ha pogut carregar la imatge %%d del fitxer '%s'."
#: ../src/common/iconbndl.cpp:208
-#, fuzzy, c-format
+#, c-format
msgid "Failed to load image %d from stream."
-msgstr "No s'ha pogut carregar la imatge %d des del fitxer '%s'."
+msgstr "No s'ha pogut carregar la imatge %d del flux."
#: ../src/common/image.cpp:2587 ../src/common/image.cpp:2606
-#, fuzzy, c-format
+#, c-format
msgid "Failed to load image from file \"%s\"."
-msgstr "No s'ha pogut carregar la imatge %d des del fitxer '%s'."
+msgstr "No s'ha pogut carregar la imatge del fitxer \"%s\"."
#: ../src/msw/enhmeta.cpp:97
-#, fuzzy, c-format
+#, c-format
msgid "Failed to load metafile from file \"%s\"."
-msgstr "No s'ha pogut carregar la imatge %d des del fitxer '%s'."
+msgstr "No s'ha pogut carregar el metafitxer del fitxer \"%s\"."
#: ../src/msw/volume.cpp:327
msgid "Failed to load mpr.dll."
-msgstr "No s'ha pogut carregar el mpr.dll"
+msgstr "No s'ha pogut carregar mpr.dll."
#: ../src/msw/utils.cpp:953
-#, fuzzy, c-format
+#, c-format
msgid "Failed to load resource \"%s\"."
-msgstr "No s'ha pogut carregar la imatge %d des del fitxer '%s'."
+msgstr "No s'ha pogut carregar el recurs \"%s\"."
#: ../src/common/dynlib.cpp:92
#, c-format
msgid "Failed to load shared library '%s'"
-msgstr "No s'ha pogut carregar la llibreria compartida '%s'"
+msgstr "No s'ha pogut carregar la biblioteca compartida '%s'"
#: ../src/osx/core/sound.cpp:145
-#, fuzzy, c-format
+#, c-format
msgid "Failed to load sound from \"%s\" (error %d)."
-msgstr "No s'ha pogut carregar la imatge %d des del fitxer '%s'."
+msgstr "No s'ha pogut carregar el so de \"%s\" (error %d)."
#: ../src/msw/utils.cpp:960
-#, fuzzy, c-format
+#, c-format
msgid "Failed to lock resource \"%s\"."
-msgstr "No s'ha pogut bloquejar el fitxer de bloqueig '%s'"
+msgstr "No s'ha pogut blocar el recurs \"%s\"."
#: ../src/unix/snglinst.cpp:198
#, c-format
msgid "Failed to lock the lock file '%s'"
-msgstr "No s'ha pogut bloquejar el fitxer de bloqueig '%s'"
+msgstr "No s'ha pogut blocar el fitxer de blocatge '%s'"
#: ../src/unix/epolldispatcher.cpp:136
#, c-format
msgid "Failed to modify descriptor %d in epoll descriptor %d"
-msgstr ""
+msgstr "No s'ha pogut modificar el descriptor %d al descriptor epoll %d"
#: ../src/common/filename.cpp:2575
#, c-format
msgid "Failed to modify file times for '%s'"
-msgstr "No s'ha pogut modificar les hores de fitxer de '%s'"
+msgstr "No s'han pogut modificar les hores del fitxer '%s'"
#: ../src/common/selectdispatcher.cpp:258
msgid "Failed to monitor I/O channels"
-msgstr ""
+msgstr "No s'han pogut supervisar els canals d'E/S"
#: ../src/common/filename.cpp:175
-#, fuzzy, c-format
+#, c-format
msgid "Failed to open '%s' for reading"
-msgstr "No s'ha pogut obrir '%s' per %s"
+msgstr "No s'ha pogut obrir '%s' per a llegir-lo"
#: ../src/common/filename.cpp:180
-#, fuzzy, c-format
+#, c-format
msgid "Failed to open '%s' for writing"
-msgstr "No s'ha pogut obrir '%s' per %s"
+msgstr "No s'ha pogut obrir '%s' per a escriure-hi"
#: ../src/html/chm.cpp:141
-#, fuzzy, c-format
+#, c-format
msgid "Failed to open CHM archive '%s'."
-msgstr "No s'ha pogut obrir '%s' per %s"
+msgstr "No s'ha pogut obrir l'arxiu CHM '%s'."
#: ../src/common/utilscmn.cpp:1126
-#, fuzzy, c-format
+#, c-format
msgid "Failed to open URL \"%s\" in default browser."
-msgstr "No s'ha pogut obrir '%s' per %s"
+msgstr "No s'ha pogut obrir l'URL \"%s\" al navegador per defecte."
#: ../include/wx/msw/private/fswatcher.h:92
-#, fuzzy, c-format
+#, c-format
msgid "Failed to open directory \"%s\" for monitoring."
-msgstr "No s'ha pogut obrir '%s' per %s"
+msgstr "No s'ha pogut obrir el directori \"%s\" per a supervisar-lo."
#: ../src/x11/utils.cpp:227
-#, fuzzy, c-format
+#, c-format
msgid "Failed to open display \"%s\"."
-msgstr "No s'ha pogut obrir '%s' per %s"
+msgstr "No s'ha pogut obrir la pantalla \"%s\"."
#: ../src/common/filename.cpp:1062
msgid "Failed to open temporary file."
-msgstr "No s'ha pogut obrir un fitxer temporal"
+msgstr "No s'ha pogut obrir el fitxer temporal."
#: ../src/msw/clipbrd.cpp:91
msgid "Failed to open the clipboard."
-msgstr "No s'ha pogut obrir el porta-retalls"
+msgstr "No s'ha pogut obrir el porta-retalls."
#: ../src/common/translation.cpp:1184
-#, fuzzy, c-format
+#, c-format
msgid "Failed to parse Plural-Forms: '%s'"
-msgstr "No es pot analitzar les coordenades des de '%s'."
+msgstr "No s'ha pogut analitzar el Plural-Forms: '%s'"
#: ../src/unix/mediactrl.cpp:1214
-#, fuzzy, c-format
+#, c-format
msgid "Failed to prepare playing \"%s\"."
-msgstr "No s'ha pogut obrir '%s' per %s"
+msgstr "No s'ha pogut preparar la reproducció de \"%s\"."
#: ../src/msw/clipbrd.cpp:600
msgid "Failed to put data on the clipboard"
-msgstr "No s'ha pogut posar dades al porta-retalls"
+msgstr "No s'han pogut posar les dades al porta-retalls"
#: ../src/unix/snglinst.cpp:278
msgid "Failed to read PID from lock file."
-msgstr "No s'ha pogut llegir el PID des del fitxer de registre."
+msgstr "No s'ha pogut llegir el PID del fitxer de blocatge."
#: ../src/common/fileconf.cpp:433
-#, fuzzy
msgid "Failed to read config options."
-msgstr "Error en llegir imatge DIB"
+msgstr "No s'han pogut llegir les opcions de la configuració."
#: ../src/common/docview.cpp:681
-#, fuzzy, c-format
+#, c-format
msgid "Failed to read document from the file \"%s\"."
-msgstr "No s'ha pogut carregar la imatge %d des del fitxer '%s'."
+msgstr "No s'ha pogut llegir el document del fitxer \"%s\"."
#: ../src/dfb/evtloop.cpp:98
-#, fuzzy
msgid "Failed to read event from DirectFB pipe"
-msgstr "No s'ha pogut llegir el PID des del fitxer de registre."
+msgstr "No s'ha pogut llegir l'esdeveniment de la canonada DirectFB"
#: ../src/unix/wakeuppipe.cpp:120
-#, fuzzy
msgid "Failed to read from wake-up pipe"
-msgstr "No s'ha pogut llegir el PID des del fitxer de registre."
+msgstr "No s'ha pogut llegir la canonada de despertament"
#: ../src/unix/utilsunx.cpp:679
msgid "Failed to redirect child process input/output"
-msgstr "No s'ha pogut redireccionar el procés fill d'entrada/sortida"
+msgstr "No s'ha pogut redirigir l'entrada/sortida del procés fill"
#: ../src/msw/utilsexc.cpp:701
msgid "Failed to redirect the child process IO"
-msgstr "No s'ha pogut redireccionar el procés fill d'IO"
+msgstr "No s'ha pogut redirigir l'E/S del procés fill"
#: ../src/msw/dde.cpp:288
#, c-format
msgid "Failed to register DDE server '%s'"
-msgstr "No es pot registrar el servidor DDE '%s'"
+msgstr "No s'ha pogut registrar el servidor DDE '%s'"
#: ../src/common/fontmap.cpp:245
#, c-format
msgid "Failed to remember the encoding for the charset '%s'."
-msgstr "No es pot recordar la codificació del joc de carà cters '%s'."
+msgstr "No s'ha pogut recordar la codificació del joc de carà cters '%s'."
#: ../src/common/debugrpt.cpp:227
-#, fuzzy, c-format
+#, c-format
msgid "Failed to remove debug report file \"%s\""
-msgstr "És impossible d'eliminar el fitxer de blocatge '%s'"
+msgstr "No s'ha pogut suprimir el fitxer d'informe de depuració \"%s\""
#: ../src/unix/snglinst.cpp:328
#, c-format
msgid "Failed to remove lock file '%s'"
-msgstr "És impossible d'eliminar el fitxer de blocatge '%s'"
+msgstr "No s'ha pogut suprimir el fitxer de blocatge '%s'"
#: ../src/unix/snglinst.cpp:288
#, c-format
msgid "Failed to remove stale lock file '%s'."
-msgstr "No s'ha pogut extreure el fitxer antic de bloqueig '%s'"
+msgstr "No s'ha pogut suprimir el fitxer de blocatge antic '%s'."
#: ../src/msw/registry.cpp:529
#, c-format
msgid "Failed to rename registry value '%s' to '%s'."
-msgstr "No s'ha pogut reanomenar el valor de registre '%s' a '%s'."
+msgstr "No s'ha pogut canviar el nom del valor del registre '%s' a '%s'."
#: ../src/common/filefn.cpp:1122
#, c-format
@@ -3715,34 +3538,36 @@ msgid ""
"Failed to rename the file '%s' to '%s' because the destination file already "
"exists."
msgstr ""
+"No s'ha pogut canviar el nom del fitxer '%s' a '%s' perquè el fitxer de "
+"destinació ja existeix."
#: ../src/msw/registry.cpp:634
#, c-format
msgid "Failed to rename the registry key '%s' to '%s'."
-msgstr "No s'ha pogut reanomenar la clau de registre '%s' a '%s'."
+msgstr "No s'ha pogut canviar el nom de la clau del registre '%s' a '%s'."
#: ../src/common/filename.cpp:2671
#, c-format
msgid "Failed to retrieve file times for '%s'"
-msgstr "No s'ha pogut recuperar les hores de fitxer de '%s'"
+msgstr "No s'han pogut obtenir les hores del fitxer '%s'"
#: ../src/msw/dialup.cpp:468
msgid "Failed to retrieve text of RAS error message"
-msgstr "No s'ha pogut recuperar el text del missatge d'error RAS"
+msgstr "No s'ha pogut recuperar el text del missatge d'error del RAS"
#: ../src/msw/clipbrd.cpp:748
msgid "Failed to retrieve the supported clipboard formats"
-msgstr "No s'ha pogut recuperar els formats suportats del porta-retalls."
+msgstr "No s'han pogut obtenir els formats del porta-retalls suportats"
#: ../src/common/docview.cpp:652
-#, fuzzy, c-format
+#, c-format
msgid "Failed to save document to the file \"%s\"."
-msgstr "No s'ha pogut carregar la imatge %d des del fitxer '%s'."
+msgstr "No s'ha pogut desar el document al fitxer \"%s\"."
#: ../src/msw/dib.cpp:269
-#, fuzzy, c-format
+#, c-format
msgid "Failed to save the bitmap image to file \"%s\"."
-msgstr "No s'ha pogut carregar la imatge %d des del fitxer '%s'."
+msgstr "No s'ha pogut desar la imatge de mapa de bits al fitxer \"%s\"."
#: ../src/msw/dde.cpp:763
msgid "Failed to send DDE advise notification"
@@ -3751,158 +3576,153 @@ msgstr "No s'ha pogut enviar una notificació d'avÃs DDE"
#: ../src/common/ftp.cpp:402
#, c-format
msgid "Failed to set FTP transfer mode to %s."
-msgstr "No s'ha pogut fixar el mode de transferència FTP a %s."
+msgstr "No s'ha pogut definir el mode de transferència FTP a %s."
#: ../src/msw/clipbrd.cpp:427
msgid "Failed to set clipboard data."
-msgstr "No s'ha pogut fixar les dades del porta-retalls"
+msgstr "No s'han pogut definir les dades del porta-retalls."
#: ../src/unix/snglinst.cpp:181
-#, fuzzy, c-format
+#, c-format
msgid "Failed to set permissions on lock file '%s'"
-msgstr "És impossible fixar els permisos per al fitxer '%s'"
+msgstr "No s'han pogut definir els permisos del fitxer de blocatge '%s'"
#: ../src/unix/utilsunx.cpp:668
-#, fuzzy
msgid "Failed to set process priority"
-msgstr "No s'ha pogut establir la prioritat de la cadena %d"
+msgstr "No s'ha pogut definir la prioritat del procés"
#: ../src/common/file.cpp:559
msgid "Failed to set temporary file permissions"
-msgstr "No s'ha pogut fixar els permisos de fitxer temporals."
+msgstr "No s'ha pogut definir els permisos del fitxer temporal"
#: ../src/gtk/textctrl.cpp:1072
-#, fuzzy
msgid "Failed to set text in the text control."
-msgstr "No s'ha pogut obtenir el temps UTC del sistema."
+msgstr "No s'ha pogut definir el text del control de text."
#: ../src/unix/threadpsx.cpp:1298
-#, fuzzy, c-format
+#, c-format
msgid "Failed to set thread concurrency level to %lu"
-msgstr "No s'ha pogut establir la prioritat de la cadena %d"
+msgstr ""
+"No s'ha pogut definir el nivell de concurrència del fil d'execució a %lu"
#: ../src/unix/threadpsx.cpp:1424
#, c-format
msgid "Failed to set thread priority %d."
-msgstr "No s'ha pogut establir la prioritat de la cadena %d"
+msgstr "No s'ha pogut definir la prioritat del fil d'execució %d."
#: ../src/unix/utilsunx.cpp:783
msgid "Failed to set up non-blocking pipe, the program might hang."
msgstr ""
+"No s'ha pogut configurar la canonada no blocant, és possible que el programa "
+"es pengi."
#: ../src/common/fs_mem.cpp:261
#, c-format
msgid "Failed to store image '%s' to memory VFS!"
-msgstr "No s'ha pogut emmagatzemar la imatge '%s' a la VFS de memòria!"
+msgstr "No s'ha pogut emmagatzemar la imatge '%s' al VFS de la memòria!"
#: ../src/dfb/evtloop.cpp:170
msgid "Failed to switch DirectFB pipe to non-blocking mode"
-msgstr ""
+msgstr "No s'ha pogut canviar la canonada DirectFB al mode no blocant"
#: ../src/unix/wakeuppipe.cpp:59
msgid "Failed to switch wake up pipe to non-blocking mode"
-msgstr ""
+msgstr "No s'ha pogut canviar la canonada de despertament al mode no blocant"
#: ../src/unix/threadpsx.cpp:1605
msgid "Failed to terminate a thread."
-msgstr "No s'ha pogut acabar una cadena."
+msgstr "No s'ha pogut finalitzar el fil d'execució."
#: ../src/msw/dde.cpp:741
msgid "Failed to terminate the advise loop with DDE server"
-msgstr "No s'ha pogut acabar el bucle d'avÃs amb el servidor DDE."
+msgstr "No s'ha pogut finalitzar el bucle d'avÃs amb el servidor DDE"
#: ../src/msw/dialup.cpp:938
#, c-format
msgid "Failed to terminate the dialup connection: %s"
-msgstr "No s'ha pogut acabar la connexió de marcatge directe: %s"
+msgstr "No s'ha pogut finalitzar la connexió de marcatge telefònic: %s"
#: ../src/common/filename.cpp:2590
#, c-format
msgid "Failed to touch the file '%s'"
-msgstr "No s'ha pogut posar en contacte amb el fitxer '%s'"
+msgstr "No s'ha pogut fer touch al fitxer '%s'"
#: ../src/unix/snglinst.cpp:334
#, c-format
msgid "Failed to unlock lock file '%s'"
-msgstr "No s'ha pogut desbloquejar el fitxer de bloqueig '%s'"
+msgstr "No s'ha pogut desblocar el fitxer de blocatge '%s'"
#: ../src/msw/dde.cpp:309
#, c-format
msgid "Failed to unregister DDE server '%s'"
-msgstr "No s'ha pogut desenregistrar el servidor DDE '%s'"
+msgstr "No s'ha pogut desregistrar el servidor DDE '%s'"
#: ../src/unix/epolldispatcher.cpp:155
-#, fuzzy, c-format
+#, c-format
msgid "Failed to unregister descriptor %d from epoll descriptor %d"
-msgstr "No s'ha pogut recuperar les dades del porta-retalls."
+msgstr "No s'ha pogut desregistrar el descriptor %d del descriptor epoll %d"
#: ../src/common/fileconf.cpp:1006
-#, fuzzy
msgid "Failed to update user configuration file."
-msgstr "no es pot obrir el fitxer de configuració de l'usuari."
+msgstr "No s'ha pogut actualitzar el fitxer de configuració de l'usuari."
#: ../src/common/debugrpt.cpp:733
-#, fuzzy, c-format
+#, c-format
msgid "Failed to upload the debug report (error code %d)."
-msgstr ""
-"No s'ha pogut crear el dià leg està ndard de cerca/substitueix (codi d'error "
-"%d)"
+msgstr "No s'ha pogut pujar l'informe de depuració (codi d'error %d)."
#: ../src/unix/snglinst.cpp:168
#, c-format
msgid "Failed to write to lock file '%s'"
-msgstr "No s'ha pogut escriure a l'arxiu de bloqueig '%s'"
+msgstr "No s'ha pogut escriure al fitxer de blocatge '%s'"
#. TRANSLATORS: Name of Boolean false value
#: ../src/propgrid/propgrid.cpp:209
-#, fuzzy
msgid "False"
-msgstr "&Mida"
+msgstr "Fals"
#. TRANSLATORS: Label of font family
#: ../src/propgrid/advprops.cpp:694
-#, fuzzy
msgid "Family"
-msgstr "Mida de la font:"
+msgstr "FamÃlia"
#: ../src/common/stockitem.cpp:157
-#, fuzzy
msgid "File"
-msgstr "&Mida"
+msgstr "Fitxer"
#: ../src/common/docview.cpp:669
-#, fuzzy, c-format
+#, c-format
msgid "File \"%s\" could not be opened for reading."
-msgstr "No s'ha pogut obrir '%s' per %s"
+msgstr "No s'ha pogut obrir el fitxer \"%s\" per a llegir-lo."
#: ../src/common/docview.cpp:646
-#, fuzzy, c-format
+#, c-format
msgid "File \"%s\" could not be opened for writing."
-msgstr "No s'ha pogut obrir '%s' per %s"
+msgstr "No s'ha pogut obrir el fitxer \"%s\" per a escriure-hi."
#: ../src/generic/filedlgg.cpp:346 ../src/gtk/filedlg.cpp:57
-#, fuzzy, c-format
+#, c-format
msgid "File '%s' already exists, do you really want to overwrite it?"
-msgstr "El fitxer '%' ja existex, n'esteu segur de voleu rescriure-hi?"
+msgstr "El fitxer '%s' ja existex, esteu segur que el voleu sobreescriure?"
#: ../src/common/filefn.cpp:1156
-#, fuzzy, c-format
+#, c-format
msgid "File '%s' couldn't be removed"
-msgstr "No s'ha pogut crear el directori '%s'"
+msgstr "No s'ha pogut suprimir el fitxer '%s'"
#: ../src/common/filefn.cpp:1139
-#, fuzzy, c-format
+#, c-format
msgid "File '%s' couldn't be renamed '%s'"
-msgstr "No s'ha pogut crear el directori '%s'"
+msgstr "No s'ha pogut canviar el nom del fitxer '%s' a '%s'"
#: ../src/richtext/richtextctrl.cpp:3081 ../src/common/textcmn.cpp:953
msgid "File couldn't be loaded."
msgstr "No s'ha pogut carregar el fitxer."
#: ../src/msw/filedlg.cpp:393
-#, fuzzy, c-format
+#, c-format
msgid "File dialog failed with error code %0lx."
-msgstr "L'execució de l'ordre '%s' ha fallit."
+msgstr "El dià leg de fitxer ha fallat amb el codi d'error %0lx."
#: ../src/common/docview.cpp:1789
msgid "File error"
@@ -3913,101 +3733,93 @@ msgid "File name exists already."
msgstr "Aquest nom de fitxer ja existeix."
#: ../src/motif/filedlg.cpp:220
-#, fuzzy
msgid "Files"
-msgstr "&Mida"
+msgstr "Fitxers"
#: ../src/common/filefn.cpp:1591
-#, fuzzy, c-format
+#, c-format
msgid "Files (%s)"
-msgstr "Fitxers (%s)|%s"
+msgstr "Fitxers (%s)"
#: ../src/motif/filedlg.cpp:218
-#, fuzzy
msgid "Filter"
-msgstr "&Mida"
+msgstr "Filtre"
#: ../src/common/stockitem.cpp:158 ../src/html/helpwnd.cpp:490
msgid "Find"
msgstr "Cerca"
#: ../src/common/stockitem.cpp:159
-#, fuzzy
msgid "First"
-msgstr "primer"
+msgstr "Primer"
#: ../src/common/prntbase.cpp:1548
-#, fuzzy
msgid "First page"
-msgstr "Pà gina següent"
+msgstr "Primera pà gina"
#: ../src/richtext/richtextsizepage.cpp:521
-#, fuzzy
msgid "Fixed"
-msgstr "Font fixada:"
+msgstr "Fixa"
#: ../src/html/helpwnd.cpp:1206
msgid "Fixed font:"
-msgstr "Font fixada:"
+msgstr "Tipus de lletra de mida fixa:"
#: ../src/html/helpwnd.cpp:1269
msgid "Fixed size face.
bold italic "
-msgstr ""
+msgstr "De mida fixa.
negreta cursiva "
#: ../src/richtext/richtextsizepage.cpp:229
msgid "Floating"
-msgstr ""
+msgstr "Flotant"
#: ../src/common/stockitem.cpp:160
-#, fuzzy
msgid "Floppy"
-msgstr "&Copia"
+msgstr "Disquet"
#: ../src/common/paper.cpp:111
msgid "Folio, 8 1/2 x 13 in"
-msgstr "Foli, 8 1/2 x 13 polzades"
+msgstr "Foli, 8 1/2 x 13 polz."
#: ../src/richtext/richtextformatdlg.cpp:344 ../src/osx/carbon/fontdlg.cpp:287
#: ../src/common/stockitem.cpp:194
msgid "Font"
-msgstr ""
+msgstr "Tipus de lletra"
#: ../src/richtext/richtextfontpage.cpp:221
-#, fuzzy
msgid "Font &weight:"
-msgstr "vuitè"
+msgstr "&Pes de la lletra:"
#: ../src/html/helpwnd.cpp:1207
msgid "Font size:"
-msgstr "Mida de la font:"
+msgstr "Mida de la lletra:"
#: ../src/richtext/richtextfontpage.cpp:208
-#, fuzzy
msgid "Font st&yle:"
-msgstr "Mida de la font:"
+msgstr "&Estil de la lletra:"
#: ../src/osx/carbon/fontdlg.cpp:329
-#, fuzzy
msgid "Font:"
-msgstr "Mida de la font:"
+msgstr "Tipus de lletra:"
#: ../src/dfb/fontmgr.cpp:198
#, c-format
msgid "Fonts index file %s disappeared while loading fonts."
msgstr ""
+"El fitxer d'Ãndex de tipus de lletra %s ha desaparegut mentre es carregaven "
+"els tipus de lletra."
#: ../src/unix/utilsunx.cpp:645
msgid "Fork failed"
-msgstr "El fork ha fallat!"
+msgstr "No s'ha pogut bifurcar"
#: ../src/common/stockitem.cpp:161
-#, fuzzy
msgid "Forward"
msgstr "Endavant"
#: ../src/common/xtixml.cpp:235
msgid "Forward hrefs are not supported"
-msgstr ""
+msgstr "Els href de reenviament no estan suportats"
#: ../src/html/helpwnd.cpp:875
#, c-format
@@ -4020,62 +3832,63 @@ msgstr "De:"
#: ../src/propgrid/advprops.cpp:1604
msgid "Fuchsia"
-msgstr ""
+msgstr "Fúcsia"
#: ../src/common/imaggif.cpp:138
msgid "GIF: data stream seems to be truncated."
-msgstr "GIF: el flux de dades sembla haver-se trencat."
+msgstr "GIF: sembla que s'ha truncat el flux de dades."
#: ../src/common/imaggif.cpp:128
msgid "GIF: error in GIF image format."
-msgstr "GIF: error en el format GIF d'imatge."
+msgstr "GIF: error al format d'imatge GIF."
#: ../src/common/imaggif.cpp:133
msgid "GIF: not enough memory."
-msgstr "GIF: No hi ha prou memòria"
+msgstr "GIF: no hi ha prou memòria."
#: ../src/gtk/window.cpp:4631
msgid ""
"GTK+ installed on this machine is too old to support screen compositing, "
"please install GTK+ 2.12 or later."
msgstr ""
+"El GTK+ instal·lat en aquest dispositiu és massa antic i no suporta la "
+"composició de pantalla, instal·leu el GTK+ 2.12 o posterior."
#: ../src/univ/themes/gtk.cpp:525
msgid "GTK+ theme"
-msgstr "GTK + tema"
+msgstr "Tema GTK+"
#: ../src/common/preferencescmn.cpp:40
msgid "General"
-msgstr ""
+msgstr "General"
#: ../src/common/prntbase.cpp:258
-#, fuzzy
msgid "Generic PostScript"
-msgstr "Fitxer PostScript"
+msgstr "PostScript genèric"
#: ../src/common/paper.cpp:135
msgid "German Legal Fanfold, 8 1/2 x 13 in"
-msgstr "Fanfold legal alemany, 8 1/2 x 13 polz."
+msgstr "German Legal Fanfold, 8 1/2 x 13 polz."
#: ../src/common/paper.cpp:134
msgid "German Std Fanfold, 8 1/2 x 12 in"
-msgstr "Fanfold alemany està ndard, 8 1/2 x 12 in"
+msgstr "German Std Fanfold, 8 1/2 x 12 polz."
#: ../include/wx/xtiprop.h:184
msgid "GetProperty called w/o valid getter"
-msgstr ""
+msgstr "S'ha cridat GetProperty sense un getter và lid"
#: ../include/wx/xtiprop.h:262
msgid "GetPropertyCollection called on a generic accessor"
-msgstr ""
+msgstr "S'ha cridat GetPropertyCollection en un mètode d'accés genèric"
#: ../include/wx/xtiprop.h:202
msgid "GetPropertyCollection called w/o valid collection getter"
-msgstr ""
+msgstr "S'ha cridat GetPropertyCollection sense un getter de col·lecció và lid"
#: ../src/html/helpwnd.cpp:660
msgid "Go back"
-msgstr "Vés enrere"
+msgstr "Vés endarrere"
#: ../src/html/helpwnd.cpp:661
msgid "Go forward"
@@ -4083,28 +3896,28 @@ msgstr "Vés endavant"
#: ../src/html/helpwnd.cpp:663
msgid "Go one level up in document hierarchy"
-msgstr "Puja un nivell de la jerarquia del document."
+msgstr "Puja un nivell en la jerarquia del document"
#: ../src/generic/filedlgg.cpp:208 ../src/generic/dirdlgg.cpp:116
msgid "Go to home directory"
-msgstr "Vés al directori principal"
+msgstr "Vés al directori de l'usuari"
#: ../src/generic/filedlgg.cpp:205
msgid "Go to parent directory"
-msgstr "Puja un directori "
+msgstr "Vés al directori pare"
#: ../src/generic/aboutdlgg.cpp:76
msgid "Graphics art by "
-msgstr ""
+msgstr "Art grà fic per "
#: ../src/propgrid/advprops.cpp:1599
msgid "Gray"
-msgstr ""
+msgstr "Gris"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:883
msgid "GrayText"
-msgstr ""
+msgstr "GrayText"
#: ../src/common/fmapbase.cpp:154
msgid "Greek (ISO-8859-7)"
@@ -4112,41 +3925,41 @@ msgstr "Grec (ISO-8859-7)"
#: ../src/propgrid/advprops.cpp:1600
msgid "Green"
-msgstr ""
+msgstr "Verd"
#: ../src/generic/colrdlgg.cpp:342
msgid "Green:"
-msgstr ""
+msgstr "Verd:"
#: ../src/richtext/richtextborderspage.cpp:615
msgid "Groove"
-msgstr ""
+msgstr "Ranura"
#: ../src/common/zstream.cpp:158 ../src/common/zstream.cpp:318
msgid "Gzip not supported by this version of zlib"
-msgstr ""
+msgstr "Aquesta versió de zlib no suporta Gzip"
#: ../src/html/helpwnd.cpp:1549
msgid "HTML Help Project (*.hhp)|*.hhp|"
-msgstr ""
+msgstr "Projecte d'ajuda HTML (*.hhp)|*.hhp|"
#: ../src/html/htmlwin.cpp:681
-#, fuzzy, c-format
+#, c-format
msgid "HTML anchor %s does not exist."
-msgstr "L'ancoratge de l'HTML no existeix."
+msgstr "L'Ã ncora l'HTML %s no existeix."
#: ../src/html/helpwnd.cpp:1547
msgid "HTML files (*.html;*.htm)|*.html;*.htm|"
-msgstr ""
+msgstr "Fitxers HTML (*.html;*.htm)|*.html;*.htm|"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1759
msgid "Hand"
-msgstr ""
+msgstr "MÃ "
#: ../src/common/stockitem.cpp:162
msgid "Harddisk"
-msgstr ""
+msgstr "Disc dur"
#: ../src/common/fmapbase.cpp:155
msgid "Hebrew (ISO-8859-8)"
@@ -4161,7 +3974,7 @@ msgstr "Ajuda"
#: ../src/html/helpwnd.cpp:1200
msgid "Help Browser Options"
-msgstr "Opcions d'ajuda del navegador"
+msgstr "Opcions del navegador de l'ajuda"
#: ../src/generic/helpext.cpp:454 ../src/generic/helpext.cpp:455
msgid "Help Index"
@@ -4172,23 +3985,22 @@ msgid "Help Printing"
msgstr "Ajuda de la impressió"
#: ../src/html/helpwnd.cpp:801
-#, fuzzy
msgid "Help Topics"
-msgstr "Ajuda: %s"
+msgstr "Temes de l'ajuda"
#: ../src/html/helpwnd.cpp:1548
msgid "Help books (*.htb)|*.htb|Help books (*.zip)|*.zip|"
-msgstr ""
+msgstr "Llibres d'ajuda (*.htb)|*.htb|Llibres d'ajuda (*.zip)|*.zip|"
#: ../src/generic/helpext.cpp:267
#, c-format
msgid "Help directory \"%s\" not found."
-msgstr ""
+msgstr "No s'ha trobat el directori d'ajuda \"%s\"."
#: ../src/generic/helpext.cpp:275
-#, fuzzy, c-format
+#, c-format
msgid "Help file \"%s\" not found."
-msgstr "no s'ha trobat el fitxer de catà leg per al domini '%s'"
+msgstr "No s'ha trobat el fitxer d'ajuda \"%s\"."
#: ../src/html/helpctrl.cpp:63
#, c-format
@@ -4196,53 +4008,50 @@ msgid "Help: %s"
msgstr "Ajuda: %s"
#: ../src/osx/menu_osx.cpp:577
-#, fuzzy, c-format
+#, c-format
msgid "Hide %s"
-msgstr "Ajuda: %s"
+msgstr "Amaga %s"
#: ../src/osx/menu_osx.cpp:579
msgid "Hide Others"
-msgstr ""
+msgstr "Amaga els altres"
#: ../src/generic/infobar.cpp:84
msgid "Hide this notification message."
-msgstr ""
+msgstr "Amaga aquest missatge de notificació."
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:884
-#, fuzzy
msgid "Highlight"
-msgstr "clar"
+msgstr "Highlight"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:885
msgid "HighlightText"
-msgstr ""
+msgstr "HighlightText"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/stockitem.cpp:164 ../src/common/accelcmn.cpp:65
-#, fuzzy
msgid "Home"
-msgstr "sense nom"
+msgstr "Inici"
#: ../src/generic/dirctrlg.cpp:524
-#, fuzzy
msgid "Home directory"
-msgstr "Crea directori"
+msgstr "Directori de l'usuari"
#: ../src/richtext/richtextsizepage.cpp:253
#: ../src/richtext/richtextsizepage.cpp:255
msgid "How the object will float relative to the text."
-msgstr ""
+msgstr "Com flotarà l'objecte en relació al text."
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1760
msgid "I-Beam"
-msgstr ""
+msgstr "Forma d'I"
#: ../src/common/imagbmp.cpp:1196
msgid "ICO: Error in reading mask DIB."
-msgstr "ICO: Error en llegir la mà scara DIB."
+msgstr "ICO: S'ha produït un error en llegir la mà scara DIB."
#: ../src/common/imagbmp.cpp:1290 ../src/common/imagbmp.cpp:1390
#: ../src/common/imagbmp.cpp:1405 ../src/common/imagbmp.cpp:1416
@@ -4250,27 +4059,27 @@ msgstr "ICO: Error en llegir la mà scara DIB."
#: ../src/common/imagbmp.cpp:1493 ../src/common/imagbmp.cpp:1507
#: ../src/common/imagbmp.cpp:1518
msgid "ICO: Error writing the image file!"
-msgstr "ICO: Error en llegir el fitxer d'imatge!"
+msgstr "ICO: S'ha produït un error en escriure el fitxer d'imatge!"
#: ../src/common/imagbmp.cpp:1255
msgid "ICO: Image too tall for an icon."
-msgstr "ICO: Imatge massa llarga per a una icona."
+msgstr "ICO: Imatge massa alta per a una icona."
#: ../src/common/imagbmp.cpp:1263
msgid "ICO: Image too wide for an icon."
-msgstr "ICO:Imatge massa ampla per poder ser una icona."
+msgstr "ICO: Imatge massa ampla per a una icona."
#: ../src/common/imagbmp.cpp:1603
msgid "ICO: Invalid icon index."
-msgstr "ICO: Ãndex d'icones invà lid"
+msgstr "ICO: Ãndex d'icona invà lid."
#: ../src/common/imagiff.cpp:758
msgid "IFF: data stream seems to be truncated."
-msgstr "IFF: el fil de dades sembla estar trencades."
+msgstr "IFF: sembla que s'ha truncat el flux de dades."
#: ../src/common/imagiff.cpp:742
msgid "IFF: error in IFF image format."
-msgstr "IFF: error en format d'imatge IFF."
+msgstr "IFF: error en el format d'imatge IFF."
#: ../src/common/imagiff.cpp:745
msgid "IFF: not enough memory."
@@ -4278,23 +4087,27 @@ msgstr "IFF: no hi ha prou memòria."
#: ../src/common/imagiff.cpp:748
msgid "IFF: unknown error!!!"
-msgstr "IFF: error desconegut!!!"
+msgstr "IFF: s'ha produït un error desconegut!!!"
#: ../src/common/fmapbase.cpp:197
msgid "ISO-2022-JP"
-msgstr ""
+msgstr "ISO-2022-JP"
#: ../src/html/htmprint.cpp:282
msgid ""
"If possible, try changing the layout parameters to make the printout more "
"narrow."
msgstr ""
+"Si és possible, proveu de canviar els parà metres de disposició per a fer que "
+"la impressió sigui més estreta."
#: ../src/generic/dbgrptg.cpp:358
msgid ""
"If you have any additional information pertaining to this bug\n"
"report, please enter it here and it will be joined to it:"
msgstr ""
+"Si teniu informació addicional relativa a aquest informe\n"
+"d'errors, introduïu-la aquà i s'hi adjuntarà :"
#: ../src/generic/dbgrptg.cpp:324
msgid ""
@@ -4303,107 +4116,111 @@ msgid ""
"but be warned that it may hinder improving the program, so if\n"
"at all possible please do continue with the report generation.\n"
msgstr ""
+"Si voleu suprimir completament aquest informe de depuració, trieu el botó \""
+"Cancel·la\",\n"
+"però tingueu en compte que això pot impedir que es millori el programa, de "
+"manera\n"
+"que si us és possible, continueu amb la generació de l'informe.\n"
#: ../src/msw/registry.cpp:1405
#, c-format
msgid "Ignoring value \"%s\" of the key \"%s\"."
-msgstr ""
+msgstr "S'ignora el valor \"%s\" de la clau \"%s\"."
#: ../src/common/xtistrm.cpp:295
msgid "Illegal Object Class (Non-wxEvtHandler) as Event Source"
msgstr ""
+"Classe d'objecte invà lida (no és un wxEvtHandler) com a origen de "
+"l'esdeveniment"
#: ../src/common/xti.cpp:513
msgid "Illegal Parameter Count for ConstructObject Method"
-msgstr ""
+msgstr "Nombre de parà metres incorrecte per al mètode ConstructObject"
#: ../src/common/xti.cpp:501
msgid "Illegal Parameter Count for Create Method"
-msgstr ""
+msgstr "Nombre de parà metres incorrecte per al mètode Create"
#: ../src/generic/dirctrlg.cpp:570 ../src/generic/filectrlg.cpp:756
msgid "Illegal directory name."
-msgstr "Nom il·legal de directori"
+msgstr "Nom de directori no permès."
#: ../src/generic/filectrlg.cpp:1367
msgid "Illegal file specification."
-msgstr "Especificació de fitxer il·legal."
+msgstr "Especificació de fitxer no permesa."
#: ../src/common/image.cpp:2269
-#, fuzzy
msgid "Image and mask have different sizes."
-msgstr "La imatge i la mà scara tenen diferents mides"
+msgstr "La imatge i la mà scara tenen mides diferents."
#: ../src/common/image.cpp:2746
-#, fuzzy, c-format
+#, c-format
msgid "Image file is not of type %d."
msgstr "El fitxer d'imatge no és del tipus %d."
#: ../src/common/image.cpp:2877
-#, fuzzy, c-format
+#, c-format
msgid "Image is not of type %s."
-msgstr "El fitxer d'imatge no és del tipus %d."
+msgstr "La imatge no és del tipus %s."
#: ../src/msw/textctrl.cpp:488
msgid ""
"Impossible to create a rich edit control, using simple text control instead. "
"Please reinstall riched32.dll"
msgstr ""
-"No és possible crear un control d'edició rica, utilitzant en el seu lloc un "
-"control de text simple. Reinstal·leu riched32.dll"
+"No és possible crear un control d'edició rica, s'utilitzarà en el seu lloc "
+"un control de text simple. Reinstal·leu riched32.dll"
#: ../src/unix/utilsunx.cpp:301
msgid "Impossible to get child process input"
-msgstr "És impossible obtenir l'entrada de procés fill."
+msgstr "No és possible obtenir l'entrada del procés fill"
#: ../src/common/filefn.cpp:1028
#, c-format
msgid "Impossible to get permissions for file '%s'"
-msgstr "No és possible obtenir permisos per al fitxer '%s'"
+msgstr "No és possible obtenir els permisos del fitxer '%s'"
#: ../src/common/filefn.cpp:1042
#, c-format
msgid "Impossible to overwrite the file '%s'"
-msgstr "És impossible sobrescriure el fitxer '%s'"
+msgstr "No és possible sobreescriure el fitxer '%s'"
#: ../src/common/filefn.cpp:1097
#, c-format
msgid "Impossible to set permissions for the file '%s'"
-msgstr "És impossible fixar els permisos per al fitxer '%s'"
+msgstr "No és possible definir els permisos del fitxer '%s'"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:886
-#, fuzzy
msgid "InactiveBorder"
-msgstr "Modern"
+msgstr "InactiveBorder"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:887
msgid "InactiveCaption"
-msgstr ""
+msgstr "InactiveCaption"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:888
msgid "InactiveCaptionText"
-msgstr ""
+msgstr "InactiveCaptionText"
#: ../src/common/gifdecod.cpp:792
#, c-format
msgid "Incorrect GIF frame size (%u, %d) for the frame #%u"
-msgstr ""
+msgstr "Mida de fotograma de GIF incorrecta (%u, %d) per al fotograma número %u"
#: ../src/msw/ole/automtn.cpp:635
msgid "Incorrect number of arguments."
-msgstr ""
+msgstr "Nombre incorrecte d'arguments."
#: ../src/common/stockitem.cpp:165
-#, fuzzy
msgid "Indent"
-msgstr "Ãndex"
+msgstr "Sagnat"
#: ../src/richtext/richtextformatdlg.cpp:349
msgid "Indents && Spacing"
-msgstr ""
+msgstr "Indentació i espaiat"
#: ../src/common/stockitem.cpp:166 ../src/html/helpwnd.cpp:515
msgid "Index"
@@ -4415,97 +4232,91 @@ msgstr "Indi (ISO-8859-12)"
#: ../src/common/stockitem.cpp:167
msgid "Info"
-msgstr ""
+msgstr "Informació"
#: ../src/common/init.cpp:287
msgid "Initialization failed in post init, aborting."
-msgstr ""
+msgstr "Ha fallat la inicialització a post init, s'està avortant."
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:54
-#, fuzzy
msgid "Ins"
-msgstr "Ãndex"
+msgstr "Inser"
#. TRANSLATORS: Name of keyboard key
#: ../src/richtext/richtextsymboldlg.cpp:472 ../src/common/accelcmn.cpp:53
-#, fuzzy
msgid "Insert"
-msgstr "Ãndex"
+msgstr "Insereix"
#: ../src/richtext/richtextbuffer.cpp:8067
-#, fuzzy
msgid "Insert Field"
-msgstr "Ãndex"
+msgstr "Insereix un camp"
#: ../src/richtext/richtextbuffer.cpp:7978
#: ../src/richtext/richtextbuffer.cpp:8936
msgid "Insert Image"
-msgstr ""
+msgstr "Insereix una imatge"
#: ../src/richtext/richtextbuffer.cpp:8025
-#, fuzzy
msgid "Insert Object"
-msgstr "Ãndex"
+msgstr "Insereix un objecte"
#: ../src/richtext/richtextctrl.cpp:1286 ../src/richtext/richtextctrl.cpp:1494
#: ../src/richtext/richtextbuffer.cpp:7822
#: ../src/richtext/richtextbuffer.cpp:7852
#: ../src/richtext/richtextbuffer.cpp:7894
msgid "Insert Text"
-msgstr ""
+msgstr "Insereix text"
#: ../src/richtext/richtextindentspage.cpp:295
#: ../src/richtext/richtextindentspage.cpp:297
msgid "Inserts a page break before the paragraph."
-msgstr ""
+msgstr "Insereix un salt de pà gina abans del parà graf."
#: ../src/richtext/richtextborderspage.cpp:617
-#, fuzzy
msgid "Inset"
-msgstr "Ãndex"
+msgstr "Interior"
#: ../src/gtk/app.cpp:425
#, c-format
msgid "Invalid GTK+ command line option, use \"%s --help\""
-msgstr ""
+msgstr "Optó de lÃnia d'ordres de GTK+ invà lida, feu servir \"%s --help\""
#: ../src/common/imagtiff.cpp:311
msgid "Invalid TIFF image index."
-msgstr "Index d'imatge TIFF invà lid"
+msgstr "Ãndex d'imatge TIFF invà lid."
#: ../src/common/appcmn.cpp:273
#, c-format
msgid "Invalid display mode specification '%s'."
-msgstr "Mode d'especificació de mostreig '%s' invà lid."
+msgstr "Especificació de mode de pantalla invà lida '%s'."
#: ../src/x11/app.cpp:127
#, c-format
msgid "Invalid geometry specification '%s'"
-msgstr "Especificació geomètrica invà lida '%s'"
+msgstr "Especificació de geometria invà lida '%s'"
#: ../src/unix/fswatcher_inotify.cpp:323
#, c-format
msgid "Invalid inotify event for \"%s\""
-msgstr ""
+msgstr "Esdeveniment inotify invà lid per a \"%s\""
#: ../src/unix/snglinst.cpp:312
#, c-format
msgid "Invalid lock file '%s'."
-msgstr "Fitxer de bloqueig '%s' invà lid."
+msgstr "Fitxer de blocatge invà lid '%s'."
#: ../src/common/translation.cpp:1125
-#, fuzzy
msgid "Invalid message catalog."
-msgstr "'%s' no és un missatge và lid de catà leg"
+msgstr "Catà leg de missatges invà lid."
#: ../src/common/xtistrm.cpp:405 ../src/common/xtistrm.cpp:420
msgid "Invalid or Null Object ID passed to GetObjectClassInfo"
-msgstr ""
+msgstr "Identificador d'objecte passat a GetObjectClassInfo nul o invà lid"
#: ../src/common/xtistrm.cpp:435
msgid "Invalid or Null Object ID passed to HasObjectClassInfo"
-msgstr ""
+msgstr "Identificador d'objecte passat a HasObjectClassInfo nul o invà lid"
#: ../src/common/regex.cpp:310
#, c-format
@@ -4516,6 +4327,7 @@ msgstr "Expressió regular invà lida '%s': %s"
#, c-format
msgid "Invalid value %ld for a boolean key \"%s\" in config file."
msgstr ""
+"Valor invà lid %ld per a la clau booleana \"%s\" al fitxer de configuració."
#: ../src/generic/fontdlgg.cpp:329 ../src/richtext/richtextfontpage.cpp:351
#: ../src/osx/carbon/fontdlg.cpp:361 ../src/common/stockitem.cpp:168
@@ -4528,7 +4340,7 @@ msgstr "Sobre italià , 110 x 230 mm"
#: ../src/common/imagjpeg.cpp:270
msgid "JPEG: Couldn't load - file is probably corrupted."
-msgstr "JPEG: No s'ha pogut carregar - el fitxer deu estar corromput."
+msgstr "JPEG: No s'ha pogut carregar - probablement el fitxer és corrupte."
#: ../src/common/imagjpeg.cpp:449
msgid "JPEG: Couldn't save image."
@@ -4536,230 +4348,220 @@ msgstr "JPEG: No s'ha pogut desar la imatge."
#: ../src/common/paper.cpp:163
msgid "Japanese Double Postcard 200 x 148 mm"
-msgstr ""
+msgstr "Postal japonesa doble, 200 x 148 mm"
#: ../src/common/paper.cpp:167
msgid "Japanese Envelope Chou #3"
-msgstr ""
+msgstr "Sobre japonès Chou núm. 3"
#: ../src/common/paper.cpp:180
msgid "Japanese Envelope Chou #3 Rotated"
-msgstr ""
+msgstr "Sobre japonès Chou núm. 3 girat"
#: ../src/common/paper.cpp:168
msgid "Japanese Envelope Chou #4"
-msgstr ""
+msgstr "Sobre japonès Chou núm. 4"
#: ../src/common/paper.cpp:181
msgid "Japanese Envelope Chou #4 Rotated"
-msgstr ""
+msgstr "Sobre japonès Chou núm. 4 girat"
#: ../src/common/paper.cpp:165
msgid "Japanese Envelope Kaku #2"
-msgstr ""
+msgstr "Sobre japonès Kaku núm. 2"
#: ../src/common/paper.cpp:178
msgid "Japanese Envelope Kaku #2 Rotated"
-msgstr ""
+msgstr "Sobre japonès Kaku núm. 2 girat"
#: ../src/common/paper.cpp:166
msgid "Japanese Envelope Kaku #3"
-msgstr ""
+msgstr "Sobre japonès Kaku núm. 3"
#: ../src/common/paper.cpp:179
msgid "Japanese Envelope Kaku #3 Rotated"
-msgstr ""
+msgstr "Sobre japonès Kaku núm. 3 girat"
#: ../src/common/paper.cpp:185
msgid "Japanese Envelope You #4"
-msgstr ""
+msgstr "Sobre japonès You núm. 4"
#: ../src/common/paper.cpp:186
msgid "Japanese Envelope You #4 Rotated"
-msgstr ""
+msgstr "Sobre japonès You núm. 4 girat"
#: ../src/common/paper.cpp:138
msgid "Japanese Postcard 100 x 148 mm"
-msgstr ""
+msgstr "Postal japonesa, 100 x 148 mm"
#: ../src/common/paper.cpp:175
msgid "Japanese Postcard Rotated 148 x 100 mm"
-msgstr ""
+msgstr "Postal japonesa girada, 148 x 100 mm"
#: ../src/common/stockitem.cpp:169
msgid "Jump to"
-msgstr ""
+msgstr "Vés a"
#: ../src/common/stockitem.cpp:171
msgid "Justified"
-msgstr ""
+msgstr "Justificat"
#: ../src/richtext/richtextindentspage.cpp:155
#: ../src/richtext/richtextindentspage.cpp:157
#: ../src/richtext/richtextliststylepage.cpp:344
#: ../src/richtext/richtextliststylepage.cpp:346
msgid "Justify text left and right."
-msgstr ""
+msgstr "Justifica el text a l'esquerra i a la dreta."
#: ../src/common/fmapbase.cpp:163
msgid "KOI8-R"
msgstr "KOI8-R"
#: ../src/common/fmapbase.cpp:164
-#, fuzzy
msgid "KOI8-U"
-msgstr "KOI8-R"
+msgstr "KOI8-U"
#: ../src/common/accelcmn.cpp:265 ../src/common/accelcmn.cpp:347
msgid "KP_"
-msgstr ""
+msgstr "BN_"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:106
msgid "KP_Add"
-msgstr ""
+msgstr "Suma (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:101
msgid "KP_Begin"
-msgstr ""
+msgstr "Inici (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:109
msgid "KP_Decimal"
-msgstr ""
+msgstr "Decimal (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:103
-#, fuzzy
msgid "KP_Delete"
-msgstr "&Elimina"
+msgstr "Suprimeix (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:110
msgid "KP_Divide"
-msgstr ""
+msgstr "Divisió (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:95
-#, fuzzy
msgid "KP_Down"
-msgstr "Avall"
+msgstr "Avall (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:100
msgid "KP_End"
-msgstr ""
+msgstr "Fi (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:90
-#, fuzzy
msgid "KP_Enter"
-msgstr "Imprimeix"
+msgstr "Retorn (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:104
msgid "KP_Equal"
-msgstr ""
+msgstr "Igual (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:91
-#, fuzzy
msgid "KP_Home"
-msgstr "sense nom"
+msgstr "Inici (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:102
-#, fuzzy
msgid "KP_Insert"
-msgstr "Ãndex"
+msgstr "Insereix (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:92
msgid "KP_Left"
-msgstr ""
+msgstr "Esquerra (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:105
msgid "KP_Multiply"
-msgstr ""
+msgstr "Multiplicació (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:99
-#, fuzzy
msgid "KP_Next"
-msgstr "&Següent"
+msgstr "Següent (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:97
msgid "KP_PageDown"
-msgstr ""
+msgstr "Av Pà g (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:96
msgid "KP_PageUp"
-msgstr ""
+msgstr "Re Pà g (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:98
msgid "KP_Prior"
-msgstr ""
+msgstr "Anterior (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:94
-#, fuzzy
msgid "KP_Right"
-msgstr "Clar"
+msgstr "Dreta (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:107
msgid "KP_Separator"
-msgstr ""
+msgstr "Separador (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:88
msgid "KP_Space"
-msgstr ""
+msgstr "Espai (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:108
msgid "KP_Subtract"
-msgstr ""
+msgstr "Resta (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:89
msgid "KP_Tab"
-msgstr ""
+msgstr "Tab (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:93
msgid "KP_Up"
-msgstr ""
+msgstr "Amunt (teclat numèric)"
#: ../src/richtext/richtextindentspage.cpp:270
msgid "L&ine spacing:"
-msgstr ""
+msgstr "&Interlineat:"
#: ../src/generic/prntdlgg.cpp:613 ../src/generic/prntdlgg.cpp:868
msgid "Landscape"
msgstr "Apaïsat"
#: ../src/common/stockitem.cpp:174
-#, fuzzy
msgid "Last"
-msgstr "&Enganxa"
+msgstr "Últim"
#: ../src/common/prntbase.cpp:1572
-#, fuzzy
msgid "Last page"
-msgstr "Pà gina següent"
+msgstr "Última pà gina"
#: ../src/common/log.cpp:305
#, c-format
msgid "Last repeated message (\"%s\", %u time) wasn't output"
msgid_plural "Last repeated message (\"%s\", %u times) wasn't output"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "No s'ha mostrat el darrer missatge repetit (\"%s\", %u vegada)"
+msgstr[1] "No s'ha mostrat el darrer missatge repetit (\"%s\", %u vegades)"
#: ../src/common/paper.cpp:103
msgid "Ledger, 17 x 11 in"
@@ -4776,159 +4578,153 @@ msgstr "Ledger, 17 x 11 polz."
#: ../src/richtext/richtextbulletspage.cpp:190
#: ../src/richtext/richtextsizepage.cpp:249 ../src/common/accelcmn.cpp:61
msgid "Left"
-msgstr ""
+msgstr "Esquerra"
#: ../src/richtext/richtextindentspage.cpp:204
#: ../src/richtext/richtextliststylepage.cpp:390
msgid "Left (&first line):"
-msgstr ""
+msgstr "Esquerra (&primera lÃnia):"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1761
msgid "Left Button"
-msgstr ""
+msgstr "Botó esquerre"
#: ../src/generic/prntdlgg.cpp:880
msgid "Left margin (mm):"
-msgstr "Marge esquerra (mm):"
+msgstr "Marge esquerre (mm):"
#: ../src/richtext/richtextindentspage.cpp:141
#: ../src/richtext/richtextindentspage.cpp:143
#: ../src/richtext/richtextliststylepage.cpp:330
#: ../src/richtext/richtextliststylepage.cpp:332
msgid "Left-align text."
-msgstr ""
+msgstr "Alinea el text a l'esquerra."
#: ../src/common/paper.cpp:144
-#, fuzzy
msgid "Legal Extra 9 1/2 x 15 in"
-msgstr "Legal (8 1/2 x 14 polzades)"
+msgstr "Legal extra, 9 1/2 x 15 polz."
#: ../src/common/paper.cpp:96
msgid "Legal, 8 1/2 x 14 in"
-msgstr "Legal (8 1/2 x 14 polzades)"
+msgstr "Legal, 8 1/2 x 14 polz."
#: ../src/common/paper.cpp:143
-#, fuzzy
msgid "Letter Extra 9 1/2 x 12 in"
-msgstr "Carta (8 1/2 x 11 polzades)"
+msgstr "Carta extra, 9 1/2 x 12 polz."
#: ../src/common/paper.cpp:149
msgid "Letter Extra Transverse 9.275 x 12 in"
-msgstr ""
+msgstr "Carta extra transversal, 9,275 x 12 polz."
#: ../src/common/paper.cpp:152
-#, fuzzy
msgid "Letter Plus 8 1/2 x 12.69 in"
-msgstr "Carta (8 1/2 x 11 polzades)"
+msgstr "Carta plus, 8 1/2 x 12,69 polz."
#: ../src/common/paper.cpp:169
-#, fuzzy
msgid "Letter Rotated 11 x 8 1/2 in"
-msgstr "Carta (8 1/2 x 11 polzades)"
+msgstr "Carta girada, 11 x 8 1/2 polz."
#: ../src/common/paper.cpp:101
msgid "Letter Small, 8 1/2 x 11 in"
-msgstr "Carta petita, 8 1/2 x 11 polz"
+msgstr "Carta petita, 8 1/2 x 11 polz."
#: ../src/common/paper.cpp:147
-#, fuzzy
msgid "Letter Transverse 8 1/2 x 11 in"
-msgstr "Carta (8 1/2 x 11 polzades)"
+msgstr "Carta transversal, 8 1/2 x 11 polz."
#: ../src/common/paper.cpp:95
msgid "Letter, 8 1/2 x 11 in"
-msgstr "Carta (8 1/2 x 11 polzades)"
+msgstr "Carta, 8 1/2 x 11 polz."
#: ../src/generic/aboutdlgg.cpp:173
msgid "License"
-msgstr ""
+msgstr "Llicència"
#: ../src/generic/fontdlgg.cpp:332
msgid "Light"
-msgstr "Clar"
+msgstr "Prima"
#: ../src/propgrid/advprops.cpp:1608
msgid "Lime"
-msgstr ""
+msgstr "Llima"
#: ../src/generic/helpext.cpp:294
#, c-format
msgid "Line %lu of map file \"%s\" has invalid syntax, skipped."
-msgstr ""
+msgstr "La lÃnia %lu del fitxer de mapa \"%s\" té sintaxi invà lida, s'ha omès."
#: ../src/richtext/richtextliststylepage.cpp:444
msgid "Line spacing:"
-msgstr ""
+msgstr "Interlineat:"
#: ../src/html/chm.cpp:838
msgid "Link contained '//', converted to absolute link."
-msgstr ""
+msgstr "L'enllaç contenia '//', s'ha convertit a un enllaç absolut."
#: ../src/richtext/richtextformatdlg.cpp:364
msgid "List Style"
-msgstr ""
+msgstr "Estil de llista"
#: ../src/richtext/richtextstyles.cpp:1064
msgid "List styles"
-msgstr ""
+msgstr "Estils de llista"
#: ../src/richtext/richtextfontpage.cpp:197
#: ../src/richtext/richtextfontpage.cpp:199
msgid "Lists font sizes in points."
-msgstr ""
+msgstr "Mostra una llista de mides de lletra en punts."
#: ../src/richtext/richtextfontpage.cpp:190
#: ../src/richtext/richtextfontpage.cpp:192
-#, fuzzy
msgid "Lists the available fonts."
-msgstr "Els consells no es troben disponibles!"
+msgstr "Mostra la llista de tipus de lletra disponibles."
#: ../src/common/fldlgcmn.cpp:340
#, c-format
msgid "Load %s file"
-msgstr "Carrega fitxer %s"
+msgstr "Carrega el fitxer %s"
#: ../src/html/htmlwin.cpp:597
msgid "Loading : "
-msgstr "S'està carregant:"
+msgstr "S'està carregant: "
#: ../src/unix/snglinst.cpp:246
#, c-format
msgid "Lock file '%s' has incorrect owner."
-msgstr ""
+msgstr "El fitxer de blocatge '%s' té un propietari incorrecte."
#: ../src/unix/snglinst.cpp:251
#, c-format
msgid "Lock file '%s' has incorrect permissions."
-msgstr ""
+msgstr "El fitxer de blocatge '%s' té els permisos incorrectes."
#: ../src/generic/logg.cpp:576
#, c-format
msgid "Log saved to the file '%s'."
-msgstr "Registre desat en el fitxer '%s'."
+msgstr "Registre desat al fitxer '%s'."
#: ../src/richtext/richtextliststylepage.cpp:484
#: ../src/richtext/richtextbulletspage.cpp:276
msgid "Lower case letters"
-msgstr ""
+msgstr "Lletres en minúscules"
#: ../src/richtext/richtextliststylepage.cpp:486
#: ../src/richtext/richtextbulletspage.cpp:278
msgid "Lower case roman numerals"
-msgstr ""
+msgstr "Nombres romans en minúscules"
#: ../src/gtk/mdi.cpp:422 ../src/gtk1/mdi.cpp:431
msgid "MDI child"
-msgstr "MDI fill"
+msgstr "Fill de l'MDI"
#: ../src/msw/helpchm.cpp:56
msgid ""
"MS HTML Help functions are unavailable because the MS HTML Help library is "
"not installed on this machine. Please install it."
msgstr ""
-"Les funcions d'ajuda MS HTML no están disponibles perque la llibreria "
-"d'Ajuda MS HTML no està instal·lada en aquest maquinari. L'heu d'instal·lar.."
+"Les funcions de l'ajuda MS HTML no estan disponibles perquè la biblioteca de "
+"l'ajuda MS HTML no està instal·lada en aquest dispositiu. Instal·leu-la."
#: ../src/univ/themes/win32.cpp:3754
msgid "Ma&ximize"
@@ -4936,229 +4732,221 @@ msgstr "Ma&ximitza"
#: ../src/common/fmapbase.cpp:203
msgid "MacArabic"
-msgstr ""
+msgstr "MacArabic"
#: ../src/common/fmapbase.cpp:222
msgid "MacArmenian"
-msgstr ""
+msgstr "MacArmenian"
#: ../src/common/fmapbase.cpp:211
msgid "MacBengali"
-msgstr ""
+msgstr "MacBengali"
#: ../src/common/fmapbase.cpp:217
msgid "MacBurmese"
-msgstr ""
+msgstr "MacBurmese"
#: ../src/common/fmapbase.cpp:236
msgid "MacCeltic"
-msgstr ""
+msgstr "MacCeltic"
#: ../src/common/fmapbase.cpp:227
msgid "MacCentralEurRoman"
-msgstr ""
+msgstr "MacCentralEurRoman"
#: ../src/common/fmapbase.cpp:223
msgid "MacChineseSimp"
-msgstr ""
+msgstr "MacChineseSimp"
#: ../src/common/fmapbase.cpp:201
msgid "MacChineseTrad"
-msgstr ""
+msgstr "MacChineseTrad"
#: ../src/common/fmapbase.cpp:233
msgid "MacCroatian"
-msgstr ""
+msgstr "MacCroatian"
#: ../src/common/fmapbase.cpp:206
msgid "MacCyrillic"
-msgstr ""
+msgstr "MacCyrillic"
#: ../src/common/fmapbase.cpp:207
msgid "MacDevanagari"
-msgstr ""
+msgstr "MacDevanagari"
#: ../src/common/fmapbase.cpp:231
msgid "MacDingbats"
-msgstr ""
+msgstr "MacDingbats"
#: ../src/common/fmapbase.cpp:226
msgid "MacEthiopic"
-msgstr ""
+msgstr "MacEthiopic"
#: ../src/common/fmapbase.cpp:229
msgid "MacExtArabic"
-msgstr ""
+msgstr "MacExtArabic"
#: ../src/common/fmapbase.cpp:237
msgid "MacGaelic"
-msgstr ""
+msgstr "MacGaelic"
#: ../src/common/fmapbase.cpp:221
msgid "MacGeorgian"
-msgstr ""
+msgstr "MacGeorgian"
#: ../src/common/fmapbase.cpp:205
msgid "MacGreek"
-msgstr ""
+msgstr "MacGreek"
#: ../src/common/fmapbase.cpp:209
msgid "MacGujarati"
-msgstr ""
+msgstr "MacGujarati"
#: ../src/common/fmapbase.cpp:208
msgid "MacGurmukhi"
-msgstr ""
+msgstr "MacGurmukhi"
#: ../src/common/fmapbase.cpp:204
msgid "MacHebrew"
-msgstr ""
+msgstr "MacHebrew"
#: ../src/common/fmapbase.cpp:234
msgid "MacIcelandic"
-msgstr ""
+msgstr "MacIcelandic"
#: ../src/common/fmapbase.cpp:200
msgid "MacJapanese"
-msgstr ""
+msgstr "MacJapanese"
#: ../src/common/fmapbase.cpp:214
msgid "MacKannada"
-msgstr ""
+msgstr "MacKannada"
#: ../src/common/fmapbase.cpp:238
msgid "MacKeyboardGlyphs"
-msgstr ""
+msgstr "MacKeyboardGlyphs"
#: ../src/common/fmapbase.cpp:218
msgid "MacKhmer"
-msgstr ""
+msgstr "MacKhmer"
#: ../src/common/fmapbase.cpp:202
msgid "MacKorean"
-msgstr ""
+msgstr "MacKorean"
#: ../src/common/fmapbase.cpp:220
msgid "MacLaotian"
-msgstr ""
+msgstr "MacLaotian"
#: ../src/common/fmapbase.cpp:215
msgid "MacMalayalam"
-msgstr ""
+msgstr "MacMalayalam"
#: ../src/common/fmapbase.cpp:225
msgid "MacMongolian"
-msgstr ""
+msgstr "MacMongolian"
#: ../src/common/fmapbase.cpp:210
msgid "MacOriya"
-msgstr ""
+msgstr "MacOriya"
#: ../src/common/fmapbase.cpp:199
-#, fuzzy
msgid "MacRoman"
-msgstr "Roman"
+msgstr "MacRoman"
#: ../src/common/fmapbase.cpp:235
-#, fuzzy
msgid "MacRomanian"
-msgstr "Roman"
+msgstr "MacRomanian"
#: ../src/common/fmapbase.cpp:216
-#, fuzzy
msgid "MacSinhalese"
-msgstr "Coincidència exacta"
+msgstr "MacSinhalese"
#: ../src/common/fmapbase.cpp:230
msgid "MacSymbol"
-msgstr ""
+msgstr "MacSymbol"
#: ../src/common/fmapbase.cpp:212
msgid "MacTamil"
-msgstr ""
+msgstr "MacTamil"
#: ../src/common/fmapbase.cpp:213
msgid "MacTelugu"
-msgstr ""
+msgstr "MacTelugu"
#: ../src/common/fmapbase.cpp:219
msgid "MacThai"
-msgstr ""
+msgstr "MacThai"
#: ../src/common/fmapbase.cpp:224
msgid "MacTibetan"
-msgstr ""
+msgstr "MacTibetan"
#: ../src/common/fmapbase.cpp:232
msgid "MacTurkish"
-msgstr ""
+msgstr "MacTurkish"
#: ../src/common/fmapbase.cpp:228
msgid "MacVietnamese"
-msgstr ""
+msgstr "MacVietnamese"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1762
msgid "Magnifier"
-msgstr ""
+msgstr "Lupa"
#: ../src/propgrid/advprops.cpp:2143
-#, fuzzy
msgid "Make a selection:"
-msgstr "Seccions"
+msgstr "Crea una selecció:"
#: ../src/richtext/richtextformatdlg.cpp:374
#: ../src/richtext/richtextmarginspage.cpp:171
msgid "Margins"
-msgstr ""
+msgstr "Marges"
#: ../src/propgrid/advprops.cpp:1595
msgid "Maroon"
-msgstr ""
+msgstr "Marró"
#: ../src/generic/fdrepdlg.cpp:147
msgid "Match case"
-msgstr "Coincidència exacta"
+msgstr "Distingeix entre majúscules i minúscules"
#: ../src/richtext/richtextsizepage.cpp:463
-#, fuzzy
msgid "Max height:"
-msgstr "vuitè"
+msgstr "Alçada mà xima:"
#: ../src/richtext/richtextsizepage.cpp:436
-#, fuzzy
msgid "Max width:"
-msgstr "Substitueix amb:"
+msgstr "Amplada mà xima:"
#: ../src/unix/mediactrl.cpp:947
#, c-format
msgid "Media playback error: %s"
-msgstr ""
+msgstr "S'ha produït un error en la reproducció del mitjà : %s"
#: ../src/common/fs_mem.cpp:175
#, c-format
msgid "Memory VFS already contains file '%s'!"
-msgstr "La memòria VFs encara conté el fitxer '%s'!"
+msgstr "El VFS en memòria ja conté el fitxer '%s'!"
#. TRANSLATORS: Name of keyboard key
#. TRANSLATORS: Keyword of system colour
#: ../src/common/accelcmn.cpp:73 ../src/propgrid/advprops.cpp:889
-#, fuzzy
msgid "Menu"
-msgstr "Modern"
+msgstr "Menú"
#: ../src/common/msgout.cpp:124
-#, fuzzy
msgid "Message"
-msgstr "missatge %s"
+msgstr "Missatge"
#: ../src/univ/themes/metal.cpp:168
msgid "Metal theme"
-msgstr "Tema metal·litzat"
+msgstr "Tema metà l·lic"
#: ../src/msw/ole/automtn.cpp:652
msgid "Method or property not found."
-msgstr ""
+msgstr "No s'ha trobat el mètode o la propietat."
#: ../src/univ/themes/win32.cpp:3752
msgid "Mi&nimize"
@@ -5167,20 +4955,19 @@ msgstr "Mi&nimitza"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1763
msgid "Middle Button"
-msgstr ""
+msgstr "Botó del mig"
#: ../src/richtext/richtextsizepage.cpp:409
-#, fuzzy
msgid "Min height:"
-msgstr "vuitè"
+msgstr "Alçada mÃnima:"
#: ../src/richtext/richtextsizepage.cpp:382
msgid "Min width:"
-msgstr ""
+msgstr "Amplada mÃnima:"
#: ../src/msw/ole/automtn.cpp:668
msgid "Missing a required parameter."
-msgstr ""
+msgstr "Manca un parà metre necessari."
#: ../src/generic/fontdlgg.cpp:324
msgid "Modern"
@@ -5188,43 +4975,43 @@ msgstr "Modern"
#: ../src/generic/filectrlg.cpp:427
msgid "Modified"
-msgstr ""
+msgstr "Modificat"
#: ../src/common/module.cpp:133
#, c-format
msgid "Module \"%s\" initialization failed"
-msgstr ""
+msgstr "No s'ha pogut inicialitzar el mòdul \"%s\""
#: ../src/common/paper.cpp:131
msgid "Monarch Envelope, 3 7/8 x 7 1/2 in"
-msgstr "Sobre reial, 3 7/8 x 1/2 polz"
+msgstr "Sobre Monarch, 3 7/8 x 1/2 polz."
#: ../src/msw/fswatcher.cpp:143
msgid "Monitoring individual files for changes is not supported currently."
msgstr ""
+"Actualment no està suportat supervisar els canvis de fitxers individuals."
#: ../src/generic/editlbox.cpp:172
msgid "Move down"
-msgstr ""
+msgstr "Mou cap avall"
#: ../src/generic/editlbox.cpp:171
-#, fuzzy
msgid "Move up"
-msgstr "&Mou"
+msgstr "Mou cap amunt"
#: ../src/richtext/richtextsizepage.cpp:682
#: ../src/richtext/richtextsizepage.cpp:684
msgid "Moves the object to the next paragraph."
-msgstr ""
+msgstr "Mou l'objecte al parà graf següent."
#: ../src/richtext/richtextsizepage.cpp:676
#: ../src/richtext/richtextsizepage.cpp:678
msgid "Moves the object to the previous paragraph."
-msgstr ""
+msgstr "Mou l'objecte al parà graf anterior."
#: ../src/richtext/richtextbuffer.cpp:9966
msgid "Multiple Cell Properties"
-msgstr ""
+msgstr "Propietats de múltiples cel·les"
#: ../src/generic/filectrlg.cpp:424
msgid "Name"
@@ -5232,33 +5019,31 @@ msgstr "Nom"
#: ../src/propgrid/advprops.cpp:1596
msgid "Navy"
-msgstr ""
+msgstr "Blau marÃ"
#: ../src/common/stockitem.cpp:175
msgid "Network"
-msgstr ""
+msgstr "Xarxa"
#: ../src/common/stockitem.cpp:176
-#, fuzzy
msgid "New"
-msgstr "&Següent"
+msgstr "Nou"
#: ../src/richtext/richtextstyledlg.cpp:243
-#, fuzzy
msgid "New &Box Style..."
-msgstr "&Elimina"
+msgstr "&Estil de caixa nou..."
#: ../src/richtext/richtextstyledlg.cpp:225
msgid "New &Character Style..."
-msgstr ""
+msgstr "Estil de &carà cter nou..."
#: ../src/richtext/richtextstyledlg.cpp:237
msgid "New &List Style..."
-msgstr ""
+msgstr "Estil de &llista nou..."
#: ../src/richtext/richtextstyledlg.cpp:231
msgid "New &Paragraph Style..."
-msgstr ""
+msgstr "Estil de &parà graf nou..."
#: ../src/richtext/richtextstyledlg.cpp:606
#: ../src/richtext/richtextstyledlg.cpp:611
@@ -5271,16 +5056,16 @@ msgstr ""
#: ../src/richtext/richtextstyledlg.cpp:934
#: ../src/richtext/richtextstyledlg.cpp:939
msgid "New Style"
-msgstr ""
+msgstr "Estil nou"
#: ../src/generic/editlbox.cpp:169
msgid "New item"
-msgstr ""
+msgstr "Element nou"
#: ../src/generic/dirdlgg.cpp:297 ../src/generic/dirdlgg.cpp:307
#: ../src/generic/filectrlg.cpp:618 ../src/generic/filectrlg.cpp:627
msgid "NewName"
-msgstr "Nou nom"
+msgstr "Nom nou"
#: ../src/common/prntbase.cpp:1567 ../src/html/helpwnd.cpp:665
msgid "Next page"
@@ -5294,25 +5079,25 @@ msgstr "No"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1764
msgid "No Entry"
-msgstr ""
+msgstr "Sense entrada"
#: ../src/generic/animateg.cpp:150
-#, fuzzy, c-format
+#, c-format
msgid "No animation handler for type %ld defined."
-msgstr "No hi ha definit cap manegador per al tipus d'imatge %d."
+msgstr "No hi ha definit cap gestor d'animació per al tipus %ld."
#: ../src/dfb/bitmap.cpp:642 ../src/dfb/bitmap.cpp:676
-#, fuzzy, c-format
+#, c-format
msgid "No bitmap handler for type %d defined."
-msgstr "No hi ha definit cap manegador per al tipus d'imatge %d."
+msgstr "No hi ha definit cap gestor de mapa de bits per al tipus %d."
#: ../src/common/utilscmn.cpp:1077
msgid "No default application configured for HTML files."
-msgstr ""
+msgstr "No hi ha configurada cap aplicació per defecte per als fitxers HTML."
#: ../src/generic/helpext.cpp:445
msgid "No entries found."
-msgstr "No s'ha trobat entrades."
+msgstr "No s'ha trobat cap entrada."
#: ../src/common/fontmap.cpp:421
#, c-format
@@ -5322,10 +5107,10 @@ msgid ""
"Do you want to use this encoding (otherwise you will have to choose another "
"one)?"
msgstr ""
-"No s'ha trobat ha cap tipus de lletra per a mostrar text en codifiació "
-"'%s'.\n"
-"però hi ha la codificació '%s' alternativa.\n"
-"Voleu fer servir aquesta codificació (sino haureu de triar-ne una altra)?"
+"No s'ha trobat cap tipus de lletra per a mostrar text amb la codificació "
+"'%s',\n"
+"però hi ha una codificació alternativa, '%s'.\n"
+"Voleu fer servir aquesta codificació (si no, n'haureu de triar una altra)?"
#: ../src/common/fontmap.cpp:426
#, c-format
@@ -5334,61 +5119,57 @@ msgid ""
"Would you like to select a font to be used for this encoding\n"
"(otherwise the text in this encoding will not be shown correctly)?"
msgstr ""
-"No s'ha trobat ha cap tipus de lletra per a mostrar text en codifiació "
+"No s'ha trobat cap tipus de lletra per a mostrar text amb la codificació "
"'%s'.\n"
-"Voleu triar un tipus de lletra per aquesta codificació\n"
-"(sino el text en aquesta codificació no es mostrarà correctament)?"
+"Voleu triar un tipus de lletra perquè es faci servir per a aquesta "
+"codificació\n"
+"(si no, el text amb aquesta codificació no es mostrarà correctament)?"
#: ../src/generic/animateg.cpp:142
-#, fuzzy
msgid "No handler found for animation type."
-msgstr "No s'ha trobat cap manegador per al tipus d'imatge"
+msgstr "No s'ha trobat cap gestor per al tipus d'animació."
#: ../src/common/image.cpp:2728
msgid "No handler found for image type."
-msgstr "No s'ha trobat cap manegador per al tipus d'imatge"
+msgstr "No s'ha trobat cap gestor per al tipus d'imatge."
#: ../src/common/image.cpp:2736 ../src/common/image.cpp:2848
#: ../src/common/image.cpp:2901
#, c-format
msgid "No image handler for type %d defined."
-msgstr "No hi ha definit cap manegador per al tipus d'imatge %d."
+msgstr "No hi ha definit cap gestor d'imatge per al tipus %d."
#: ../src/common/image.cpp:2871 ../src/common/image.cpp:2915
#, c-format
msgid "No image handler for type %s defined."
-msgstr "No hi ha definit cap manegador per al tipus d'imatge %s."
+msgstr "No hi ha definit cap gestor d'imatge per al tipus %s."
#: ../src/html/helpwnd.cpp:858
msgid "No matching page found yet"
-msgstr "Encara no s'ha trobat cap pà gina que coincideixi"
+msgstr "Encara no s'ha trobat cap pà gina que hi coincideixi"
#: ../src/unix/sound.cpp:81
-#, fuzzy
msgid "No sound"
-msgstr "No s'ha trobat entrades."
+msgstr "No hi ha so"
#: ../src/common/image.cpp:2277 ../src/common/image.cpp:2318
-#, fuzzy
msgid "No unused colour in image being masked."
-msgstr "Cap color no utilitzat en la imatge està sent emmascarat"
+msgstr "No hi ha cap color sense utilitzar a la imatge que voleu emmascarar."
#: ../src/common/image.cpp:3374
-#, fuzzy
msgid "No unused colour in image."
-msgstr "Cap color no utilitzat en la imatge està sent emmascarat"
+msgstr "No hi ha cap color sense utilitzar a la imatge."
#: ../src/generic/helpext.cpp:302
#, c-format
msgid "No valid mappings found in the file \"%s\"."
-msgstr ""
+msgstr "No s'ha trobat cap assignació và lida al fitxer \"%s\"."
#: ../src/richtext/richtextborderspage.cpp:610
#: ../src/richtext/richtextsizepage.cpp:248
#: ../src/richtext/richtextsizepage.cpp:252
-#, fuzzy
msgid "None"
-msgstr "Fet"
+msgstr "Cap"
#: ../src/common/fmapbase.cpp:157
msgid "Nordic (ISO-8859-10)"
@@ -5400,160 +5181,152 @@ msgstr "Normal"
#: ../src/html/helpwnd.cpp:1263
msgid "Normal face
and underlined. "
-msgstr ""
+msgstr "Text normal
i subratllat. "
#: ../src/html/helpwnd.cpp:1205
msgid "Normal font:"
-msgstr "Font normal"
+msgstr "Tipus de lletra normal:"
#: ../src/propgrid/props.cpp:1128
-#, fuzzy, c-format
+#, c-format
msgid "Not %s"
-msgstr "No"
+msgstr "No %s"
#: ../include/wx/filename.h:573 ../include/wx/filename.h:578
-#, fuzzy
msgid "Not available"
-msgstr "Servei XBM no disponible!"
+msgstr "No disponible"
#: ../src/richtext/richtextfontpage.cpp:358
-#, fuzzy
msgid "Not underlined"
-msgstr "subratllat"
+msgstr "No subratllat"
#: ../src/common/paper.cpp:115
msgid "Note, 8 1/2 x 11 in"
-msgstr "Nota, 8 1/2 x 11 polzades"
+msgstr "Nota, 8 1/2 x 11 polz."
#: ../src/generic/notifmsgg.cpp:132
-#, fuzzy
msgid "Notice"
-msgstr "No"
+msgstr "AvÃs"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:105
msgid "Num *"
-msgstr ""
+msgstr "* (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:106
msgid "Num +"
-msgstr ""
+msgstr "+ (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:107
msgid "Num ,"
-msgstr ""
+msgstr ", (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:108
msgid "Num -"
-msgstr ""
+msgstr "- (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:109
msgid "Num ."
-msgstr ""
+msgstr ". (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:110
msgid "Num /"
-msgstr ""
+msgstr "/ (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:104
msgid "Num ="
-msgstr ""
+msgstr "= (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:101
msgid "Num Begin"
-msgstr ""
+msgstr "Inici (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:103
-#, fuzzy
msgid "Num Delete"
-msgstr "&Elimina"
+msgstr "Suprimeix (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:95
-#, fuzzy
msgid "Num Down"
-msgstr "Avall"
+msgstr "Avall (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:100
msgid "Num End"
-msgstr ""
+msgstr "Fi (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:90
msgid "Num Enter"
-msgstr ""
+msgstr "Retorn (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:91
-#, fuzzy
msgid "Num Home"
-msgstr "sense nom"
+msgstr "Inici (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:102
-#, fuzzy
msgid "Num Insert"
-msgstr "Ãndex"
+msgstr "Insereix (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:86
msgid "Num Lock"
-msgstr ""
+msgstr "Bloq Núm"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:97
msgid "Num Page Down"
-msgstr ""
+msgstr "Av Pà g (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:96
msgid "Num Page Up"
-msgstr ""
+msgstr "Re Pà g (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:94
-#, fuzzy
msgid "Num Right"
-msgstr "Clar"
+msgstr "Dreta (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:88
msgid "Num Space"
-msgstr ""
+msgstr "Espai (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:89
msgid "Num Tab"
-msgstr ""
+msgstr "Tab (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:93
msgid "Num Up"
-msgstr ""
+msgstr "Amunt (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:92
msgid "Num left"
-msgstr ""
+msgstr "Esquerra (teclat numèric)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:86
msgid "Num_lock"
-msgstr ""
+msgstr "Bloq Núm"
#: ../src/richtext/richtextliststylepage.cpp:487
#: ../src/richtext/richtextbulletspage.cpp:279
msgid "Numbered outline"
-msgstr ""
+msgstr "Esquema numerat"
#: ../include/wx/msgdlg.h:278 ../src/richtext/richtextstyledlg.cpp:297
#: ../src/common/stockitem.cpp:178 ../src/msw/msgdlg.cpp:454
@@ -5564,64 +5337,62 @@ msgstr "D'acord"
#: ../src/msw/ole/automtn.cpp:692
#, c-format
msgid "OLE Automation error in %s: %s"
-msgstr ""
+msgstr "S'ha produït un error d'automatització OLE a %s: %s"
#: ../include/wx/richtext/richtextimagedlg.h:37
-#, fuzzy
msgid "Object Properties"
-msgstr "&Previ"
+msgstr "Propietats de l'objecte"
#: ../src/msw/ole/automtn.cpp:660
msgid "Object implementation does not support named arguments."
-msgstr ""
+msgstr "La implementació de l'objecte no suporta arguments amb nom."
#: ../src/common/xtixml.cpp:264
msgid "Objects must have an id attribute"
-msgstr ""
+msgstr "Els objectes han de tenir un atribut d'identificació"
#: ../src/propgrid/advprops.cpp:1601
msgid "Olive"
-msgstr ""
+msgstr "Oliva"
#: ../src/richtext/richtextbackgroundpage.cpp:325
msgid "Opaci&ty:"
-msgstr ""
+msgstr "Opaci&tat:"
#: ../src/generic/colrdlgg.cpp:354
msgid "Opacity:"
-msgstr ""
+msgstr "Opacitat:"
#: ../src/common/docview.cpp:1773 ../src/common/docview.cpp:1815
msgid "Open File"
-msgstr "Selecciona un Fitxer"
+msgstr "Obre un fitxer"
#: ../src/html/helpwnd.cpp:671 ../src/html/helpwnd.cpp:1554
msgid "Open HTML document"
-msgstr "Obre document HTML"
+msgstr "Obre un document HTML"
#: ../src/generic/dbgrptg.cpp:163
-#, fuzzy, c-format
+#, c-format
msgid "Open file \"%s\""
-msgstr "no s'ha pogut obrir el fitxer '%s'"
+msgstr "Obre el fitxer \"%s\""
#: ../src/common/stockitem.cpp:179
-#, fuzzy
msgid "Open..."
-msgstr "&Desa..."
+msgstr "Obre..."
#: ../src/unix/glx11.cpp:506 ../src/msw/glcanvas.cpp:592
msgid "OpenGL 3.0 or later is not supported by the OpenGL driver."
-msgstr ""
+msgstr "El controlador d'OpenGL no suporta OpenGL 3.0 o superior."
#: ../src/generic/dirctrlg.cpp:599 ../src/generic/dirdlgg.cpp:323
#: ../src/generic/filectrlg.cpp:642 ../src/generic/filectrlg.cpp:786
msgid "Operation not permitted."
-msgstr "Operació no permesa."
+msgstr "L'operació no és permesa."
#: ../src/common/cmdline.cpp:900
-#, fuzzy, c-format
+#, c-format
msgid "Option '%s' can't be negated"
-msgstr "No s'ha pogut crear el directori '%s'"
+msgstr "L'opció '%s' no es pot negar"
#: ../src/common/cmdline.cpp:1064
#, c-format
@@ -5639,7 +5410,7 @@ msgstr "Opcions"
#: ../src/propgrid/advprops.cpp:1606
msgid "Orange"
-msgstr ""
+msgstr "Carabassa"
#: ../src/generic/prntdlgg.cpp:615 ../src/generic/prntdlgg.cpp:869
msgid "Orientation"
@@ -5648,23 +5419,25 @@ msgstr "Orientació"
#: ../src/common/windowid.cpp:242
msgid "Out of window IDs. Recommend shutting down application."
msgstr ""
+"S'han esgotat els identificadors de finestra. És recomanable tancar "
+"l'aplicació."
#: ../src/richtext/richtextborderspage.cpp:398
#: ../src/richtext/richtextborderspage.cpp:556
msgid "Outline"
-msgstr ""
+msgstr "Contorn"
#: ../src/richtext/richtextborderspage.cpp:618
msgid "Outset"
-msgstr ""
+msgstr "Exterior"
#: ../src/msw/ole/automtn.cpp:656
msgid "Overflow while coercing argument values."
-msgstr ""
+msgstr "S'ha produït un desbordament en forçar els valors dels arguments."
#: ../src/common/imagpcx.cpp:457 ../src/common/imagpcx.cpp:480
msgid "PCX: couldn't allocate memory"
-msgstr "PCX: no es pot localitzar la memòria"
+msgstr "PCX: no s'ha pogut assignar la memòria"
#: ../src/common/imagpcx.cpp:456
msgid "PCX: image format unsupported"
@@ -5676,11 +5449,11 @@ msgstr "PCX: imatge invà lida"
#: ../src/common/imagpcx.cpp:442
msgid "PCX: this is not a PCX file."
-msgstr "PCX: aquest no és un fitxer PCX ."
+msgstr "PCX: això no és un fitxer PCX."
#: ../src/common/imagpcx.cpp:459 ../src/common/imagpcx.cpp:481
msgid "PCX: unknown error !!!"
-msgstr "PCX: error desconegut!!!"
+msgstr "PCX: s'ha produït un error desconegut!!!"
#: ../src/common/imagpcx.cpp:458
msgid "PCX: version number too low"
@@ -5688,7 +5461,7 @@ msgstr "PCX: número de versió massa baix"
#: ../src/common/imagpnm.cpp:91
msgid "PNM: Couldn't allocate memory."
-msgstr "PNM: No es pot localitzar la memòria."
+msgstr "PNM: No s'ha pogut assignar la memòria."
#: ../src/common/imagpnm.cpp:73
msgid "PNM: File format is not recognized."
@@ -5697,136 +5470,115 @@ msgstr "PNM: Format de fitxer no reconegut."
#: ../src/common/imagpnm.cpp:112 ../src/common/imagpnm.cpp:134
#: ../src/common/imagpnm.cpp:156
msgid "PNM: File seems truncated."
-msgstr "PNM: el fitxer sembla estroncat"
+msgstr "PNM: El fitxer sembla truncat."
#: ../src/common/paper.cpp:187
msgid "PRC 16K 146 x 215 mm"
-msgstr ""
+msgstr "PRC 16K, 146 x 215 mm"
#: ../src/common/paper.cpp:200
msgid "PRC 16K Rotated"
-msgstr ""
+msgstr "PRC 16K girat"
#: ../src/common/paper.cpp:188
msgid "PRC 32K 97 x 151 mm"
-msgstr ""
+msgstr "PRC 32K, 97 x 151 mm"
#: ../src/common/paper.cpp:201
msgid "PRC 32K Rotated"
-msgstr ""
+msgstr "PRC 32K girat"
#: ../src/common/paper.cpp:189
msgid "PRC 32K(Big) 97 x 151 mm"
-msgstr ""
+msgstr "PRC 32K (Gros), 97 x 151 mm"
#: ../src/common/paper.cpp:202
msgid "PRC 32K(Big) Rotated"
-msgstr ""
+msgstr "PRC 32K (Gros) girat"
#: ../src/common/paper.cpp:190
-#, fuzzy
msgid "PRC Envelope #1 102 x 165 mm"
-msgstr "C6 Sobre, 114 x 162 mm"
+msgstr "Sobre PRC núm. 1, 114 x 162 mm"
#: ../src/common/paper.cpp:203
-#, fuzzy
msgid "PRC Envelope #1 Rotated 165 x 102 mm"
-msgstr "C6 Sobre, 114 x 162 mm"
+msgstr "Sobre PRC núm. 1 girat, 165 x 102 mm"
#: ../src/common/paper.cpp:199
-#, fuzzy
msgid "PRC Envelope #10 324 x 458 mm"
-msgstr "C3 Sobre, 324 x 458 mm"
+msgstr "Sobre PRC núm. 10, 324 x 458 mm"
#: ../src/common/paper.cpp:212
-#, fuzzy
msgid "PRC Envelope #10 Rotated 458 x 324 mm"
-msgstr "C4 Sobre, 229 x 324 mm"
+msgstr "Sobre PRC núm. 10 girat, 458 x 324 mm"
#: ../src/common/paper.cpp:191
-#, fuzzy
msgid "PRC Envelope #2 102 x 176 mm"
-msgstr "C6 Sobre, 114 x 162 mm"
+msgstr "Sobre PRC núm. 2, 102 x 176 mm"
#: ../src/common/paper.cpp:204
-#, fuzzy
msgid "PRC Envelope #2 Rotated 176 x 102 mm"
-msgstr "B6 Sobre, 176 x 125 mm"
+msgstr "Sobre PRC núm. 2 girat, 176 x 102 mm"
#: ../src/common/paper.cpp:192
-#, fuzzy
msgid "PRC Envelope #3 125 x 176 mm"
-msgstr "C6 Sobre, 114 x 162 mm"
+msgstr "Sobre PRC núm. 3, 125 x 176 mm"
#: ../src/common/paper.cpp:205
-#, fuzzy
msgid "PRC Envelope #3 Rotated 176 x 125 mm"
-msgstr "B6 Sobre, 176 x 125 mm"
+msgstr "Sobre PRC núm. 3 girat, 176 x 125 mm"
#: ../src/common/paper.cpp:193
-#, fuzzy
msgid "PRC Envelope #4 110 x 208 mm"
-msgstr "Sobre DL, 110 x 220 mm"
+msgstr "Sobre PRC núm. 4, 110 x 208 mm"
#: ../src/common/paper.cpp:206
-#, fuzzy
msgid "PRC Envelope #4 Rotated 208 x 110 mm"
-msgstr "C6 Sobre, 114 x 162 mm"
+msgstr "Sobre PRC núm. 4 girat, 208 x 110 mm"
#: ../src/common/paper.cpp:194
-#, fuzzy
msgid "PRC Envelope #5 110 x 220 mm"
-msgstr "Sobre DL, 110 x 220 mm"
+msgstr "Sobre PRC núm. 5, 110 x 220 mm"
#: ../src/common/paper.cpp:207
-#, fuzzy
msgid "PRC Envelope #5 Rotated 220 x 110 mm"
-msgstr "C4 Sobre, 229 x 324 mm"
+msgstr "Sobre PRC núm. 5 girat, 220 x 110 mm"
#: ../src/common/paper.cpp:195
-#, fuzzy
msgid "PRC Envelope #6 120 x 230 mm"
-msgstr "C5 Sobre, 162 x 229 mm"
+msgstr "Sobre PRC núm. 6, 120 x 230 mm"
#: ../src/common/paper.cpp:208
-#, fuzzy
msgid "PRC Envelope #6 Rotated 230 x 120 mm"
-msgstr "C5 Sobre, 162 x 229 mm"
+msgstr "Sobre PRC núm. 6 girat, 230 x 120 mm"
#: ../src/common/paper.cpp:196
-#, fuzzy
msgid "PRC Envelope #7 160 x 230 mm"
-msgstr "B5 Sobre, 176 x 250 mm"
+msgstr "Sobre PRC núm. 7, 160 x 230 mm"
#: ../src/common/paper.cpp:209
-#, fuzzy
msgid "PRC Envelope #7 Rotated 230 x 160 mm"
-msgstr "C6 Sobre, 114 x 162 mm"
+msgstr "Sobre PRC núm. 7 girat, 230 x 160 mm"
#: ../src/common/paper.cpp:197
-#, fuzzy
msgid "PRC Envelope #8 120 x 309 mm"
-msgstr "C5 Sobre, 162 x 229 mm"
+msgstr "Sobre PRC núm. 8, 120 x 309 mm"
#: ../src/common/paper.cpp:210
-#, fuzzy
msgid "PRC Envelope #8 Rotated 309 x 120 mm"
-msgstr "C4 Sobre, 229 x 324 mm"
+msgstr "Sobre PRC núm. 8 girat, 309 x 120 mm"
#: ../src/common/paper.cpp:198
-#, fuzzy
msgid "PRC Envelope #9 229 x 324 mm"
-msgstr "C4 Sobre, 229 x 324 mm"
+msgstr "Sobre PRC núm. 9, 229 x 324 mm"
#: ../src/common/paper.cpp:211
-#, fuzzy
msgid "PRC Envelope #9 Rotated 324 x 229 mm"
-msgstr "C5 Sobre, 162 x 229 mm"
+msgstr "Sobre PRC núm. 9 girat, 324 x 229 mm"
#: ../src/richtext/richtextmarginspage.cpp:285
-#, fuzzy
msgid "Padding"
-msgstr "s'està llegint"
+msgstr "Separació"
#: ../src/common/prntbase.cpp:2074
#, c-format
@@ -5840,9 +5592,8 @@ msgstr "PÃ gina %d de %d"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:58
-#, fuzzy
msgid "Page Down"
-msgstr "PÃ gina %d"
+msgstr "Av PÃ g"
#: ../src/gtk/print.cpp:826
msgid "Page Setup"
@@ -5850,26 +5601,22 @@ msgstr "Configuració de la pà gina"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:57
-#, fuzzy
msgid "Page Up"
-msgstr "PÃ gina %d"
+msgstr "Re PÃ g"
#: ../src/generic/prntdlgg.cpp:828 ../src/common/prntbase.cpp:484
-#, fuzzy
msgid "Page setup"
msgstr "Configuració de la pà gina"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:58
-#, fuzzy
msgid "PageDown"
-msgstr "Avall"
+msgstr "Av PÃ g"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:57
-#, fuzzy
msgid "PageUp"
-msgstr "PÃ gines"
+msgstr "Re PÃ g"
#: ../src/generic/prntdlgg.cpp:216
msgid "Pages"
@@ -5878,7 +5625,7 @@ msgstr "PÃ gines"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1765
msgid "Paint Brush"
-msgstr ""
+msgstr "Pinzell"
#: ../src/generic/prntdlgg.cpp:602 ../src/generic/prntdlgg.cpp:801
#: ../src/generic/prntdlgg.cpp:842 ../src/generic/prntdlgg.cpp:855
@@ -5888,41 +5635,39 @@ msgstr "Mida del paper"
#: ../src/richtext/richtextstyles.cpp:1062
msgid "Paragraph styles"
-msgstr ""
+msgstr "Estils de parà graf"
#: ../src/common/xtistrm.cpp:465
msgid "Passing a already registered object to SetObject"
-msgstr ""
+msgstr "S'ha passat un objecte ja registrat a SetObject"
#: ../src/common/xtistrm.cpp:476
msgid "Passing an unknown object to GetObject"
-msgstr ""
+msgstr "S'ha passat un objecte desconegut a GetObject"
#: ../src/richtext/richtextctrl.cpp:3513 ../src/common/stockitem.cpp:180
#: ../src/stc/stc_i18n.cpp:19
-#, fuzzy
msgid "Paste"
-msgstr "&Enganxa"
+msgstr "Enganxa"
#: ../src/common/stockitem.cpp:262
-#, fuzzy
msgid "Paste selection"
-msgstr "Seccions"
+msgstr "Enganxa la selecció"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:74
msgid "Pause"
-msgstr ""
+msgstr "Pausa"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1766
msgid "Pencil"
-msgstr ""
+msgstr "Llapis"
#: ../src/richtext/richtextliststylepage.cpp:222
#: ../src/richtext/richtextbulletspage.cpp:159
msgid "Peri&od"
-msgstr ""
+msgstr "PerÃ&ode"
#: ../src/generic/filectrlg.cpp:430
msgid "Permissions"
@@ -5931,74 +5676,67 @@ msgstr "Permisos"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:60
msgid "PgDn"
-msgstr ""
+msgstr "AvPÃ g"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:59
msgid "PgUp"
-msgstr ""
+msgstr "RePÃ g"
#: ../src/richtext/richtextbuffer.cpp:12868
-#, fuzzy
msgid "Picture Properties"
-msgstr "&Previ"
+msgstr "Propietats de la imatge"
#: ../include/wx/unix/pipe.h:47
msgid "Pipe creation failed"
-msgstr "No s'ha pogut crear la canonada."
+msgstr "No s'ha pogut crear la canonada"
#: ../src/gtk1/fontdlg.cpp:74
msgid "Please choose a valid font."
-msgstr "Trieu una font và lida"
+msgstr "Trieu un tipus de lletra và lid."
#: ../src/generic/filedlgg.cpp:357 ../src/gtk/filedlg.cpp:73
msgid "Please choose an existing file."
msgstr "Trieu un fitxer existent."
#: ../src/html/helpwnd.cpp:800
-#, fuzzy
msgid "Please choose the page to display:"
-msgstr "Trieu un fitxer existent."
+msgstr "Trieu la pà gina que vulgueu mostrar:"
#: ../src/msw/dialup.cpp:764
msgid "Please choose which ISP do you want to connect to"
-msgstr "Trieu quin ISP us voleu connectar"
+msgstr "Trieu a quin proveïdor d'Internet us voleu connectar"
#: ../src/common/headerctrlcmn.cpp:59
msgid "Please select the columns to show and define their order:"
-msgstr ""
+msgstr "Seleccioneu les columnes que es mostraran i definiu-ne l'ordre:"
#: ../src/common/prntbase.cpp:538
-#, fuzzy
msgid "Please wait while printing..."
-msgstr "Espereu mentre simprimeix\n"
+msgstr "Espereu mentre s'imprimeix..."
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1767
-#, fuzzy
msgid "Point Left"
-msgstr "Mida de la font:"
+msgstr "Apunta a l'esquerra"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1768
-#, fuzzy
msgid "Point Right"
-msgstr "mitja nit"
+msgstr "Apunta a la dreta"
#. TRANSLATORS: Label of font point size
#: ../src/propgrid/advprops.cpp:662
-#, fuzzy
msgid "Point Size"
-msgstr "Mida de la font:"
+msgstr "Mida en punts"
#: ../src/generic/prntdlgg.cpp:612 ../src/generic/prntdlgg.cpp:867
msgid "Portrait"
msgstr "Vertical"
#: ../src/richtext/richtextsizepage.cpp:496
-#, fuzzy
msgid "Position"
-msgstr "Pregunta"
+msgstr "Posició"
#: ../src/generic/prntdlgg.cpp:298
msgid "PostScript file"
@@ -6006,15 +5744,15 @@ msgstr "Fitxer PostScript"
#: ../src/common/stockitem.cpp:181
msgid "Preferences"
-msgstr ""
+msgstr "Preferències"
#: ../src/osx/menu_osx.cpp:568
msgid "Preferences..."
-msgstr ""
+msgstr "Preferències..."
#: ../src/common/prntbase.cpp:546
msgid "Preparing"
-msgstr ""
+msgstr "S'està preparant"
#: ../src/generic/fontdlgg.cpp:455 ../src/osx/carbon/fontdlg.cpp:390
#: ../src/html/helpwnd.cpp:1222
@@ -6035,12 +5773,12 @@ msgstr "Imprimeix"
#: ../include/wx/prntbase.h:399 ../src/common/docview.cpp:1268
msgid "Print Preview"
-msgstr "Imprimeix previsualització"
+msgstr "Previsualització de la impressió"
#: ../src/common/prntbase.cpp:2015 ../src/common/prntbase.cpp:2057
#: ../src/common/prntbase.cpp:2065
msgid "Print Preview Failure"
-msgstr "Error en la previsualització d'impressió"
+msgstr "S'ha produït un error en la previsualització de la impressió"
#: ../src/generic/prntdlgg.cpp:224
msgid "Print Range"
@@ -6048,26 +5786,23 @@ msgstr "Rang d'impressió"
#: ../src/generic/prntdlgg.cpp:449
msgid "Print Setup"
-msgstr "Parà metres d'impressió"
+msgstr "Configuració de la impressió"
#: ../src/generic/prntdlgg.cpp:621
msgid "Print in colour"
msgstr "Imprimeix en color"
#: ../src/common/stockitem.cpp:182
-#, fuzzy
msgid "Print previe&w..."
-msgstr "Imprimeix previsualització"
+msgstr "Pre&visualitza la impressió..."
#: ../src/common/docview.cpp:1262
-#, fuzzy
msgid "Print preview creation failed."
-msgstr "No s'ha pogut crear la canonada."
+msgstr "No s'ha pogut crear la previsualització de la impressió."
#: ../src/common/stockitem.cpp:182
-#, fuzzy
msgid "Print preview..."
-msgstr "Imprimeix previsualització"
+msgstr "Previsualització de la impressió..."
#: ../src/generic/prntdlgg.cpp:630
msgid "Print spooling"
@@ -6079,62 +5814,58 @@ msgstr "Imprimeix aquesta pà gina"
#: ../src/generic/prntdlgg.cpp:185
msgid "Print to File"
-msgstr "Imprimeix al fitxer"
+msgstr "Imprimeix a un fitxer"
#: ../src/common/stockitem.cpp:183
-#, fuzzy
msgid "Print..."
msgstr "Imprimeix..."
#: ../src/generic/prntdlgg.cpp:493
-#, fuzzy
msgid "Printer"
-msgstr "Imprimeix"
+msgstr "Impressora"
#: ../src/generic/prntdlgg.cpp:633
msgid "Printer command:"
-msgstr "Ordre d'impressió"
+msgstr "Ordre de la impressora:"
#: ../src/generic/prntdlgg.cpp:180
msgid "Printer options"
-msgstr "Opcions d'impressió"
+msgstr "Opcions de la impressora"
#: ../src/generic/prntdlgg.cpp:645
msgid "Printer options:"
-msgstr "Opcions d'impressió:"
+msgstr "Opcions de la impressora:"
#: ../src/generic/prntdlgg.cpp:916
msgid "Printer..."
-msgstr "Impressió..."
+msgstr "Impressora..."
#: ../src/generic/prntdlgg.cpp:196
-#, fuzzy
msgid "Printer:"
-msgstr "Impressió..."
+msgstr "Impressora:"
#: ../include/wx/richtext/richtextprint.h:163 ../src/common/prntbase.cpp:535
#: ../src/html/htmprint.cpp:277
-#, fuzzy
msgid "Printing"
msgstr "S'està imprimint"
#: ../src/common/prntbase.cpp:612
msgid "Printing "
-msgstr "S'està imprimint"
+msgstr "S'està imprimint "
#: ../src/common/prntbase.cpp:347
msgid "Printing Error"
-msgstr "Error d'impressió"
+msgstr "S'ha produït un error d'impressió"
#: ../src/common/prntbase.cpp:565
-#, fuzzy, c-format
+#, c-format
msgid "Printing page %d"
-msgstr "S'està imprimint la pà gina %d..."
+msgstr "S'està imprimint la pà gina %d"
#: ../src/common/prntbase.cpp:570
-#, fuzzy, c-format
+#, c-format
msgid "Printing page %d of %d"
-msgstr "S'està imprimint la pà gina %d..."
+msgstr "S'està imprimint la pà gina %d de %d"
#: ../src/generic/printps.cpp:201
#, c-format
@@ -6147,39 +5878,37 @@ msgstr "S'està imprimint..."
#: ../include/wx/richtext/richtextprint.h:109 ../include/wx/prntbase.h:267
#: ../src/common/docview.cpp:2132
-#, fuzzy
msgid "Printout"
-msgstr "Imprimeix"
+msgstr "Impressió"
#: ../src/common/debugrpt.cpp:560
#, c-format
msgid ""
"Processing debug report has failed, leaving the files in \"%s\" directory."
msgstr ""
+"No s'ha pogut processar l'informe de depuració, es deixaran els fitxers al "
+"directori \"%s\"."
#: ../src/common/prntbase.cpp:545
msgid "Progress:"
-msgstr ""
+msgstr "Progrés:"
#: ../src/common/stockitem.cpp:184
-#, fuzzy
msgid "Properties"
-msgstr "&Previ"
+msgstr "Propietats"
#: ../src/propgrid/manager.cpp:237
-#, fuzzy
msgid "Property"
-msgstr "&Previ"
+msgstr "Propietat"
#. TRANSLATORS: Caption of message box displaying any property error
#: ../src/propgrid/propgrid.cpp:3185 ../src/propgrid/propgrid.cpp:3318
-#, fuzzy
msgid "Property Error"
-msgstr "Error d'impressió"
+msgstr "Error de propietat"
#: ../src/propgrid/advprops.cpp:1597
msgid "Purple"
-msgstr ""
+msgstr "Porpra"
#: ../src/common/paper.cpp:112
msgid "Quarto, 215 x 275 mm"
@@ -6187,79 +5916,73 @@ msgstr "Quarto, 215 x 275 mm"
#: ../src/generic/logg.cpp:1016
msgid "Question"
-msgstr "Pregunta"
+msgstr "Qüestió"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1769
-#, fuzzy
msgid "Question Arrow"
-msgstr "Pregunta"
+msgstr "Fletxa amb interrogació"
#: ../src/common/stockitem.cpp:156
msgid "Quit"
-msgstr ""
+msgstr "Surt"
#: ../src/osx/menu_osx.cpp:585
-#, fuzzy, c-format
+#, c-format
msgid "Quit %s"
-msgstr "No"
+msgstr "Surt de %s"
#: ../src/common/stockitem.cpp:263
-#, fuzzy
msgid "Quit this program"
-msgstr "Imprimeix aquesta pà gina"
+msgstr "Surt d'aquest programa"
#: ../src/common/accelcmn.cpp:338
-#, fuzzy
msgid "RawCtrl+"
-msgstr "control"
+msgstr "RawCtrl+"
#: ../src/common/ffile.cpp:109 ../src/common/ffile.cpp:133
#, c-format
msgid "Read error on file '%s'"
-msgstr "Llegeix error en el fitxer '%s'"
+msgstr "S'ha produït un error de lectura al fitxer '%s'"
#: ../src/common/secretstore.cpp:199
-#, fuzzy, c-format
+#, c-format
msgid "Reading password for \"%s/%s\" failed: %s."
-msgstr "L'execució de l'ordre '%s' ha fallit."
+msgstr "No s'ha pogut llegir la contrasenya de \"%s/%s\": %s."
#: ../src/common/prntbase.cpp:272
-#, fuzzy
msgid "Ready"
-msgstr "&Refés"
+msgstr "Llest"
#: ../src/propgrid/advprops.cpp:1605
-#, fuzzy
msgid "Red"
-msgstr "&Refés"
+msgstr "Vermell"
#: ../src/generic/colrdlgg.cpp:339
msgid "Red:"
-msgstr ""
+msgstr "Vermell:"
#: ../src/common/stockitem.cpp:185 ../src/stc/stc_i18n.cpp:16
-#, fuzzy
msgid "Redo"
-msgstr "&Refés"
+msgstr "Refés"
#: ../src/common/stockitem.cpp:264
msgid "Redo last action"
-msgstr ""
+msgstr "Refés la darrera acció"
#: ../src/common/stockitem.cpp:186
msgid "Refresh"
-msgstr ""
+msgstr "Refresca"
#: ../src/msw/registry.cpp:626
#, c-format
msgid "Registry key '%s' already exists."
-msgstr "La clau de registre '%s' ja existeix."
+msgstr "La clau del registre '%s' ja existeix."
#: ../src/msw/registry.cpp:595
#, c-format
msgid "Registry key '%s' does not exist, cannot rename it."
-msgstr "La clau de registre '%s' no existeix, no la podeu reanomenar."
+msgstr "La clau del registre '%s' no existeix, no en podeu canviar el nom."
#: ../src/msw/registry.cpp:727
#, c-format
@@ -6268,119 +5991,116 @@ msgid ""
"deleting it will leave your system in unusable state:\n"
"operation aborted."
msgstr ""
-"La clau de registre '%s' és necessitada per operacions normals de sistema,\n"
-"eliminant-los deixarà el vostre sistema en un estat inservible:\n"
-"operació avortada."
+"La clau del registre '%s' és necessà ria per al funcionament normal del "
+"sistema,\n"
+"si la suprimiu, deixareu el sistema en un estat inservible:\n"
+"s'ha avortat l'operació."
#: ../src/msw/registry.cpp:954
#, c-format
msgid "Registry value \"%s\" is not binary (but of type %s)"
-msgstr ""
+msgstr "El valor del registre \"%s\" no és binari (sinó del tipus %s)"
#: ../src/msw/registry.cpp:917
#, c-format
msgid "Registry value \"%s\" is not numeric (but of type %s)"
-msgstr ""
+msgstr "El valor del registre \"%s\" no és numèric (sinó del tipus %s)"
#: ../src/msw/registry.cpp:1003
#, c-format
msgid "Registry value \"%s\" is not text (but of type %s)"
-msgstr ""
+msgstr "El valor del registre \"%s\" no és de text (sinó del tipus %s)"
#: ../src/msw/registry.cpp:521
#, c-format
msgid "Registry value '%s' already exists."
-msgstr "El valor '%s' de registre encara existeix."
+msgstr "El valor del registre '%s' ja existeix."
#: ../src/richtext/richtextfontpage.cpp:350
#: ../src/richtext/richtextfontpage.cpp:354
msgid "Regular"
-msgstr ""
+msgstr "Normal"
#: ../src/richtext/richtextsizepage.cpp:519
-#, fuzzy
msgid "Relative"
-msgstr "Decoratiu"
+msgstr "Relatiu"
#: ../src/generic/helpext.cpp:458
msgid "Relevant entries:"
msgstr "Entrades rellevants:"
#: ../include/wx/generic/progdlgg.h:86
-#, fuzzy
msgid "Remaining time:"
-msgstr "Temps restant :"
+msgstr "Temps restant:"
#: ../src/common/stockitem.cpp:187
msgid "Remove"
-msgstr ""
+msgstr "Suprimeix"
#: ../src/richtext/richtextctrl.cpp:1562
msgid "Remove Bullet"
-msgstr ""
+msgstr "Suprimeix el pic"
#: ../src/html/helpwnd.cpp:433
msgid "Remove current page from bookmarks"
-msgstr "Extreu la pà gina actual dels preferits"
+msgstr "Elimina la pà gina actual dels preferits"
#: ../src/common/rendcmn.cpp:194
#, c-format
msgid "Renderer \"%s\" has incompatible version %d.%d and couldn't be loaded."
msgstr ""
+"El renderitzador \"%s\" té la versió incompatible %d.%d i no s'ha pogut "
+"carregar."
#: ../src/richtext/richtextbuffer.cpp:4527
msgid "Renumber List"
-msgstr ""
+msgstr "Torna a numerar la llista"
#: ../src/common/stockitem.cpp:188
-#, fuzzy
msgid "Rep&lace"
msgstr "&Substitueix"
#: ../src/richtext/richtextctrl.cpp:3673 ../src/common/stockitem.cpp:188
-#, fuzzy
msgid "Replace"
-msgstr "&Substitueix"
+msgstr "Substitueix"
#: ../src/generic/fdrepdlg.cpp:182
msgid "Replace &all"
msgstr "Substitueix-ho &tot"
#: ../src/common/stockitem.cpp:261
-#, fuzzy
msgid "Replace selection"
-msgstr "Substitueix-ho &tot"
+msgstr "Substitueix la selecció"
#: ../src/generic/fdrepdlg.cpp:124
msgid "Replace with:"
-msgstr "Substitueix amb:"
+msgstr "Substitueix per:"
#: ../src/common/valtext.cpp:163
msgid "Required information entry is empty."
-msgstr ""
+msgstr "L'entrada d'informació necessà ria és buida."
#: ../src/common/translation.cpp:1975
-#, fuzzy, c-format
+#, c-format
msgid "Resource '%s' is not a valid message catalog."
-msgstr "'%s' no és un missatge và lid de catà leg"
+msgstr "El recurs '%s' no és un catà leg de missatges và lid."
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:56
msgid "Return"
-msgstr ""
+msgstr "Retorn"
#: ../src/common/stockitem.cpp:189
msgid "Revert to Saved"
-msgstr ""
+msgstr "Reverteix a la versió desada"
#: ../src/richtext/richtextborderspage.cpp:616
-#, fuzzy
msgid "Ridge"
-msgstr "Clar"
+msgstr "Arruga"
#: ../src/richtext/richtextfontpage.cpp:313
msgid "Rig&ht-to-left"
-msgstr ""
+msgstr "&De dreta a esquerra"
#. TRANSLATORS: Keystroke for manipulating a tree control
#. TRANSLATORS: Name of keyboard key
@@ -6388,20 +6108,18 @@ msgstr ""
#: ../src/richtext/richtextliststylepage.cpp:251
#: ../src/richtext/richtextbulletspage.cpp:188
#: ../src/richtext/richtextsizepage.cpp:250 ../src/common/accelcmn.cpp:62
-#, fuzzy
msgid "Right"
-msgstr "Clar"
+msgstr "Dreta"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1754
-#, fuzzy
msgid "Right Arrow"
-msgstr "Clar"
+msgstr "Fletxa a la dreta"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1770
msgid "Right Button"
-msgstr ""
+msgstr "Botó dret"
#: ../src/generic/prntdlgg.cpp:892
msgid "Right margin (mm):"
@@ -6412,7 +6130,7 @@ msgstr "Marge dret (mm):"
#: ../src/richtext/richtextliststylepage.cpp:337
#: ../src/richtext/richtextliststylepage.cpp:339
msgid "Right-align text."
-msgstr ""
+msgstr "Alinea el text a la dreta."
#: ../src/generic/fontdlgg.cpp:322
msgid "Roman"
@@ -6421,58 +6139,54 @@ msgstr "Roman"
#: ../src/generic/datavgen.cpp:5916
#, c-format
msgid "Row %i"
-msgstr ""
+msgstr "Fila %i"
#: ../src/richtext/richtextliststylepage.cpp:299
#: ../src/richtext/richtextbulletspage.cpp:239
msgid "S&tandard bullet name:"
-msgstr ""
+msgstr "Nom del pic es&tà ndard:"
#: ../src/common/accelcmn.cpp:268 ../src/common/accelcmn.cpp:350
msgid "SPECIAL"
-msgstr ""
+msgstr "ESPECIAL"
#: ../src/common/stockitem.cpp:190 ../src/common/sizer.cpp:2797
-#, fuzzy
msgid "Save"
-msgstr "&Desa..."
+msgstr "Desa"
#: ../src/common/fldlgcmn.cpp:342
#, c-format
msgid "Save %s file"
-msgstr "Desa fitxer %s"
+msgstr "Desa el fitxer %s"
#: ../src/generic/logg.cpp:512
-#, fuzzy
msgid "Save &As..."
-msgstr "&Desa..."
+msgstr "&Anomena i desa..."
#: ../src/common/docview.cpp:366
msgid "Save As"
-msgstr "Anomena i Desa"
+msgstr "Anomena i desa"
#: ../src/common/stockitem.cpp:191
-#, fuzzy
msgid "Save as"
-msgstr "Anomena i Desa"
+msgstr "Anomena i desa"
#: ../src/common/stockitem.cpp:267
-#, fuzzy
msgid "Save current document"
-msgstr "Seleccioneu una vista del document"
+msgstr "Desa el document actual"
#: ../src/common/stockitem.cpp:268
msgid "Save current document with a different filename"
-msgstr ""
+msgstr "Desa el document actual amb un nom de fitxer diferent"
#: ../src/generic/logg.cpp:512
msgid "Save log contents to file"
-msgstr "Desa els continguts del registre al fitxer"
+msgstr "Desa el contingut del registre al fitxer"
#: ../src/common/secretstore.cpp:179
-#, fuzzy, c-format
+#, c-format
msgid "Saving password for \"%s/%s\" failed: %s."
-msgstr "L'execució de l'ordre '%s' ha fallit."
+msgstr "No s'ha pogut desar la contrasenya de \"%s/%s\": %s."
#: ../src/generic/fontdlgg.cpp:325
msgid "Script"
@@ -6481,17 +6195,17 @@ msgstr "Script"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:87
msgid "Scroll Lock"
-msgstr ""
+msgstr "Bloq Despl"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:87
msgid "Scroll_lock"
-msgstr ""
+msgstr "Bloq Despl"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:890
msgid "Scrollbar"
-msgstr ""
+msgstr "Scrollbar"
#: ../src/generic/srchctlg.cpp:56 ../src/html/helpwnd.cpp:535
#: ../src/html/helpwnd.cpp:550
@@ -6499,17 +6213,16 @@ msgid "Search"
msgstr "Cerca"
#: ../src/html/helpwnd.cpp:537
-#, fuzzy
msgid ""
"Search contents of help book(s) for all occurrences of the text you typed "
"above"
msgstr ""
-"Cerqueu continguts en llibre(s) d'ajuda per totes les ocurrències del text "
-"escrit"
+"Cerca totes les coincidències del text que heu escrit a dalt al contingut "
+"dels llibres d'ajuda"
#: ../src/generic/fdrepdlg.cpp:160
msgid "Search direction"
-msgstr "Direcció de cerca"
+msgstr "Direcció de la cerca"
#: ../src/generic/fdrepdlg.cpp:112
msgid "Search for:"
@@ -6530,28 +6243,28 @@ msgstr "Seccions"
#: ../src/common/ffile.cpp:238
#, c-format
msgid "Seek error on file '%s'"
-msgstr "Error de recerca en fitxer '%s'"
+msgstr "S'ha produït un error de cerca al fitxer '%s'"
#: ../src/common/ffile.cpp:228
#, c-format
msgid "Seek error on file '%s' (large files not supported by stdio)"
msgstr ""
+"S'ha produït un error de cerca al fitxer '%s' (els fitxers grossos no estan "
+"suportats per stdio)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:76
-#, fuzzy
msgid "Select"
-msgstr "Seccions"
+msgstr "Selecciona"
#: ../src/richtext/richtextctrl.cpp:337 ../src/osx/textctrl_osx.cpp:581
#: ../src/common/stockitem.cpp:192 ../src/msw/textctrl.cpp:2512
msgid "Select &All"
-msgstr "Selecciona-ho &tot"
+msgstr "Seleccion&a-ho tot"
#: ../src/common/stockitem.cpp:192 ../src/stc/stc_i18n.cpp:21
-#, fuzzy
msgid "Select All"
-msgstr "Selecciona-ho &tot"
+msgstr "Selecciona-ho tot"
#: ../src/common/docview.cpp:1895
msgid "Select a document template"
@@ -6559,55 +6272,53 @@ msgstr "Seleccioneu una plantilla de document"
#: ../src/common/docview.cpp:1969
msgid "Select a document view"
-msgstr "Seleccioneu una vista del document"
+msgstr "Seleccioneu una visualització del document"
#: ../src/richtext/richtextfontpage.cpp:226
#: ../src/richtext/richtextfontpage.cpp:228
msgid "Select regular or bold."
-msgstr ""
+msgstr "Selecciona normal o negreta."
#: ../src/richtext/richtextfontpage.cpp:213
#: ../src/richtext/richtextfontpage.cpp:215
msgid "Select regular or italic style."
-msgstr ""
+msgstr "Selecciona l'estil normal o cursiva."
#: ../src/richtext/richtextfontpage.cpp:239
#: ../src/richtext/richtextfontpage.cpp:241
msgid "Select underlining or no underlining."
-msgstr ""
+msgstr "Selecciona subratllat o sense subratllat."
#: ../src/motif/filedlg.cpp:220
-#, fuzzy
msgid "Selection"
-msgstr "Seccions"
+msgstr "Selecció"
#: ../src/richtext/richtextliststylepage.cpp:187
#: ../src/richtext/richtextliststylepage.cpp:189
msgid "Selects the list level to edit."
-msgstr ""
+msgstr "Selecciona el nivell de la llista a editar."
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:82
msgid "Separator"
-msgstr ""
+msgstr "Separador"
#: ../src/common/cmdline.cpp:1083
#, c-format
msgid "Separator expected after the option '%s'."
-msgstr "S'espera un separador després de l'opció '%s'."
+msgstr "S'esperava un separador després de l'opció '%s'."
#: ../src/osx/menu_osx.cpp:572
msgid "Services"
-msgstr ""
+msgstr "Serveis"
#: ../src/richtext/richtextbuffer.cpp:11217
-#, fuzzy
msgid "Set Cell Style"
-msgstr "&Elimina"
+msgstr "Defineix l'estil de la cel·la"
#: ../include/wx/xtiprop.h:175
msgid "SetProperty called w/o valid setter"
-msgstr ""
+msgstr "S'ha cridat SetProperty sense un setter và lid"
#: ../src/generic/prntdlgg.cpp:188
msgid "Setup..."
@@ -6616,45 +6327,40 @@ msgstr "Configura..."
#: ../src/msw/dialup.cpp:544
msgid "Several active dialup connections found, choosing one randomly."
msgstr ""
-"S'han triat diverses connexions de marcatge directe, triant-ne una "
-"aleatòriament."
+"S'han trobat diverses connexions actives de marcatge telefònic, se'n triarà "
+"una aleatòriament."
#: ../src/richtext/richtextbackgroundpage.cpp:271
msgid "Sh&adow spread:"
-msgstr ""
+msgstr "Difusió de l'ombr&a:"
#: ../src/richtext/richtextbackgroundpage.cpp:179
msgid "Shadow"
-msgstr ""
+msgstr "Ombra"
#: ../src/richtext/richtextbackgroundpage.cpp:258
-#, fuzzy
msgid "Shadow c&olour:"
-msgstr "Trieu la font"
+msgstr "C&olor de l'ombra:"
#: ../src/common/accelcmn.cpp:335
-#, fuzzy
msgid "Shift+"
-msgstr "Shift"
+msgstr "Maj+"
#: ../src/generic/dirdlgg.cpp:147
-#, fuzzy
msgid "Show &hidden directories"
-msgstr "Mostra directoris ocults."
+msgstr "&Mostra els directoris ocults"
#: ../src/generic/filectrlg.cpp:983
-#, fuzzy
msgid "Show &hidden files"
-msgstr "Mostra fitgers ocults."
+msgstr "&Mostra els fitxers ocults"
#: ../src/osx/menu_osx.cpp:580
-#, fuzzy
msgid "Show All"
msgstr "Mostra-ho tot"
#: ../src/common/stockitem.cpp:257
msgid "Show about dialog"
-msgstr ""
+msgstr "Mostra el dià leg Quant a"
#: ../src/html/helpwnd.cpp:492
msgid "Show all"
@@ -6662,7 +6368,7 @@ msgstr "Mostra-ho tot"
#: ../src/html/helpwnd.cpp:503
msgid "Show all items in index"
-msgstr "Mostra tots els elements en el Ãndex"
+msgstr "Mostra tots els elements a l'Ãndex"
#: ../src/html/helpwnd.cpp:658
msgid "Show/hide navigation panel"
@@ -6671,45 +6377,45 @@ msgstr "Mostra/amaga el plafó de navegació"
#: ../src/richtext/richtextsymboldlg.cpp:421
#: ../src/richtext/richtextsymboldlg.cpp:423
msgid "Shows a Unicode subset."
-msgstr ""
+msgstr "Mostra un subconjunt d'Unicode."
#: ../src/richtext/richtextliststylepage.cpp:472
#: ../src/richtext/richtextliststylepage.cpp:474
#: ../src/richtext/richtextbulletspage.cpp:263
#: ../src/richtext/richtextbulletspage.cpp:265
msgid "Shows a preview of the bullet settings."
-msgstr ""
+msgstr "Mostra una previsualització de la configuració dels pics."
#: ../src/richtext/richtextfontpage.cpp:330
#: ../src/richtext/richtextfontpage.cpp:332
msgid "Shows a preview of the font settings."
-msgstr ""
+msgstr "Mostra una previsualització de la configuració del tipus de lletra."
#: ../src/osx/carbon/fontdlg.cpp:394 ../src/osx/carbon/fontdlg.cpp:396
msgid "Shows a preview of the font."
-msgstr ""
+msgstr "Mostra una previsualització del tipus de lletra."
#: ../src/richtext/richtextindentspage.cpp:303
#: ../src/richtext/richtextindentspage.cpp:305
msgid "Shows a preview of the paragraph settings."
-msgstr ""
+msgstr "Mostra una previsualització de la configuració del parà graf."
#: ../src/generic/fontdlgg.cpp:460 ../src/generic/fontdlgg.cpp:462
msgid "Shows the font preview."
-msgstr ""
+msgstr "Mostra la previsualització del tipus de lletra."
#: ../src/propgrid/advprops.cpp:1607
msgid "Silver"
-msgstr ""
+msgstr "Argent"
#: ../src/univ/themes/mono.cpp:516
msgid "Simple monochrome theme"
-msgstr ""
+msgstr "Tema monocrom simple"
#: ../src/richtext/richtextindentspage.cpp:275
#: ../src/richtext/richtextliststylepage.cpp:449
msgid "Single"
-msgstr ""
+msgstr "Simple"
#: ../src/generic/filectrlg.cpp:425 ../src/richtext/richtextformatdlg.cpp:369
#: ../src/richtext/richtextsizepage.cpp:299
@@ -6717,57 +6423,54 @@ msgid "Size"
msgstr "Mida"
#: ../src/osx/carbon/fontdlg.cpp:339
-#, fuzzy
msgid "Size:"
-msgstr "Mida"
+msgstr "Mida:"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1775
msgid "Sizing"
-msgstr ""
+msgstr "Redimensionament"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1772
msgid "Sizing N-S"
-msgstr ""
+msgstr "Redimensionament N-S"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1771
msgid "Sizing NE-SW"
-msgstr ""
+msgstr "Redimensionament NE-SO"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1773
msgid "Sizing NW-SE"
-msgstr ""
+msgstr "Redimensionament NO-SE"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1774
msgid "Sizing W-E"
-msgstr ""
+msgstr "Redimensionament O-E"
#: ../src/msw/progdlg.cpp:801
-#, fuzzy
msgid "Skip"
-msgstr "Script"
+msgstr "Omet"
#: ../src/generic/fontdlgg.cpp:330
msgid "Slant"
-msgstr "Inclina"
+msgstr "Inclinat"
#: ../src/richtext/richtextfontpage.cpp:289
msgid "Small C&apitals"
-msgstr ""
+msgstr "Vers&aleta"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:79
msgid "Snapshot"
-msgstr ""
+msgstr "Impr Pant"
#: ../src/richtext/richtextborderspage.cpp:611
-#, fuzzy
msgid "Solid"
-msgstr "Negreta"
+msgstr "Sòlid"
#: ../src/common/docview.cpp:1791
msgid "Sorry, could not open this file."
@@ -6775,7 +6478,7 @@ msgstr "No s'ha pogut obrir aquest fitxer."
#: ../src/common/prntbase.cpp:2057 ../src/common/prntbase.cpp:2065
msgid "Sorry, not enough memory to create a preview."
-msgstr "No hi ha prou memòria com per crear una previsualització"
+msgstr "No hi ha prou memòria per a crear una previsualització."
#: ../src/richtext/richtextstyledlg.cpp:611
#: ../src/richtext/richtextstyledlg.cpp:659
@@ -6783,46 +6486,43 @@ msgstr "No hi ha prou memòria com per crear una previsualització"
#: ../src/richtext/richtextstyledlg.cpp:901
#: ../src/richtext/richtextstyledlg.cpp:939
msgid "Sorry, that name is taken. Please choose another."
-msgstr ""
+msgstr "Aquest nom ja s'utilitza. Trieu-ne un altre."
#: ../src/common/docview.cpp:1814
-#, fuzzy
msgid "Sorry, the format for this file is unknown."
-msgstr "No s'ha pogut obrir aquest fitxer."
+msgstr "El format d'aquest fitxer és desconegut."
#: ../src/unix/sound.cpp:492
msgid "Sound data are in unsupported format."
-msgstr ""
+msgstr "Les dades del so tenen un format no suportat."
#: ../src/unix/sound.cpp:477
#, c-format
msgid "Sound file '%s' is in unsupported format."
-msgstr ""
+msgstr "El fitxer de so '%s' té un format no suportat."
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:67
-#, fuzzy
msgid "Space"
-msgstr "S'està cercant..."
+msgstr "Espai"
#: ../src/richtext/richtextliststylepage.cpp:467
-#, fuzzy
msgid "Spacing"
-msgstr "S'està cercant..."
+msgstr "Espaiat"
#: ../src/common/stockitem.cpp:197
msgid "Spell Check"
-msgstr ""
+msgstr "Comprovació ortogrà fica"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1776
msgid "Spraycan"
-msgstr ""
+msgstr "Aerosol"
#: ../src/richtext/richtextliststylepage.cpp:490
#: ../src/richtext/richtextbulletspage.cpp:282
msgid "Standard"
-msgstr ""
+msgstr "Està ndard"
#: ../src/common/paper.cpp:104
msgid "Statement, 5 1/2 x 8 1/2 in"
@@ -6830,69 +6530,63 @@ msgstr "Statement, 5 1/2 x 8 1/2 polz."
#: ../src/richtext/richtextsizepage.cpp:518
#: ../src/richtext/richtextsizepage.cpp:523
-#, fuzzy
msgid "Static"
-msgstr "Estat:"
+msgstr "Està tic"
#: ../src/generic/prntdlgg.cpp:204
-#, fuzzy
msgid "Status:"
msgstr "Estat:"
#: ../src/common/stockitem.cpp:198
-#, fuzzy
msgid "Stop"
-msgstr "Configuració"
+msgstr "Atura"
#: ../src/common/stockitem.cpp:199
msgid "Strikethrough"
-msgstr ""
+msgstr "Ratllat"
#: ../src/common/colourcmn.cpp:45
-#, fuzzy, c-format
+#, c-format
msgid "String To Colour : Incorrect colour specification : %s"
-msgstr ""
-"recurs XRC: Color d'especificació incorrecte '%s' per a la propietat '%s'."
+msgstr "Cadena a color: Especificació del color incorrecta: %s"
#. TRANSLATORS: Label of font style
#: ../src/richtext/richtextformatdlg.cpp:339 ../src/propgrid/advprops.cpp:680
msgid "Style"
-msgstr ""
+msgstr "Estil"
#: ../include/wx/richtext/richtextstyledlg.h:46
msgid "Style Organiser"
-msgstr ""
+msgstr "Organitzador d'estils"
#: ../src/osx/carbon/fontdlg.cpp:348
msgid "Style:"
-msgstr ""
+msgstr "Estil:"
#: ../src/richtext/richtextfontpage.cpp:303
-#, fuzzy
msgid "Subscrip&t"
-msgstr "Script"
+msgstr "SubÃn&dex"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:83
msgid "Subtract"
-msgstr ""
+msgstr "Resta"
#: ../src/richtext/richtextfontpage.cpp:296
-#, fuzzy
msgid "Supe&rscript"
-msgstr "Script"
+msgstr "Supe&rÃndex"
#: ../src/common/paper.cpp:150
msgid "SuperA/SuperA/A4 227 x 356 mm"
-msgstr ""
+msgstr "SuperA/SuperA/A4, 227 x 356 mm"
#: ../src/common/paper.cpp:151
msgid "SuperB/SuperB/A3 305 x 487 mm"
-msgstr ""
+msgstr "SuperB/SuperB/A3, 305 x 487 mm"
#: ../src/richtext/richtextfontpage.cpp:320
msgid "Suppress hyphe&nation"
-msgstr ""
+msgstr "&Suprimeix la divisió de paraules"
#: ../src/generic/fontdlgg.cpp:326
msgid "Swiss"
@@ -6901,70 +6595,66 @@ msgstr "SuÃs"
#: ../src/richtext/richtextliststylepage.cpp:488
#: ../src/richtext/richtextbulletspage.cpp:280
msgid "Symbol"
-msgstr ""
+msgstr "SÃmbol"
#: ../src/richtext/richtextliststylepage.cpp:288
#: ../src/richtext/richtextbulletspage.cpp:227
-#, fuzzy
msgid "Symbol &font:"
-msgstr "Font normal"
+msgstr "&Tipus de lletra per a sÃmbols:"
#: ../include/wx/richtext/richtextsymboldlg.h:47
-#, fuzzy
msgid "Symbols"
-msgstr "Font normal"
+msgstr "SÃmbols"
#: ../src/common/imagtiff.cpp:369 ../src/common/imagtiff.cpp:382
#: ../src/common/imagtiff.cpp:741
msgid "TIFF: Couldn't allocate memory."
-msgstr "TIFF: No es pot localitzar la memòria"
+msgstr "TIFF: No s'ha pogut assignar la memòria."
#: ../src/common/imagtiff.cpp:301
msgid "TIFF: Error loading image."
-msgstr "TIFF: Error en carregar la imatge."
+msgstr "TIFF: S'ha produït un error en carregar la imatge."
#: ../src/common/imagtiff.cpp:468
msgid "TIFF: Error reading image."
-msgstr "TIFF: Error en llegir la imatge."
+msgstr "TIFF: S'ha produït un error en llegir la imatge."
#: ../src/common/imagtiff.cpp:608
msgid "TIFF: Error saving image."
-msgstr "TIFF: Error en desar la imatge."
+msgstr "TIFF: S'ha produït un error en desar la imatge."
#: ../src/common/imagtiff.cpp:846
msgid "TIFF: Error writing image."
-msgstr "TIFF: Error en escriure la imatge."
+msgstr "TIFF: S'ha produït un error en escriure la imatge."
#: ../src/common/imagtiff.cpp:355
msgid "TIFF: Image size is abnormally big."
-msgstr ""
+msgstr "TIFF: La mida de la imatge és anormalment gran."
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:68
msgid "Tab"
-msgstr ""
+msgstr "Tab"
#: ../src/richtext/richtextbuffer.cpp:11498
-#, fuzzy
msgid "Table Properties"
-msgstr "&Previ"
+msgstr "Propietats de la taula"
#: ../src/common/paper.cpp:145
-#, fuzzy
msgid "Tabloid Extra 11.69 x 18 in"
-msgstr "Tabloid, 11 x 17 polz"
+msgstr "Tabloide extra, 11,69 x 18 polz."
#: ../src/common/paper.cpp:102
msgid "Tabloid, 11 x 17 in"
-msgstr "Tabloid, 11 x 17 polz"
+msgstr "Tabloide, 11 x 17 polz."
#: ../src/richtext/richtextformatdlg.cpp:354
msgid "Tabs"
-msgstr ""
+msgstr "Tabulacions"
#: ../src/propgrid/advprops.cpp:1598
msgid "Teal"
-msgstr ""
+msgstr "Xarxet"
#: ../src/generic/fontdlgg.cpp:327
msgid "Teletype"
@@ -6980,29 +6670,28 @@ msgstr "Tailandès (ISO-8859-11)"
#: ../src/common/ftp.cpp:619
msgid "The FTP server doesn't support passive mode."
-msgstr "El servidor FTP no permet l'ús de mode passiu."
+msgstr "El servidor FTP no suporta l'ús del mode passiu."
#: ../src/common/ftp.cpp:605
-#, fuzzy
msgid "The FTP server doesn't support the PORT command."
-msgstr "El servidor FTP no permet l'ús de mode passiu."
+msgstr "El servidor FTP no suporta l'ordre PORT."
#: ../src/richtext/richtextliststylepage.cpp:215
#: ../src/richtext/richtextliststylepage.cpp:217
#: ../src/richtext/richtextbulletspage.cpp:151
#: ../src/richtext/richtextbulletspage.cpp:153
msgid "The available bullet styles."
-msgstr ""
+msgstr "Els estils de pic disponibles."
#: ../src/richtext/richtextstyledlg.cpp:202
#: ../src/richtext/richtextstyledlg.cpp:204
msgid "The available styles."
-msgstr ""
+msgstr "Els estils disponibles."
#: ../src/richtext/richtextbackgroundpage.cpp:168
#: ../src/richtext/richtextbackgroundpage.cpp:170
msgid "The background colour."
-msgstr ""
+msgstr "El color de fons."
#: ../src/richtext/richtextborderspage.cpp:267
#: ../src/richtext/richtextborderspage.cpp:269
@@ -7020,29 +6709,25 @@ msgstr ""
#: ../src/richtext/richtextborderspage.cpp:505
#: ../src/richtext/richtextborderspage.cpp:537
#: ../src/richtext/richtextborderspage.cpp:539
-#, fuzzy
msgid "The border line style."
-msgstr "Mida de la font:"
+msgstr "L'estil de la lÃnia de la vora."
#: ../src/richtext/richtextmarginspage.cpp:267
#: ../src/richtext/richtextmarginspage.cpp:269
-#, fuzzy
msgid "The bottom margin size."
-msgstr "Mida de la font:"
+msgstr "La mida del marge inferior."
#: ../src/richtext/richtextmarginspage.cpp:381
#: ../src/richtext/richtextmarginspage.cpp:383
-#, fuzzy
msgid "The bottom padding size."
-msgstr "Mida de la font:"
+msgstr "La mida de l'espaiat inferior."
#: ../src/richtext/richtextsizepage.cpp:639
#: ../src/richtext/richtextsizepage.cpp:641
#: ../src/richtext/richtextsizepage.cpp:653
#: ../src/richtext/richtextsizepage.cpp:655
-#, fuzzy
msgid "The bottom position."
-msgstr "Mida de la font:"
+msgstr "La posició inferior."
#: ../src/richtext/richtextliststylepage.cpp:254
#: ../src/richtext/richtextliststylepage.cpp:256
@@ -7053,12 +6738,12 @@ msgstr "Mida de la font:"
#: ../src/richtext/richtextbulletspage.cpp:214
#: ../src/richtext/richtextbulletspage.cpp:216
msgid "The bullet character."
-msgstr ""
+msgstr "El carà cter del pic."
#: ../src/richtext/richtextsymboldlg.cpp:443
#: ../src/richtext/richtextsymboldlg.cpp:445
msgid "The character code."
-msgstr ""
+msgstr "El codi del carà cter."
#: ../src/common/fontmap.cpp:203
#, c-format
@@ -7067,19 +6752,19 @@ msgid ""
"another charset to replace it with or choose\n"
"[Cancel] if it cannot be replaced"
msgstr ""
-"El joc de carà cters '%s' és desconegut. Podeu\n"
-"seleccionar un altre conjunt per substituir-lo o escolliu\n"
-"[Anul·la] si no pot ser substituït."
+"El joc de carà cters '%s' és desconegut. Podeu seleccionar\n"
+"un altre joc de carà cters per a substituir-lo o triar\n"
+"[Cancel·la] si no pot ser substituït"
#: ../src/msw/ole/dataobj.cpp:394
-#, fuzzy, c-format
+#, c-format
msgid "The clipboard format '%d' doesn't exist."
-msgstr "El format '%s' del porta-retalls no existeix."
+msgstr "El format del porta-retalls '%d' no existeix."
#: ../src/richtext/richtextstylepage.cpp:130
#: ../src/richtext/richtextstylepage.cpp:132
msgid "The default style for the next paragraph."
-msgstr ""
+msgstr "L'estil per defecte per al parà graf següent."
#: ../src/generic/dirdlgg.cpp:202
#, c-format
@@ -7087,8 +6772,8 @@ msgid ""
"The directory '%s' does not exist\n"
"Create it now?"
msgstr ""
-"El directori '%s' not existeix\n"
-"Desitgeu crear-lo ara?"
+"El directori '%s' no existeix.\n"
+"El voleu crear ara?"
#: ../src/html/htmprint.cpp:271
#, c-format
@@ -7098,6 +6783,10 @@ msgid ""
"\n"
"Would you like to proceed with printing it nevertheless?"
msgstr ""
+"El document \"%s\" no cap horitzontalment a la pà gina i es truncarà si "
+"s'imprimeix.\n"
+"\n"
+"Voleu continuar i imprimir-lo igualment?"
#: ../src/common/docview.cpp:1202
#, c-format
@@ -7105,170 +6794,155 @@ msgid ""
"The file '%s' doesn't exist and couldn't be opened.\n"
"It has been removed from the most recently used files list."
msgstr ""
-"El fitxer '%s' no existeix i per tant no pot ser obert.\n"
-"Ha estat extret des de llistat de fitxers utilitzats més recentment."
+"El fitxer '%s' no existeix i no s'ha pogut obrir.\n"
+"S'ha suprimit de la llista de fitxers utilitzats més recentment."
#: ../src/richtext/richtextindentspage.cpp:208
#: ../src/richtext/richtextindentspage.cpp:210
#: ../src/richtext/richtextliststylepage.cpp:394
#: ../src/richtext/richtextliststylepage.cpp:396
-#, fuzzy
msgid "The first line indent."
-msgstr "Mida de la font:"
+msgstr "El sagnat de la primera lÃnia."
#: ../src/gtk/utilsgtk.cpp:481
msgid "The following standard GTK+ options are also supported:\n"
-msgstr ""
+msgstr "També estan suportades les següents opcions està ndard de GTK+:\n"
#: ../src/generic/fontdlgg.cpp:414 ../src/generic/fontdlgg.cpp:416
msgid "The font colour."
-msgstr ""
+msgstr "El color de la lletra."
#: ../src/generic/fontdlgg.cpp:375 ../src/generic/fontdlgg.cpp:377
msgid "The font family."
-msgstr ""
+msgstr "La famÃlia del tipus de lletra."
#: ../src/richtext/richtextsymboldlg.cpp:405
#: ../src/richtext/richtextsymboldlg.cpp:407
msgid "The font from which to take the symbol."
-msgstr ""
+msgstr "El tipus de lletra del qual prendre el sÃmbol."
#: ../src/generic/fontdlgg.cpp:427 ../src/generic/fontdlgg.cpp:429
#: ../src/generic/fontdlgg.cpp:434 ../src/generic/fontdlgg.cpp:436
-#, fuzzy
msgid "The font point size."
-msgstr "Mida de la font:"
+msgstr "La mida en punts del tipus de lletra."
#: ../src/osx/carbon/fontdlg.cpp:343 ../src/osx/carbon/fontdlg.cpp:345
-#, fuzzy
msgid "The font size in points."
-msgstr "Mida de la font:"
+msgstr "La mida del tipus de lletra en punts."
#: ../src/richtext/richtextfontpage.cpp:181
#: ../src/richtext/richtextfontpage.cpp:183
-#, fuzzy
msgid "The font size units, points or pixels."
-msgstr "Mida de la font:"
+msgstr "Les unitats, punts o pÃxels de la mida del tipus de lletra."
#: ../src/generic/fontdlgg.cpp:386 ../src/generic/fontdlgg.cpp:388
msgid "The font style."
-msgstr ""
+msgstr "L'estil del tipus de lletra."
#: ../src/generic/fontdlgg.cpp:397 ../src/generic/fontdlgg.cpp:399
msgid "The font weight."
-msgstr ""
+msgstr "El pes de la lletra."
#: ../src/common/docview.cpp:1483
-#, fuzzy, c-format
+#, c-format
msgid "The format of file '%s' couldn't be determined."
-msgstr "No s'ha pogut crear el directori '%s'"
+msgstr "No s'ha pogut determinar el format del fitxer '%s'."
#: ../src/richtext/richtextbackgroundpage.cpp:219
#: ../src/richtext/richtextbackgroundpage.cpp:221
-#, fuzzy
msgid "The horizontal offset."
-msgstr "Col·loca &horitzontalment"
+msgstr "El desplaçament horitzontal."
#: ../src/richtext/richtextindentspage.cpp:199
#: ../src/richtext/richtextindentspage.cpp:201
#: ../src/richtext/richtextliststylepage.cpp:385
#: ../src/richtext/richtextliststylepage.cpp:387
-#, fuzzy
msgid "The left indent."
-msgstr "Mida de la font:"
+msgstr "El sagnat esquerre."
#: ../src/richtext/richtextmarginspage.cpp:194
#: ../src/richtext/richtextmarginspage.cpp:196
-#, fuzzy
msgid "The left margin size."
-msgstr "Mida de la font:"
+msgstr "La mida del marge esquerre."
#: ../src/richtext/richtextmarginspage.cpp:308
#: ../src/richtext/richtextmarginspage.cpp:310
-#, fuzzy
msgid "The left padding size."
-msgstr "Mida de la font:"
+msgstr "La mida de l'espaiat esquerre."
#: ../src/richtext/richtextsizepage.cpp:534
#: ../src/richtext/richtextsizepage.cpp:536
#: ../src/richtext/richtextsizepage.cpp:548
#: ../src/richtext/richtextsizepage.cpp:550
-#, fuzzy
msgid "The left position."
-msgstr "Mida de la font:"
+msgstr "La posició esquerra."
#: ../src/richtext/richtextindentspage.cpp:288
#: ../src/richtext/richtextindentspage.cpp:290
#: ../src/richtext/richtextliststylepage.cpp:462
#: ../src/richtext/richtextliststylepage.cpp:464
msgid "The line spacing."
-msgstr ""
+msgstr "L'interlineat."
#: ../src/richtext/richtextbulletspage.cpp:255
#: ../src/richtext/richtextbulletspage.cpp:257
msgid "The list item number."
-msgstr ""
+msgstr "El número de l'element de la llista."
#: ../src/msw/ole/automtn.cpp:664
msgid "The locale ID is unknown."
-msgstr ""
+msgstr "L'identificador de la configuració local és desconegut."
#: ../src/richtext/richtextsizepage.cpp:366
#: ../src/richtext/richtextsizepage.cpp:368
msgid "The object height."
-msgstr ""
+msgstr "L'alçada de l'objecte."
#: ../src/richtext/richtextsizepage.cpp:474
#: ../src/richtext/richtextsizepage.cpp:476
-#, fuzzy
msgid "The object maximum height."
-msgstr "Mida de la font:"
+msgstr "L'alçada mà xima de l'objecte."
#: ../src/richtext/richtextsizepage.cpp:447
#: ../src/richtext/richtextsizepage.cpp:449
-#, fuzzy
msgid "The object maximum width."
-msgstr "Mida de la font:"
+msgstr "L'amplada mà xima de l'objecte."
#: ../src/richtext/richtextsizepage.cpp:420
#: ../src/richtext/richtextsizepage.cpp:422
-#, fuzzy
msgid "The object minimum height."
-msgstr "Mida de la font:"
+msgstr "L'alçada mÃnima de l'objecte."
#: ../src/richtext/richtextsizepage.cpp:393
#: ../src/richtext/richtextsizepage.cpp:395
-#, fuzzy
msgid "The object minimum width."
-msgstr "Mida de la font:"
+msgstr "L'amplada mÃnima de l'objecte."
#: ../src/richtext/richtextsizepage.cpp:332
#: ../src/richtext/richtextsizepage.cpp:334
-#, fuzzy
msgid "The object width."
-msgstr "Mida de la font:"
+msgstr "L'amplada de l'objecte."
#: ../src/richtext/richtextindentspage.cpp:227
#: ../src/richtext/richtextindentspage.cpp:229
-#, fuzzy
msgid "The outline level."
-msgstr "Mida de la font:"
+msgstr "El nivell del contorn."
#: ../src/common/log.cpp:277
#, c-format
msgid "The previous message repeated %u time."
msgid_plural "The previous message repeated %u times."
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "El missatge anterior s'ha repetit %u vegada."
+msgstr[1] "El missatge anterior s'ha repetit %u vegades."
#: ../src/common/log.cpp:270
msgid "The previous message repeated once."
-msgstr ""
+msgstr "El missatge anterior s'ha repetit una vegada."
#: ../src/richtext/richtextsymboldlg.cpp:462
#: ../src/richtext/richtextsymboldlg.cpp:464
msgid "The range to show."
-msgstr ""
+msgstr "L'interval a mostrar."
#: ../src/generic/dbgrptg.cpp:322
msgid ""
@@ -7276,101 +6950,99 @@ msgid ""
"private information,\n"
"please uncheck them and they will be removed from the report.\n"
msgstr ""
+"L'informe conté els fitxers que es mostren a continuació. Si algun d'aquests "
+"fitxers conté informació privada,\n"
+"desmarqueu-los i se suprimiran de l'informe.\n"
#: ../src/common/cmdline.cpp:1254
#, c-format
msgid "The required parameter '%s' was not specified."
-msgstr "El parà metre requerit '%s' no ha estat especificat."
+msgstr "No s'ha especificat el parà metre necessari '%s'."
#: ../src/richtext/richtextindentspage.cpp:217
#: ../src/richtext/richtextindentspage.cpp:219
#: ../src/richtext/richtextliststylepage.cpp:403
#: ../src/richtext/richtextliststylepage.cpp:405
msgid "The right indent."
-msgstr ""
+msgstr "El sagnat dret."
#: ../src/richtext/richtextmarginspage.cpp:219
#: ../src/richtext/richtextmarginspage.cpp:221
-#, fuzzy
msgid "The right margin size."
-msgstr "Mida de la font:"
+msgstr "La mida del marge dret."
#: ../src/richtext/richtextmarginspage.cpp:333
#: ../src/richtext/richtextmarginspage.cpp:335
-#, fuzzy
msgid "The right padding size."
-msgstr "Mida de la font:"
+msgstr "La mida de l'espaiat dret."
#: ../src/richtext/richtextsizepage.cpp:604
#: ../src/richtext/richtextsizepage.cpp:606
#: ../src/richtext/richtextsizepage.cpp:618
#: ../src/richtext/richtextsizepage.cpp:620
-#, fuzzy
msgid "The right position."
-msgstr "Mida de la font:"
+msgstr "La posició dreta."
#: ../src/richtext/richtextbackgroundpage.cpp:309
#: ../src/richtext/richtextbackgroundpage.cpp:311
msgid "The shadow blur distance."
-msgstr ""
+msgstr "La distà ncia del difuminat de l'ombra."
#: ../src/richtext/richtextbackgroundpage.cpp:266
#: ../src/richtext/richtextbackgroundpage.cpp:268
msgid "The shadow colour."
-msgstr ""
+msgstr "El color de l'ombra."
#: ../src/richtext/richtextbackgroundpage.cpp:336
#: ../src/richtext/richtextbackgroundpage.cpp:338
msgid "The shadow opacity."
-msgstr ""
+msgstr "L'opacitat de l'ombra."
#: ../src/richtext/richtextbackgroundpage.cpp:282
#: ../src/richtext/richtextbackgroundpage.cpp:284
msgid "The shadow spread."
-msgstr ""
+msgstr "La difusió de l'ombra."
#: ../src/richtext/richtextindentspage.cpp:267
#: ../src/richtext/richtextliststylepage.cpp:439
#: ../src/richtext/richtextliststylepage.cpp:441
msgid "The spacing after the paragraph."
-msgstr ""
+msgstr "L'espaiat després del parà graf."
#: ../src/richtext/richtextindentspage.cpp:257
#: ../src/richtext/richtextindentspage.cpp:259
#: ../src/richtext/richtextliststylepage.cpp:430
#: ../src/richtext/richtextliststylepage.cpp:432
msgid "The spacing before the paragraph."
-msgstr ""
+msgstr "L'espaiat abans del parà graf."
#: ../src/richtext/richtextstylepage.cpp:110
#: ../src/richtext/richtextstylepage.cpp:112
msgid "The style name."
-msgstr ""
+msgstr "El nom de l'estil."
#: ../src/richtext/richtextstylepage.cpp:120
#: ../src/richtext/richtextstylepage.cpp:122
msgid "The style on which this style is based."
-msgstr ""
+msgstr "L'estil en què es basa aquest estil."
#: ../src/richtext/richtextstyledlg.cpp:214
#: ../src/richtext/richtextstyledlg.cpp:216
msgid "The style preview."
-msgstr ""
+msgstr "La previsualització de l'estil."
#: ../src/msw/ole/automtn.cpp:680
msgid "The system cannot find the file specified."
-msgstr ""
+msgstr "El sistema no pot trobar el fitxer especificat."
#: ../src/richtext/richtexttabspage.cpp:114
#: ../src/richtext/richtexttabspage.cpp:116
-#, fuzzy
msgid "The tab position."
-msgstr "Mida de la font:"
+msgstr "La posició de la tabulació."
#: ../src/richtext/richtexttabspage.cpp:120
-#, fuzzy
msgid "The tab positions."
-msgstr "Mida de la font:"
+msgstr "Les posicions de la tabulació."
#: ../src/richtext/richtextctrl.cpp:3098
msgid "The text couldn't be saved."
@@ -7378,116 +7050,116 @@ msgstr "No s'ha pogut desar el text."
#: ../src/richtext/richtextmarginspage.cpp:242
#: ../src/richtext/richtextmarginspage.cpp:244
-#, fuzzy
msgid "The top margin size."
-msgstr "Mida de la font:"
+msgstr "La mida del marge superior."
#: ../src/richtext/richtextmarginspage.cpp:356
#: ../src/richtext/richtextmarginspage.cpp:358
-#, fuzzy
msgid "The top padding size."
-msgstr "Mida de la font:"
+msgstr "La mida de l'espaiat superior."
#: ../src/richtext/richtextsizepage.cpp:569
#: ../src/richtext/richtextsizepage.cpp:571
#: ../src/richtext/richtextsizepage.cpp:583
#: ../src/richtext/richtextsizepage.cpp:585
-#, fuzzy
msgid "The top position."
-msgstr "Mida de la font:"
+msgstr "La posició superior."
#: ../src/common/cmdline.cpp:1232
#, c-format
msgid "The value for the option '%s' must be specified."
-msgstr "El valor per l'opció '%s' ha d'estar especificat."
+msgstr "Cal especificar el valor de l'opció '%s'."
#: ../src/richtext/richtextborderspage.cpp:585
#: ../src/richtext/richtextborderspage.cpp:587
msgid "The value of the corner radius."
-msgstr ""
+msgstr "El valor del radi de les cantonades."
#: ../src/msw/dialup.cpp:433
-#, fuzzy, c-format
+#, c-format
msgid ""
"The version of remote access service (RAS) installed on this machine is too "
"old, please upgrade (the following required function is missing: %s)."
msgstr ""
-"La versió d'accés remot al servei (RAS) instal·lada en aquest maquinari és "
-"\"tooold\", l'haurÃeu d'actualitzar (la següent funció sol·licitada s'ha "
-"passat per alt: %s)."
+"La versió del servei d'accés remot (RAS) instal·lada en aquest dispositiu és "
+"massa antiga, actualitzeu-la (hi manca la següent funció necessà ria: %s)."
#: ../src/richtext/richtextbackgroundpage.cpp:242
#: ../src/richtext/richtextbackgroundpage.cpp:244
-#, fuzzy
msgid "The vertical offset."
-msgstr "No s'ha pogut iniciar la impressió"
+msgstr "El desplaçament vertical."
#: ../src/richtext/richtextprint.cpp:619 ../src/html/htmprint.cpp:745
msgid ""
"There was a problem during page setup: you may need to set a default printer."
msgstr ""
-"Hi ha hagut un problema durant l'actualització de la pà gina: potser caldrà "
-"establir la impressora predeterminada."
+"Hi ha hagut un problema durant la configuració de la pà gina: pot ser que us "
+"calgui establir una impressora per defecte."
#: ../src/html/htmprint.cpp:255
msgid ""
"This document doesn't fit on the page horizontally and will be truncated "
"when it is printed."
msgstr ""
+"Aquest document no cap horitzontalment a la pà gina i es truncarà en imprimir-"
+"lo."
#: ../src/common/image.cpp:2854
-#, fuzzy, c-format
+#, c-format
msgid "This is not a %s."
-msgstr "PCX: aquest no és un fitxer PCX ."
+msgstr "Això no és un %s."
#: ../src/common/wincmn.cpp:1653
msgid "This platform does not support background transparency."
-msgstr ""
+msgstr "Aquesta plataforma no suporta la transparència al fons."
#: ../src/gtk/window.cpp:4660
msgid ""
"This program was compiled with a too old version of GTK+, please rebuild "
"with GTK+ 2.12 or newer."
msgstr ""
+"Aquest programa s'ha compilat amb una versió massa antiga del GTK+, "
+"recompileu-lo amb el GTK+ 2.12 o posterior."
#: ../src/msw/thread.cpp:1240
msgid ""
"Thread module initialization failed: cannot store value in thread local "
"storage"
msgstr ""
-"La inicialització de mòduls de la cadena ha fallat: no es pot emmagatzemar "
-"valor en cadena emmagatzemada localment"
+"No s'ha pogut inicialitzar el mòdul de fils d'execució: no es pot "
+"emmagatzemar el valor a l'emmagatzematge local del fil d'execució"
#: ../src/unix/threadpsx.cpp:1794
msgid "Thread module initialization failed: failed to create thread key"
msgstr ""
-"La inicialització de mòduls de la cadena ha fallat: no s'ha pogut crear una "
-"clau de la cadena."
+"No s'ha pogut inicialitzar el mòdul de fils d'execució: no s'ha pogut crear "
+"la clau del fil d'execució"
#: ../src/msw/thread.cpp:1228
msgid ""
"Thread module initialization failed: impossible to allocate index in thread "
"local storage"
msgstr ""
-"La inicialització de mòduls de la cadena ha fallat: no és possible "
-"localitzar l'Ãndex en la cadena emmagatzemada localment"
+"No s'ha pogut inicialitzar el mòdul de fils d'execució: no és possible "
+"assignar l'Ãndex a l'emmagatzematge local del fil d'execució"
#: ../src/unix/threadpsx.cpp:1043
msgid "Thread priority setting is ignored."
-msgstr "La prioritat de parà metres és ignorada."
+msgstr "La configuració de prioritat del fil d'execució és ignorada."
#: ../src/msw/mdi.cpp:176
msgid "Tile &Horizontally"
-msgstr "Col·loca &horitzontalment"
+msgstr "Mosaic &horitzontal"
#: ../src/msw/mdi.cpp:177
msgid "Tile &Vertically"
-msgstr "Col·loca &verticalment"
+msgstr "Mosaic &vertical"
#: ../src/common/ftp.cpp:200
-#, fuzzy
msgid "Timeout while waiting for FTP server to connect, try passive mode."
-msgstr "El servidor FTP no permet l'ús de mode passiu."
+msgstr ""
+"S'ha excedit el temps lÃmit d'espera en connectar al servidor FTP, proveu el "
+"mode passiu."
#: ../src/generic/tipdlg.cpp:201
msgid "Tip of the Day"
@@ -7495,31 +7167,30 @@ msgstr "Consell del dia"
#: ../src/generic/tipdlg.cpp:140
msgid "Tips not available, sorry!"
-msgstr "Els consells no es troben disponibles!"
+msgstr "Els consells no estan disponibles!"
#: ../src/generic/prntdlgg.cpp:242
msgid "To:"
-msgstr "Per a:"
+msgstr "A:"
#: ../src/richtext/richtextbuffer.cpp:8363
msgid "Too many EndStyle calls!"
-msgstr ""
+msgstr "Massa crides a EndStyle!"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:891
msgid "Tooltip"
-msgstr ""
+msgstr "Tooltip"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:892
msgid "TooltipText"
-msgstr ""
+msgstr "TooltipText"
#: ../src/richtext/richtextsizepage.cpp:286
#: ../src/richtext/richtextsizepage.cpp:290 ../src/common/stockitem.cpp:200
-#, fuzzy
msgid "Top"
-msgstr "Per a:"
+msgstr "Superior"
#: ../src/generic/prntdlgg.cpp:881
msgid "Top margin (mm):"
@@ -7527,22 +7198,22 @@ msgstr "Marge superior (mm):"
#: ../src/generic/aboutdlgg.cpp:79
msgid "Translations by "
-msgstr ""
+msgstr "Traduccions de "
#: ../src/generic/aboutdlgg.cpp:188
msgid "Translators"
-msgstr ""
+msgstr "Traductors"
#. TRANSLATORS: Name of Boolean true value
#: ../src/propgrid/propgrid.cpp:211
msgid "True"
-msgstr ""
+msgstr "Cert"
#: ../src/common/fs_mem.cpp:227
#, c-format
msgid "Trying to remove file '%s' from memory VFS, but it is not loaded!"
msgstr ""
-"S'està intentant esborrar el fitxer '%s' de VFS de memòria, però no està "
+"S'està provant de suprimir el fitxer '%s' del VFS en memòria, però no està "
"carregat!"
#: ../src/common/fmapbase.cpp:156
@@ -7550,29 +7221,28 @@ msgid "Turkish (ISO-8859-9)"
msgstr "Turc (ISO-8859-9)"
#: ../src/generic/filectrlg.cpp:426
-#, fuzzy
msgid "Type"
-msgstr "Teletip"
+msgstr "Tipus"
#: ../src/richtext/richtextfontpage.cpp:151
#: ../src/richtext/richtextfontpage.cpp:153
msgid "Type a font name."
-msgstr ""
+msgstr "Escriviu un nom de tipus de lletra."
#: ../src/richtext/richtextfontpage.cpp:166
#: ../src/richtext/richtextfontpage.cpp:168
msgid "Type a size in points."
-msgstr ""
+msgstr "Escriviu una mida en punts."
#: ../src/msw/ole/automtn.cpp:676
#, c-format
msgid "Type mismatch in argument %u."
-msgstr ""
+msgstr "El tipus de l'argument %u no coincideix."
#: ../src/common/xtixml.cpp:356 ../src/common/xtixml.cpp:509
#: ../src/common/xtistrm.cpp:318
msgid "Type must have enum - long conversion"
-msgstr ""
+msgstr "El tipus ha de ser convertir d'enum a long"
#: ../src/propgrid/propgridiface.cpp:401
#, c-format
@@ -7580,363 +7250,338 @@ msgid ""
"Type operation \"%s\" failed: Property labeled \"%s\" is of type \"%s\", NOT "
"\"%s\"."
msgstr ""
+"L'operació de tipus \"%s\" ha fallat: La propietat etiquetada \"%s\" és del "
+"tipus \"%s\", NO \"%s\"."
#: ../src/common/paper.cpp:133
msgid "US Std Fanfold, 14 7/8 x 11 in"
-msgstr "US Std Fanfold, 14 7/8 x 11 polz"
+msgstr "US Std Fanfold, 14 7/8 x 11 polz."
#: ../src/common/fmapbase.cpp:196
-#, fuzzy
msgid "US-ASCII"
-msgstr "ASCII"
+msgstr "US-ASCII"
#: ../src/unix/fswatcher_inotify.cpp:109
msgid "Unable to add inotify watch"
-msgstr ""
+msgstr "No s'ha pogut afegir la supervisió inotify"
#: ../src/unix/fswatcher_kqueue.cpp:136
msgid "Unable to add kqueue watch"
-msgstr ""
+msgstr "No s'ha pogut afegir la supervisió kqueue"
#: ../include/wx/msw/private/fswatcher.h:142
msgid "Unable to associate handle with I/O completion port"
-msgstr ""
+msgstr "No s'ha pogut associar el manegador amb el port de compleció d'E/S"
#: ../include/wx/msw/private/fswatcher.h:125
-#, fuzzy
msgid "Unable to close I/O completion port handle"
-msgstr "No s'ha pogut tancar el manegador de fitxers"
+msgstr "No s'ha pogut tancar el manegador del port de compleció d'E/S"
#: ../src/unix/fswatcher_inotify.cpp:97
-#, fuzzy
msgid "Unable to close inotify instance"
-msgstr "No s'ha pogut tancar el manegador de fitxers"
+msgstr "No s'ha pogut tancar la instà ncia d'inotify"
#: ../include/wx/unix/private/fswatcher_kqueue.h:74
-#, fuzzy, c-format
+#, c-format
msgid "Unable to close path '%s'"
-msgstr "No s'ha pogut tancar el fitxer de bloqueig '%s'"
+msgstr "No s'ha pogut tancar el camà '%s'"
#: ../include/wx/msw/private/fswatcher.h:48
-#, fuzzy, c-format
+#, c-format
msgid "Unable to close the handle for '%s'"
-msgstr "No s'ha pogut tancar el manegador de fitxers"
+msgstr "No s'ha pogut tancar el manegador de '%s'"
#: ../include/wx/msw/private/fswatcher.h:273
-#, fuzzy
msgid "Unable to create I/O completion port"
-msgstr "No s'ha pogut crear una barra d'estat."
+msgstr "No s'ha pogut crear el port de compleció d'E/S"
#: ../src/msw/fswatcher.cpp:84
-#, fuzzy
msgid "Unable to create IOCP worker thread"
-msgstr "No s'ha pogut crear un marc MDI principal."
+msgstr "No s'ha pogut crear el fil d'execució de treballs IOCP"
#: ../src/unix/fswatcher_inotify.cpp:74
-#, fuzzy
msgid "Unable to create inotify instance"
-msgstr "No s'ha pogut crear una cadena DDE"
+msgstr "No s'ha pogut crear la instà ncia d'inotify"
#: ../src/unix/fswatcher_kqueue.cpp:97
-#, fuzzy
msgid "Unable to create kqueue instance"
-msgstr "No s'ha pogut crear una cadena DDE"
+msgstr "No s'ha pogut crear la instà ncia de kqueue"
#: ../include/wx/msw/private/fswatcher.h:262
msgid "Unable to dequeue completion packet"
-msgstr ""
+msgstr "No s'ha pogut treure de la cua el paquet de compleció"
#: ../src/unix/fswatcher_kqueue.cpp:185
msgid "Unable to get events from kqueue"
-msgstr ""
+msgstr "No s'han pogut obtenir els esdeveniments de kqueue"
#: ../src/gtk/app.cpp:435
msgid "Unable to initialize GTK+, is DISPLAY set properly?"
-msgstr ""
+msgstr "No s'ha pogut inicialitzar el GTK+, teniu definit correctament DISPLAY?"
#: ../include/wx/unix/private/fswatcher_kqueue.h:57
-#, fuzzy, c-format
+#, c-format
msgid "Unable to open path '%s'"
-msgstr "No s'ha pogut obrir '%s' per %s"
+msgstr "No s'ha pogut obrir el camà '%s'"
#: ../src/html/htmlwin.cpp:583
#, c-format
msgid "Unable to open requested HTML document: %s"
-msgstr "No és possible obrir el document HTML sol·licitat: %s"
+msgstr "No s'ha pogut obrir el document HTML sol·licitat: %s"
#: ../src/unix/sound.cpp:368
msgid "Unable to play sound asynchronously."
-msgstr ""
+msgstr "No s'ha pogut reproduir el so asÃncronament."
#: ../include/wx/msw/private/fswatcher.h:213
msgid "Unable to post completion status"
-msgstr ""
+msgstr "No s'ha pogut publicar l'estat de compleció"
#: ../src/unix/fswatcher_inotify.cpp:556
-#, fuzzy
msgid "Unable to read from inotify descriptor"
-msgstr "no es pot llegir des del fitxer descriptor %s"
+msgstr "No s'ha pogut llegir el descriptor inotify"
#: ../src/unix/fswatcher_inotify.cpp:141
-#, fuzzy, c-format
+#, c-format
msgid "Unable to remove inotify watch %i"
-msgstr "No s'ha pogut crear una cadena DDE"
+msgstr "No s'ha pogut suprimir la supervisió inotify %i"
#: ../src/unix/fswatcher_kqueue.cpp:153
msgid "Unable to remove kqueue watch"
-msgstr ""
+msgstr "No s'ha pogut suprimir la supervisió kqueue"
#: ../src/msw/fswatcher.cpp:168
-#, fuzzy, c-format
+#, c-format
msgid "Unable to set up watch for '%s'"
-msgstr "No s'ha pogut posar en contacte amb el fitxer '%s'"
+msgstr "No s'ha pogut configurar la supervisió de '%s'"
#: ../src/msw/fswatcher.cpp:91
msgid "Unable to start IOCP worker thread"
-msgstr ""
+msgstr "No s'ha pogut iniciar el fil d'execució de treballs IOCP"
#: ../src/common/stockitem.cpp:201
-#, fuzzy
msgid "Undelete"
-msgstr "Subratllat"
+msgstr "Desfés la supressió"
#: ../src/common/stockitem.cpp:202
-#, fuzzy
msgid "Underline"
-msgstr "Subratllat"
+msgstr "Subratlla"
#. TRANSLATORS: Label of underlined font
#: ../src/richtext/richtextfontpage.cpp:359 ../src/osx/carbon/fontdlg.cpp:370
#: ../src/propgrid/advprops.cpp:690
-#, fuzzy
msgid "Underlined"
msgstr "Subratllat"
#: ../src/common/stockitem.cpp:203 ../src/stc/stc_i18n.cpp:15
-#, fuzzy
msgid "Undo"
-msgstr "&Desfés"
+msgstr "Desfés"
#: ../src/common/stockitem.cpp:265
msgid "Undo last action"
-msgstr ""
+msgstr "Desfés la darrera acció"
#: ../src/common/cmdline.cpp:1029
-#, fuzzy, c-format
+#, c-format
msgid "Unexpected characters following option '%s'."
-msgstr "Parà metre '%s' no esperat"
+msgstr "Hi ha carà cters inesperats després de l'opció '%s'."
#: ../src/unix/fswatcher_inotify.cpp:274
#, c-format
msgid "Unexpected event for \"%s\": no matching watch descriptor."
msgstr ""
+"Esdeveniment inesperat per a \"%s\": no hi ha cap descriptor de supervisió "
+"coincident."
#: ../src/common/cmdline.cpp:1195
#, c-format
msgid "Unexpected parameter '%s'"
-msgstr "Parà metre '%s' no esperat"
+msgstr "Parà metre inesperat '%s'"
#: ../include/wx/msw/private/fswatcher.h:148
msgid "Unexpectedly new I/O completion port was created"
-msgstr ""
+msgstr "S'ha creat un port de compleció d'E/S inesperadament nou"
#: ../src/msw/fswatcher.cpp:70
-#, fuzzy
msgid "Ungraceful worker thread termination"
-msgstr "No es pot esperar per a l'acabament de cadena"
+msgstr "El fil d'execució de treballs ha finalitzat de manera inadequada"
#: ../src/richtext/richtextsymboldlg.cpp:459
#: ../src/richtext/richtextsymboldlg.cpp:460
#: ../src/richtext/richtextsymboldlg.cpp:461
-#, fuzzy
msgid "Unicode"
-msgstr "dinovè"
+msgstr "Unicode"
#: ../src/common/fmapbase.cpp:185 ../src/common/fmapbase.cpp:191
-#, fuzzy
msgid "Unicode 16 bit (UTF-16)"
-msgstr "Unicode 7 bit (UTF-7)"
+msgstr "Unicode de 16 bits (UTF-16)"
#: ../src/common/fmapbase.cpp:190
-#, fuzzy
msgid "Unicode 16 bit Big Endian (UTF-16BE)"
-msgstr "Unicode 8 bit (UTF-8)"
+msgstr "Unicode de 16 bits Big Endian (UTF-16BE)"
#: ../src/common/fmapbase.cpp:186
-#, fuzzy
msgid "Unicode 16 bit Little Endian (UTF-16LE)"
-msgstr "Unicode 8 bit (UTF-8)"
+msgstr "Unicode de 16 bits Little Endian (UTF-16LE)"
#: ../src/common/fmapbase.cpp:187 ../src/common/fmapbase.cpp:193
-#, fuzzy
msgid "Unicode 32 bit (UTF-32)"
-msgstr "Unicode 7 bit (UTF-7)"
+msgstr "Unicode de 32 bits (UTF-32)"
#: ../src/common/fmapbase.cpp:192
-#, fuzzy
msgid "Unicode 32 bit Big Endian (UTF-32BE)"
-msgstr "Unicode 8 bit (UTF-8)"
+msgstr "Unicode de 32 bits Big Endian (UTF-32BE)"
#: ../src/common/fmapbase.cpp:188
-#, fuzzy
msgid "Unicode 32 bit Little Endian (UTF-32LE)"
-msgstr "Unicode 8 bit (UTF-8)"
+msgstr "Unicode de 32 bits Little Endian (UTF-32LE)"
#: ../src/common/fmapbase.cpp:182
msgid "Unicode 7 bit (UTF-7)"
-msgstr "Unicode 7 bit (UTF-7)"
+msgstr "Unicode de 7 bits (UTF-7)"
#: ../src/common/fmapbase.cpp:183
msgid "Unicode 8 bit (UTF-8)"
-msgstr "Unicode 8 bit (UTF-8)"
+msgstr "Unicode de 8 bits (UTF-8)"
#: ../src/common/stockitem.cpp:204
-#, fuzzy
msgid "Unindent"
-msgstr "dinovè"
+msgstr "Desfés el sagnat"
#: ../src/richtext/richtextborderspage.cpp:360
#: ../src/richtext/richtextborderspage.cpp:362
msgid "Units for the bottom border width."
-msgstr ""
+msgstr "Unitats per a l'amplada de la vora inferior."
#: ../src/richtext/richtextmarginspage.cpp:277
#: ../src/richtext/richtextmarginspage.cpp:279
msgid "Units for the bottom margin."
-msgstr ""
+msgstr "Unitats per al marge inferior."
#: ../src/richtext/richtextborderspage.cpp:528
#: ../src/richtext/richtextborderspage.cpp:530
msgid "Units for the bottom outline width."
-msgstr ""
+msgstr "Unitats per a l'amplada del contorn inferior."
#: ../src/richtext/richtextmarginspage.cpp:391
#: ../src/richtext/richtextmarginspage.cpp:393
msgid "Units for the bottom padding."
-msgstr ""
+msgstr "Unitats per a l'espaiat inferior."
#: ../src/richtext/richtextsizepage.cpp:664
#: ../src/richtext/richtextsizepage.cpp:666
-#, fuzzy
msgid "Units for the bottom position."
-msgstr "No es pot esperar per a l'acabament de cadena"
+msgstr "Unitats per a la posició inferior."
#: ../src/richtext/richtextborderspage.cpp:596
#: ../src/richtext/richtextborderspage.cpp:598
-#, fuzzy
msgid "Units for the corner radius."
-msgstr "No es pot esperar per a l'acabament de cadena"
+msgstr "Unitats per al radi de les cantonades."
#: ../src/richtext/richtextborderspage.cpp:258
#: ../src/richtext/richtextborderspage.cpp:260
msgid "Units for the left border width."
-msgstr ""
+msgstr "Unitats per a l'amplada de la vora esquerra."
#: ../src/richtext/richtextmarginspage.cpp:204
#: ../src/richtext/richtextmarginspage.cpp:206
msgid "Units for the left margin."
-msgstr ""
+msgstr "Unitats per al marge esquerre."
#: ../src/richtext/richtextborderspage.cpp:426
#: ../src/richtext/richtextborderspage.cpp:428
msgid "Units for the left outline width."
-msgstr ""
+msgstr "Unitats per a l'amplada del contorn esquerre."
#: ../src/richtext/richtextmarginspage.cpp:318
#: ../src/richtext/richtextmarginspage.cpp:320
msgid "Units for the left padding."
-msgstr ""
+msgstr "Unitats per a l'espaiat esquerre."
#: ../src/richtext/richtextsizepage.cpp:559
#: ../src/richtext/richtextsizepage.cpp:561
-#, fuzzy
msgid "Units for the left position."
-msgstr "No es pot esperar per a l'acabament de cadena"
+msgstr "Unitats per a la posició esquerra."
#: ../src/richtext/richtextsizepage.cpp:485
#: ../src/richtext/richtextsizepage.cpp:487
msgid "Units for the maximum object height."
-msgstr ""
+msgstr "Unitats per a l'alçada mà xima d'objecte."
#: ../src/richtext/richtextsizepage.cpp:458
#: ../src/richtext/richtextsizepage.cpp:460
-#, fuzzy
msgid "Units for the maximum object width."
-msgstr "Mida de la font:"
+msgstr "Unitats per a l'amplada mà xima de l'objecte."
#: ../src/richtext/richtextsizepage.cpp:431
#: ../src/richtext/richtextsizepage.cpp:433
msgid "Units for the minimum object height."
-msgstr ""
+msgstr "Unitats per a l'alçada mÃnima d'objecte."
#: ../src/richtext/richtextsizepage.cpp:404
#: ../src/richtext/richtextsizepage.cpp:406
-#, fuzzy
msgid "Units for the minimum object width."
-msgstr "Mida de la font:"
+msgstr "Unitats per a l'amplada mÃnima de l'objecte."
#: ../src/richtext/richtextsizepage.cpp:377
#: ../src/richtext/richtextsizepage.cpp:379
msgid "Units for the object height."
-msgstr ""
+msgstr "Unitats per a l'alçada de l'objecte."
#: ../src/richtext/richtextsizepage.cpp:343
#: ../src/richtext/richtextsizepage.cpp:345
msgid "Units for the object width."
-msgstr ""
+msgstr "Unitats per a l'amplada de l'objecte."
#: ../src/richtext/richtextborderspage.cpp:292
#: ../src/richtext/richtextborderspage.cpp:294
msgid "Units for the right border width."
-msgstr ""
+msgstr "Unitats per a l'amplada de la vora dreta."
#: ../src/richtext/richtextmarginspage.cpp:229
#: ../src/richtext/richtextmarginspage.cpp:231
msgid "Units for the right margin."
-msgstr ""
+msgstr "Unitats per al marge dret."
#: ../src/richtext/richtextborderspage.cpp:460
#: ../src/richtext/richtextborderspage.cpp:462
msgid "Units for the right outline width."
-msgstr ""
+msgstr "Unitats per a l'amplada del contorn dret."
#: ../src/richtext/richtextmarginspage.cpp:343
#: ../src/richtext/richtextmarginspage.cpp:345
msgid "Units for the right padding."
-msgstr ""
+msgstr "Unitats per a l'espaiat dret."
#: ../src/richtext/richtextsizepage.cpp:629
#: ../src/richtext/richtextsizepage.cpp:631
-#, fuzzy
msgid "Units for the right position."
-msgstr "No es pot esperar per a l'acabament de cadena"
+msgstr "Unitats per a la posició dreta."
#: ../src/richtext/richtextborderspage.cpp:326
#: ../src/richtext/richtextborderspage.cpp:328
msgid "Units for the top border width."
-msgstr ""
+msgstr "Unitats per a l'amplada de la vora superior."
#: ../src/richtext/richtextmarginspage.cpp:252
#: ../src/richtext/richtextmarginspage.cpp:254
-#, fuzzy
msgid "Units for the top margin."
-msgstr "No es pot esperar per a l'acabament de cadena"
+msgstr "Unitats per al marge superior."
#: ../src/richtext/richtextborderspage.cpp:494
#: ../src/richtext/richtextborderspage.cpp:496
msgid "Units for the top outline width."
-msgstr ""
+msgstr "Unitats per a l'amplada del contorn superior."
#: ../src/richtext/richtextmarginspage.cpp:366
#: ../src/richtext/richtextmarginspage.cpp:368
msgid "Units for the top padding."
-msgstr ""
+msgstr "Unitats per a l'espaiat superior."
#: ../src/richtext/richtextsizepage.cpp:594
#: ../src/richtext/richtextsizepage.cpp:596
-#, fuzzy
msgid "Units for the top position."
-msgstr "No es pot esperar per a l'acabament de cadena"
+msgstr "Unitats per a la posició superior."
#: ../src/richtext/richtextbackgroundpage.cpp:230
#: ../src/richtext/richtextbackgroundpage.cpp:232
@@ -7946,14 +7591,12 @@ msgstr "No es pot esperar per a l'acabament de cadena"
#: ../src/richtext/richtextbackgroundpage.cpp:295
#: ../src/richtext/richtextbackgroundpage.cpp:320
#: ../src/richtext/richtextbackgroundpage.cpp:322
-#, fuzzy
msgid "Units for this value."
-msgstr "No es pot esperar per a l'acabament de cadena"
+msgstr "Unitats per a aquest valor."
#: ../src/generic/progdlgg.cpp:353 ../src/generic/progdlgg.cpp:622
-#, fuzzy
msgid "Unknown"
-msgstr "desconegut"
+msgstr "Desconegut"
#: ../src/msw/dde.cpp:1174
#, c-format
@@ -7962,46 +7605,44 @@ msgstr "Error DDE desconegut %08x"
#: ../src/common/xtistrm.cpp:410
msgid "Unknown Object passed to GetObjectClassInfo"
-msgstr ""
+msgstr "S'ha passat un objecte desconegut a GetObjectClassInfo"
#: ../src/common/imagpng.cpp:366
-#, fuzzy, c-format
+#, c-format
msgid "Unknown PNG resolution unit %d"
-msgstr "Opció '%s' desconeguda"
+msgstr "Unitat de resolució PNG desconeguda %d"
#: ../src/common/xtixml.cpp:327
-#, fuzzy, c-format
+#, c-format
msgid "Unknown Property %s"
-msgstr "Opció '%s' desconeguda"
+msgstr "Propietat desconeguda %s"
#: ../src/common/imagtiff.cpp:529
#, c-format
msgid "Unknown TIFF resolution unit %d ignored"
-msgstr ""
+msgstr "S'ha ignorat la unitat de resolució TIFF desconeguda %d"
#: ../src/unix/dlunix.cpp:160
msgid "Unknown dynamic library error"
-msgstr ""
+msgstr "S'ha produït un error desconegut de biblioteca dinà mica"
#: ../src/common/fmapbase.cpp:810
#, c-format
msgid "Unknown encoding (%d)"
-msgstr "Codificació (%d) desconeguda"
+msgstr "Codificació desconeguda (%d)"
#: ../src/msw/ole/automtn.cpp:688
-#, fuzzy, c-format
+#, c-format
msgid "Unknown error %08x"
-msgstr "Error DDE desconegut %08x"
+msgstr "S'ha produït un error desconegut %08x"
#: ../src/msw/ole/automtn.cpp:647
-#, fuzzy
msgid "Unknown exception"
-msgstr "Opció '%s' desconeguda"
+msgstr "Excepció desconeguda"
#: ../src/common/image.cpp:2839
-#, fuzzy
msgid "Unknown image data format."
-msgstr "IFF: error en format d'imatge IFF."
+msgstr "Format de dades d'imatge desconegut."
#: ../src/common/cmdline.cpp:914
#, c-format
@@ -8010,17 +7651,17 @@ msgstr "Opció llarga desconeguda '%s'"
#: ../src/msw/ole/automtn.cpp:631
msgid "Unknown name or named argument."
-msgstr ""
+msgstr "Argument o argument amb nom desconegut."
#: ../src/common/cmdline.cpp:929 ../src/common/cmdline.cpp:951
#, c-format
msgid "Unknown option '%s'"
-msgstr "Opció '%s' desconeguda"
+msgstr "Opció desconeguda '%s'"
#: ../src/common/mimecmn.cpp:225
#, c-format
msgid "Unmatched '{' in an entry for mime type %s."
-msgstr "'{' no tancat per a tipus mime %s."
+msgstr "'{' no tancat en una entrada per a tipus mime %s."
#: ../src/common/cmdproc.cpp:262 ../src/common/cmdproc.cpp:288
#: ../src/common/cmdproc.cpp:308
@@ -8030,16 +7671,16 @@ msgstr "Ordre sense nom"
#. TRANSLATORS: Text displayed for unspecified value
#: ../src/propgrid/propgrid.cpp:413
msgid "Unspecified"
-msgstr ""
+msgstr "No especificat"
#: ../src/msw/clipbrd.cpp:311
msgid "Unsupported clipboard format."
-msgstr "Format no suportat de porta-retalls"
+msgstr "Format de porta-retalls no suportat."
#: ../src/common/appcmn.cpp:256
#, c-format
msgid "Unsupported theme '%s'."
-msgstr "Tema '%s' no suportat"
+msgstr "Tema no suportat '%s'."
#. TRANSLATORS: Name of keyboard key
#: ../src/generic/fdrepdlg.cpp:152 ../src/common/stockitem.cpp:205
@@ -8050,28 +7691,28 @@ msgstr "Amunt"
#: ../src/richtext/richtextliststylepage.cpp:483
#: ../src/richtext/richtextbulletspage.cpp:275
msgid "Upper case letters"
-msgstr ""
+msgstr "Lletres majúscules"
#: ../src/richtext/richtextliststylepage.cpp:485
#: ../src/richtext/richtextbulletspage.cpp:277
msgid "Upper case roman numerals"
-msgstr ""
+msgstr "Nombres romans en majúscules"
#: ../src/common/cmdline.cpp:1326
#, c-format
msgid "Usage: %s"
-msgstr "Sintaxi: %s"
+msgstr "Ús: %s"
#: ../src/richtext/richtextbackgroundpage.cpp:194
msgid "Use &shadow"
-msgstr ""
+msgstr "&Utilitza ombra"
#: ../src/richtext/richtextindentspage.cpp:169
#: ../src/richtext/richtextindentspage.cpp:171
#: ../src/richtext/richtextliststylepage.cpp:358
#: ../src/richtext/richtextliststylepage.cpp:360
msgid "Use the current alignment setting."
-msgstr ""
+msgstr "Utilitza la configuració d'alineació actual."
#: ../src/common/valtext.cpp:179
msgid "Validation conflict"
@@ -8079,96 +7720,93 @@ msgstr "Conflicte de validació"
#: ../src/propgrid/manager.cpp:238
msgid "Value"
-msgstr ""
+msgstr "Valor"
#: ../src/propgrid/props.cpp:386 ../src/propgrid/props.cpp:500
#, c-format
msgid "Value must be %s or higher."
-msgstr ""
+msgstr "El valor ha de ser més gran o igual que %s."
#: ../src/propgrid/props.cpp:417 ../src/propgrid/props.cpp:531
#, c-format
msgid "Value must be %s or less."
-msgstr ""
+msgstr "El valor ha de ser més petit o igual que %s."
#: ../src/propgrid/props.cpp:393 ../src/propgrid/props.cpp:424
#: ../src/propgrid/props.cpp:507 ../src/propgrid/props.cpp:538
#, c-format
msgid "Value must be between %s and %s."
-msgstr ""
+msgstr "El valor ha de ser entre %s i %s."
#: ../src/generic/aboutdlgg.cpp:128
-#, fuzzy
msgid "Version "
-msgstr "Permisos"
+msgstr "Versió "
#: ../src/richtext/richtextsizepage.cpp:291
#: ../src/richtext/richtextsizepage.cpp:293
-#, fuzzy
msgid "Vertical alignment."
-msgstr "No s'ha pogut iniciar la impressió"
+msgstr "Alineació vertical."
#: ../src/generic/filedlgg.cpp:202
msgid "View files as a detailed view"
-msgstr "Mostra els fitxers en vista detallada"
+msgstr "Mostra els fitxers en visualització detallada"
#: ../src/generic/filedlgg.cpp:200
msgid "View files as a list view"
-msgstr "Mostra fitxers com a un llistat de vista"
+msgstr "Mostra els fitxers en visualització de llista"
#: ../src/common/docview.cpp:1970
msgid "Views"
-msgstr "Vistes"
+msgstr "Visualitzacions"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1777
msgid "Wait"
-msgstr ""
+msgstr "Espera"
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1779
msgid "Wait Arrow"
-msgstr ""
+msgstr "Fletxa d'espera"
#: ../src/unix/epolldispatcher.cpp:213
-#, fuzzy, c-format
+#, c-format
msgid "Waiting for IO on epoll descriptor %d failed"
-msgstr "Error en l'espera de la fi d'un subprocès"
+msgstr "S'ha produït un error mentre s'esperava l'E/S del descriptor epoll %d"
#: ../src/common/log.cpp:223
msgid "Warning: "
-msgstr "Advertència:"
+msgstr "Advertència: "
#. TRANSLATORS: System cursor name
#: ../src/propgrid/advprops.cpp:1778
msgid "Watch"
-msgstr ""
+msgstr "Rellotge"
#. TRANSLATORS: Label of font weight
#: ../src/propgrid/advprops.cpp:685
-#, fuzzy
msgid "Weight"
-msgstr "vuitè"
+msgstr "Pes"
#: ../src/common/fmapbase.cpp:148
msgid "Western European (ISO-8859-1)"
-msgstr "Europa de l'est, (ISO-8859-1)"
+msgstr "Europa occidental (ISO-8859-1)"
#: ../src/common/fmapbase.cpp:162
msgid "Western European with Euro (ISO-8859-15)"
-msgstr "Europeu occidental amb Euro (ISO-8859-15)"
+msgstr "Europa occidental amb euro (ISO-8859-15)"
#: ../src/generic/fontdlgg.cpp:446 ../src/generic/fontdlgg.cpp:448
msgid "Whether the font is underlined."
-msgstr ""
+msgstr "Si el tipus de lletra està subratllada."
#: ../src/propgrid/advprops.cpp:1611
msgid "White"
-msgstr ""
+msgstr "Blanc"
#: ../src/generic/fdrepdlg.cpp:144
msgid "Whole word"
-msgstr "Tota la paraula"
+msgstr "Paraula sencera"
#: ../src/html/helpwnd.cpp:534
msgid "Whole words only"
@@ -8180,155 +7818,142 @@ msgstr "Tema Win32"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:893
-#, fuzzy
msgid "Window"
-msgstr "&Finestra"
+msgstr "Window"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:894
-#, fuzzy
msgid "WindowFrame"
-msgstr "&Finestra"
+msgstr "WindowFrame"
#. TRANSLATORS: Keyword of system colour
#: ../src/propgrid/advprops.cpp:895
-#, fuzzy
msgid "WindowText"
-msgstr "&Finestra"
+msgstr "WindowText"
#: ../src/common/fmapbase.cpp:177
msgid "Windows Arabic (CP 1256)"
-msgstr "Windows Àrab (CP 1256)"
+msgstr "Àrab del Windows (CP 1256)"
#: ../src/common/fmapbase.cpp:178
msgid "Windows Baltic (CP 1257)"
-msgstr "Windows BÃ ltic (CP 1257)"
+msgstr "BÃ ltic del Windows (CP 1257)"
#: ../src/common/fmapbase.cpp:171
msgid "Windows Central European (CP 1250)"
-msgstr "Windows Central Europeu (CP 1250)"
+msgstr "Europa central del Windows (CP 1250)"
#: ../src/common/fmapbase.cpp:168
-#, fuzzy
msgid "Windows Chinese Simplified (CP 936) or GB-2312"
-msgstr "Windows Xinés Simplificat (CP 936)"
+msgstr "Xinès simplificat del Windows (CP 936) o GB-2312"
#: ../src/common/fmapbase.cpp:170
-#, fuzzy
msgid "Windows Chinese Traditional (CP 950) or Big-5"
-msgstr "Windows Xinés Tradicional (CP 950)"
+msgstr "Xinès tradicional del Windows (CP 950) o Big-5"
#: ../src/common/fmapbase.cpp:172
msgid "Windows Cyrillic (CP 1251)"
-msgstr "Windows CirÃlic (CP 1251)"
+msgstr "CirÃl·lic del Windows (CP 1251)"
#: ../src/common/fmapbase.cpp:174
msgid "Windows Greek (CP 1253)"
-msgstr "Windows Grec (CP 1253)"
+msgstr "Grec del Windows (CP 1253)"
#: ../src/common/fmapbase.cpp:176
msgid "Windows Hebrew (CP 1255)"
-msgstr "Windows Hebreu (CP 1255)"
+msgstr "Hebreu del Windows (CP 1255)"
#: ../src/common/fmapbase.cpp:167
-#, fuzzy
msgid "Windows Japanese (CP 932) or Shift-JIS"
-msgstr "Windows Japonès (CP 932)"
+msgstr "Japonès del Windows (CP 932) o Shift-JIS"
#: ../src/common/fmapbase.cpp:180
-#, fuzzy
msgid "Windows Johab (CP 1361)"
-msgstr "Windows Àrab (CP 1256)"
+msgstr "Johab del Windows (CP 1361)"
#: ../src/common/fmapbase.cpp:169
msgid "Windows Korean (CP 949)"
-msgstr "Windows Coreà (CP 949)"
+msgstr "Coreà del Windows (CP 949)"
#: ../src/common/fmapbase.cpp:166
-#, fuzzy
msgid "Windows Thai (CP 874)"
-msgstr "Windows BÃ ltic (CP 1257)"
+msgstr "Tailandès del Windows (CP 874)"
#: ../src/common/fmapbase.cpp:175
msgid "Windows Turkish (CP 1254)"
-msgstr "Windows Turc (CP 1254)"
+msgstr "Turc del Windows (CP 1254)"
#: ../src/common/fmapbase.cpp:179
-#, fuzzy
msgid "Windows Vietnamese (CP 1258)"
-msgstr "Windows Grec (CP 1253)"
+msgstr "Vietnamita del Windows (CP 1258)"
#: ../src/common/fmapbase.cpp:173
msgid "Windows Western European (CP 1252)"
-msgstr "Windows Europeu de l'est (CP 1252)"
+msgstr "Europa occidental del Windows (CP 1252)"
#: ../src/common/fmapbase.cpp:181
msgid "Windows/DOS OEM (CP 437)"
-msgstr "Windows/DOS OEM (CP 437)"
+msgstr "OEM del Windows/DOS (CP 437)"
#: ../src/common/fmapbase.cpp:165
-#, fuzzy
msgid "Windows/DOS OEM Cyrillic (CP 866)"
-msgstr "Windows CirÃlic (CP 1251)"
+msgstr "CirÃl·lic OEM del Windows/DOS (CP 866)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:111
-#, fuzzy
msgid "Windows_Left"
-msgstr "Windows 9%c"
+msgstr "Windows (esquerra)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:113
-#, fuzzy
msgid "Windows_Menu"
-msgstr "Windows 3.1"
+msgstr "Windows (menú)"
#. TRANSLATORS: Name of keyboard key
#: ../src/common/accelcmn.cpp:112
-#, fuzzy
msgid "Windows_Right"
-msgstr "Windows 9%c"
+msgstr "Windows (dreta)"
#: ../src/common/ffile.cpp:150
#, c-format
msgid "Write error on file '%s'"
-msgstr "Error en el fitxer '%s'"
+msgstr "S'ha produït un error en escriure al fitxer '%s'"
#: ../src/xml/xml.cpp:914
#, c-format
msgid "XML parsing error: '%s' at line %d"
-msgstr "error d'anà lisi XML: '%s' a la lÃnia %d"
+msgstr "S'ha produït un error d'anà lisi XML: '%s' a la lÃnia %d"
#: ../src/common/xpmdecod.cpp:796
msgid "XPM: Malformed pixel data!"
-msgstr "XPM: dades pÃxels mal formulades!"
+msgstr "XPM: Dades de pÃxel incorrectes!"
#: ../src/common/xpmdecod.cpp:705
-#, fuzzy, c-format
+#, c-format
msgid "XPM: incorrect colour description in line %d"
-msgstr "XPM: definició '%s' de color mal formulada!"
+msgstr "XPM: descripció del color incorrecta a la lÃnia %d"
#: ../src/common/xpmdecod.cpp:680
msgid "XPM: incorrect header format!"
-msgstr ""
+msgstr "XPM: format de la capçalera incorrecte!"
#: ../src/common/xpmdecod.cpp:716 ../src/common/xpmdecod.cpp:725
-#, fuzzy, c-format
+#, c-format
msgid "XPM: malformed colour definition '%s' at line %d!"
-msgstr "XPM: definició '%s' de color mal formulada!"
+msgstr "XPM: definició del color incorrecta '%s' a la lÃnia %d!"
#: ../src/common/xpmdecod.cpp:755
msgid "XPM: no colors left to use for mask!"
-msgstr ""
+msgstr "XPM: no resten colors per a utilitzar per a la mà scara!"
#: ../src/common/xpmdecod.cpp:782
#, c-format
msgid "XPM: truncated image data at line %d!"
-msgstr ""
+msgstr "XPM: dades de la imatge truncades a la lÃnia %d!"
#: ../src/propgrid/advprops.cpp:1610
msgid "Yellow"
-msgstr ""
+msgstr "Groc"
#: ../include/wx/msgdlg.h:276 ../src/common/stockitem.cpp:206
#: ../src/motif/msgdlg.cpp:196
@@ -8336,49 +7961,48 @@ msgid "Yes"
msgstr "SÃ"
#: ../src/osx/carbon/overlay.cpp:155
-#, fuzzy
msgid "You cannot Clear an overlay that is not inited"
-msgstr "No podeu afegir un directori nou a aquesta secció"
+msgstr "No podeu netejar una superposició que no s'ha inicialitzat"
#: ../src/osx/carbon/overlay.cpp:107 ../src/dfb/overlay.cpp:61
msgid "You cannot Init an overlay twice"
-msgstr ""
+msgstr "No podeu inicialitzar una superposició dues vegades"
#: ../src/generic/dirdlgg.cpp:287
msgid "You cannot add a new directory to this section."
-msgstr "No podeu afegir un directori nou a aquesta secció"
+msgstr "No podeu afegir un directori nou a aquesta secció."
#: ../src/propgrid/propgrid.cpp:3299
msgid "You have entered invalid value. Press ESC to cancel editing."
-msgstr ""
+msgstr "Heu introduït un valor invà lid. Premeu Esc per a cancel·lar l'edició."
#: ../src/common/stockitem.cpp:209
msgid "Zoom &In"
-msgstr ""
+msgstr "Ampl&ia"
#: ../src/common/stockitem.cpp:210
msgid "Zoom &Out"
-msgstr ""
+msgstr "All&unya"
#: ../src/common/stockitem.cpp:209 ../src/common/prntbase.cpp:1594
msgid "Zoom In"
-msgstr ""
+msgstr "Amplia"
#: ../src/common/stockitem.cpp:210 ../src/common/prntbase.cpp:1580
msgid "Zoom Out"
-msgstr ""
+msgstr "Allunya"
#: ../src/common/stockitem.cpp:208
msgid "Zoom to &Fit"
-msgstr ""
+msgstr "Amplia &fins a ajustar"
#: ../src/common/stockitem.cpp:208
msgid "Zoom to Fit"
-msgstr ""
+msgstr "Amplia fins a ajustar"
#: ../src/msw/dde.cpp:1141
msgid "a DDEML application has created a prolonged race condition."
-msgstr "una aplicació DDEML ha creat una condició estreta prolongada."
+msgstr "una aplicació DDEML ha creat una situació de competició prolongada."
#: ../src/msw/dde.cpp:1129
msgid ""
@@ -8387,47 +8011,51 @@ msgid ""
"or an invalid instance identifier\n"
"was passed to a DDEML function."
msgstr ""
-"s'ha cridat una funció DDEML sense cridar primer la funció DdeInitialize,\n"
-"o un identificador invà lid d'instà ncia\n"
-"ha passat a funció DDEML."
+"s'ha cridat una funció DDEML sense cridar abans la funció DdeInitialize,\n"
+"o s'ha passat un identificador d'instà ncia invà lid\n"
+"a una funció DDEML."
#: ../src/msw/dde.cpp:1147
msgid "a client's attempt to establish a conversation has failed."
-msgstr "Un client que intentava establir una connexió ha fallit."
+msgstr "un client no ha pogut establir una conversa."
#: ../src/msw/dde.cpp:1144
msgid "a memory allocation failed."
-msgstr "ha fallat una assignació de memòria"
+msgstr "no s'ha pogut fer una assignació de memòria."
#: ../src/msw/dde.cpp:1138
msgid "a parameter failed to be validated by the DDEML."
-msgstr "un parà metre ha fallat per ser validat pel DDEML"
+msgstr "el DDEML no ha pogut validar un parà metre."
#: ../src/msw/dde.cpp:1120
msgid "a request for a synchronous advise transaction has timed out."
msgstr ""
-"una sol·licitud per a una transacció d'avÃs sÃncrona ha excedit el temps"
+"s'ha excedit el temps lÃmit d'una sol·licitud per a una transacció d'avÃs "
+"sÃncrona."
#: ../src/msw/dde.cpp:1126
msgid "a request for a synchronous data transaction has timed out."
msgstr ""
-"una sol·licitud per a una transacció de dades sÃncrona ha excedit el temps"
+"s'ha excedit el temps lÃmit d'una sol·licitud per a una transacció de dades "
+"sÃncrona."
#: ../src/msw/dde.cpp:1135
msgid "a request for a synchronous execute transaction has timed out."
msgstr ""
-"una sol·licitud per a una transacció sÃncrona per a executar ha excedit el "
-"temps"
+"s'ha excedit el temps lÃmit d'una sol·licitud per a una transacció "
+"d'execució sÃncrona."
#: ../src/msw/dde.cpp:1153
msgid "a request for a synchronous poke transaction has timed out."
-msgstr "una sol·licitud per a una transacció poke ha excedit el temps"
+msgstr ""
+"s'ha excedit el temps lÃmit d'una sol·licitud per a una transacció poke "
+"sÃncrona."
#: ../src/msw/dde.cpp:1168
msgid "a request to end an advise transaction has timed out."
msgstr ""
-"una sol·licitud per finalitzar un avÃs de transacció s'ha excedit en el "
-"temps."
+"s'ha excedit el temps lÃmit d'una sol·licitud per a finalitzar una "
+"transacció d'avÃs."
#: ../src/msw/dde.cpp:1162
msgid ""
@@ -8435,13 +8063,13 @@ msgid ""
"that was terminated by the client, or the server\n"
"terminated before completing a transaction."
msgstr ""
-"s'ha intentat una conversació de servidor lateral\n"
-"que ha acabat amb el client, o el servidor\n"
-"abans de completar una transacció."
+"s'ha provat d'executar una transacció de servidor en una conversa\n"
+"que ha estat finalitzada pel client, o el servidor\n"
+"ha finalitzat abans de completar una transacció."
#: ../src/msw/dde.cpp:1150
msgid "a transaction failed."
-msgstr "ha fallat una transacció"
+msgstr "no s'ha pogut executar una transacció."
#: ../src/common/accelcmn.cpp:189
msgid "alt"
@@ -8454,18 +8082,18 @@ msgid ""
"or an application initialized as APPCMD_CLIENTONLY has \n"
"attempted to perform server transactions."
msgstr ""
-"una aplicació començada com a APPCLASS_MONITOR ha\n"
-"intentat fer una transacció DDE,\n"
-"o bé una aplicació començada com a APPCMD_CLIENTONLY ha \n"
-"intentat fer transaccions de servidor."
+"una aplicació inicialitzada com a APPCLASS_MONITOR ha\n"
+"provat d'executar una transacció DDE,\n"
+"o bé una aplicació inicialitzada com a APPCMD_CLIENTONLY ha \n"
+"provat d'executar transaccions de servidor."
#: ../src/msw/dde.cpp:1156
msgid "an internal call to the PostMessage function has failed. "
-msgstr "ha fallat una trucada interna cap a la funció PostMessage"
+msgstr "ha fallat una crida interna a la funció PostMessage. "
#: ../src/msw/dde.cpp:1165
msgid "an internal error has occurred in the DDEML."
-msgstr "Hi ha hagut un error intern en el DDEML."
+msgstr "s'ha produït un error intern al DDEML."
#: ../src/msw/dde.cpp:1171
msgid ""
@@ -8473,30 +8101,30 @@ msgid ""
"Once the application has returned from an XTYP_XACT_COMPLETE callback,\n"
"the transaction identifier for that callback is no longer valid."
msgstr ""
-"s'ha passat a función DDEML un identificador de transacció no và lid.\n"
-"un cop que l'aplicació ha tornat d'una trucada XTYP_XACT_COMPLETE, \n"
-"l'identificador de transacció d'aquesta trucada ja no és và lid."
+"s'ha passat un identificador de transacció invà lid a una funció DDEML.\n"
+"Un cop que l'aplicació ha retornat d'una crida XTYP_XACT_COMPLETE, \n"
+"l'identificador de transacció d'aquesta crida ja no és và lid."
#: ../src/common/zipstrm.cpp:1483
msgid "assuming this is a multi-part zip concatenated"
-msgstr ""
+msgstr "s'assumeix que això és un zip multipart concatenat"
#: ../src/common/fileconf.cpp:1847
#, c-format
msgid "attempt to change immutable key '%s' ignored."
-msgstr "intent de canviar la clau immutable '%s' ignorat."
+msgstr "s'ha ignorat l'intent de canviar la clau immutable '%s'."
#: ../src/html/chm.cpp:329
msgid "bad arguments to library function"
-msgstr ""
+msgstr "arguments erronis per a una funció de la biblioteca"
#: ../src/html/chm.cpp:341
msgid "bad signature"
-msgstr ""
+msgstr "signatura errònia"
#: ../src/common/zipstrm.cpp:1918
msgid "bad zipfile offset to entry"
-msgstr ""
+msgstr "desplaçament a l'entrada del fitxer zip erroni"
#: ../src/common/ftp.cpp:403
msgid "binary"
@@ -8509,53 +8137,52 @@ msgstr "negreta"
#: ../src/msw/utils.cpp:1144
#, c-format
msgid "build %lu"
-msgstr ""
+msgstr "compilació %lu"
#: ../src/common/ffile.cpp:75
#, c-format
msgid "can't close file '%s'"
-msgstr "no s'ha pogut tancar el fitxer '%s'"
+msgstr "no es pot tancar el fitxer '%s'"
#: ../src/common/file.cpp:245
#, c-format
msgid "can't close file descriptor %d"
-msgstr "no s'ha pogut tancar el descriptor de fitxer %d"
+msgstr "no es pot tancar el descriptor de fitxer %d"
#: ../src/common/file.cpp:586
#, c-format
msgid "can't commit changes to file '%s'"
-msgstr "no es pot confiar canvis al fitxer '%s'"
+msgstr "no es poden publicar els canvis al fitxer '%s'"
#: ../src/common/file.cpp:178
#, c-format
msgid "can't create file '%s'"
-msgstr "no s'ha pot crear el fitxer '%s'"
+msgstr "no es pot crear el fitxer '%s'"
#: ../src/common/fileconf.cpp:1141
#, c-format
msgid "can't delete user configuration file '%s'"
-msgstr "no s'ha pogut eliminar el fitxer de configuració '%s' d'usuari"
+msgstr "no es pot suprimir el fitxer de configuració de l'usuari '%s'"
#: ../src/common/file.cpp:495
#, c-format
msgid "can't determine if the end of file is reached on descriptor %d"
msgstr ""
-"no es pot determinar si s'ha arribat al final del fitxer amb el descriptor %d"
+"no es pot determinar si s'ha arribat al final del fitxer al descriptor %d"
#: ../src/common/zipstrm.cpp:1692
-#, fuzzy
msgid "can't find central directory in zip"
-msgstr "No es pot trobar la posició actual en el fitxer '%s'"
+msgstr "no es pot trobar el directori central al zip"
#: ../src/common/file.cpp:465
#, c-format
msgid "can't find length of file on file descriptor %d"
-msgstr ""
-"no es pot trobar la llargà ria del fitxer en el descriptor del fitxer %d"
+msgstr "no es pot trobar la llargada del fitxer al descriptor del fitxer %d"
#: ../src/msw/utils.cpp:341
msgid "can't find user's HOME, using current directory."
-msgstr "no es pot trobar la CASA de l'usuari utilitzant el directori actual."
+msgstr ""
+"no es pot trobar el directori de l'usuari, s'utilitzarà el directori actual."
#: ../src/common/file.cpp:366
#, c-format
@@ -8565,16 +8192,16 @@ msgstr "no es pot buidar el descriptor del fitxer %d"
#: ../src/common/file.cpp:422
#, c-format
msgid "can't get seek position on file descriptor %d"
-msgstr "no es pot cercar en el descriptor del fitxer %d"
+msgstr "no es pot cercar la posició al descriptor de fitxer %d"
#: ../src/common/fontmap.cpp:325
msgid "can't load any font, aborting"
-msgstr "no s'ha pogut carregar cap font, s'està avortant"
+msgstr "no es pot carregar cap tipus de lletra, s'avorta"
#: ../src/common/file.cpp:231 ../src/common/ffile.cpp:59
#, c-format
msgid "can't open file '%s'"
-msgstr "no s'ha pogut obrir el fitxer '%s'"
+msgstr "no es pot obrir el fitxer '%s'"
#: ../src/common/fileconf.cpp:320
#, c-format
@@ -8584,68 +8211,67 @@ msgstr "no es pot obrir el fitxer de configuració global '%s'."
#: ../src/common/fileconf.cpp:336
#, c-format
msgid "can't open user configuration file '%s'."
-msgstr "no es pot obrir el fitxer de configuració d'usuari '%s'."
+msgstr "no es pot obrir el fitxer de configuració de l'usuari '%s'."
#: ../src/common/fileconf.cpp:986
msgid "can't open user configuration file."
msgstr "no es pot obrir el fitxer de configuració de l'usuari."
#: ../src/common/zipstrm.cpp:579
-#, fuzzy
msgid "can't re-initialize zlib deflate stream"
-msgstr "No es pot començar a mostrar."
+msgstr "no es pot reinicialitzar el flux de deflació de zlib"
#: ../src/common/zipstrm.cpp:604
-#, fuzzy
msgid "can't re-initialize zlib inflate stream"
-msgstr "No es pot començar a mostrar."
+msgstr "no es pot reinicialitzar el flux d'inflació de zlib"
#: ../src/common/file.cpp:304
-#, fuzzy, c-format
+#, c-format
msgid "can't read from file descriptor %d"
-msgstr "no es pot llegir des del fitxer descriptor %s"
+msgstr "no es pot llegir del descriptor de fitxer %d"
#: ../src/common/file.cpp:581
#, c-format
msgid "can't remove file '%s'"
-msgstr "no s'ha pogut extreure el fitxer '%s'"
+msgstr "no es pot suprimir el fitxer '%s'"
#: ../src/common/file.cpp:598
#, c-format
msgid "can't remove temporary file '%s'"
-msgstr "no es pot extreure el fitxer temporal '%s'"
+msgstr "no es pot suprimir el fitxer temporal '%s'"
#: ../src/common/file.cpp:408
#, c-format
msgid "can't seek on file descriptor %d"
-msgstr "no és pot cercar el fitxer descriptor de %d"
+msgstr "no es pot cercar el descriptor de fitxer %d"
#: ../src/common/textfile.cpp:273
#, c-format
msgid "can't write buffer '%s' to disk."
-msgstr "no es pot escriure el búfer '%s' al disc."
+msgstr "no es pot escriure la memòria intermèdia '%s' al disc."
#: ../src/common/file.cpp:323
#, c-format
msgid "can't write to file descriptor %d"
-msgstr "no es pot escriure en el fitxer descriptiu %d"
+msgstr "no es pot escriure al descriptor de fitxer %d"
#: ../src/common/fileconf.cpp:1000
msgid "can't write user configuration file."
-msgstr "no es pot escriure el fitxer de configuració de l'usuari"
+msgstr "no es pot escriure al fitxer de configuració de l'usuari."
#. TRANSLATORS: Checkbox state name
#: ../src/generic/treelist.cpp:482 ../src/generic/datavgen.cpp:1261
msgid "checked"
-msgstr ""
+msgstr "marcat"
#: ../src/html/chm.cpp:345
msgid "checksum error"
-msgstr ""
+msgstr "s'ha produït un error de suma de verificació"
#: ../src/common/tarstrm.cpp:820
msgid "checksum failure reading tar header block"
msgstr ""
+"ha fallat la suma de verificació en llegir el bloc de la capçalera de tar"
#: ../src/richtext/richtextbackgroundpage.cpp:226
#: ../src/richtext/richtextbackgroundpage.cpp:249
@@ -8679,19 +8305,19 @@ msgstr ""
#: ../src/richtext/richtextsizepage.cpp:625
#: ../src/richtext/richtextsizepage.cpp:660
msgid "cm"
-msgstr ""
+msgstr "cm"
#: ../src/html/chm.cpp:347
msgid "compression error"
-msgstr ""
+msgstr "s'ha produït un error de compressió"
#: ../src/common/regex.cpp:236
msgid "conversion to 8-bit encoding failed"
-msgstr ""
+msgstr "no s'ha pogut fer la conversió a una codificació de 8 bits"
#: ../src/common/accelcmn.cpp:187
msgid "ctrl"
-msgstr "control"
+msgstr "ctrl"
#: ../src/common/cmdline.cpp:1500
msgid "date"
@@ -8699,19 +8325,19 @@ msgstr "data"
#: ../src/html/chm.cpp:349
msgid "decompression error"
-msgstr ""
+msgstr "s'ha produït un error de descompressió"
#: ../src/richtext/richtextstyles.cpp:780 ../src/common/fmapbase.cpp:820
msgid "default"
-msgstr "predeterminat"
+msgstr "per defecte"
#: ../src/common/cmdline.cpp:1496
msgid "double"
-msgstr ""
+msgstr "doble"
#: ../src/common/debugrpt.cpp:538
msgid "dump of the process state (binary)"
-msgstr ""
+msgstr "bolcat de l'estat del procés (binari)"
#: ../src/common/datetimefmt.cpp:1969
msgid "eighteenth"
@@ -8728,41 +8354,39 @@ msgstr "onzè"
#: ../src/common/fileconf.cpp:1833
#, c-format
msgid "entry '%s' appears more than once in group '%s'"
-msgstr "l'entrada '%s' apareix més d'un cop en el grup '%s'"
+msgstr "l'entrada '%s' apareix més d'un cop al grup '%s'"
#: ../src/html/chm.cpp:343
-#, fuzzy
msgid "error in data format"
-msgstr "IFF: error en format d'imatge IFF."
+msgstr "error al format de dades"
#: ../src/html/chm.cpp:331
msgid "error opening file"
-msgstr "Error en llegir el fitxer '%s'"
+msgstr "s'ha produït un error en obrir el fitxer"
#: ../src/common/zipstrm.cpp:1778
-#, fuzzy
msgid "error reading zip central directory"
-msgstr "Error en crear directori"
+msgstr "s'ha produït un error en llegir el directori central del zip"
#: ../src/common/zipstrm.cpp:1870
msgid "error reading zip local header"
-msgstr ""
+msgstr "s'ha produït un error en llegir la capçalera local del zip"
#: ../src/common/zipstrm.cpp:2531
#, c-format
msgid "error writing zip entry '%s': bad crc or length"
msgstr ""
+"s'ha produït un error en escriure l'entrada zip '%s': crc o longitud invà lids"
#: ../src/common/ffile.cpp:188
#, c-format
msgid "failed to flush the file '%s'"
-msgstr "no s'ha pogut buidar la memòria del fitxer '%s'"
+msgstr "no s'ha pogut buidar el fitxer '%s'"
#. TRANSLATORS: Name of Boolean false value
#: ../src/generic/datavgen.cpp:1030
-#, fuzzy
msgid "false"
-msgstr "&Mida"
+msgstr "fals"
#: ../src/common/datetimefmt.cpp:1966
msgid "fifteenth"
@@ -8773,49 +8397,49 @@ msgid "fifth"
msgstr "cinquè"
#: ../src/common/fileconf.cpp:579
-#, fuzzy, c-format
+#, c-format
msgid "file '%s', line %zu: '%s' ignored after group header."
-msgstr "fitxer '%s', lÃnia %d: '%s' ignorada després de la capçalera de grup."
+msgstr ""
+"fitxer '%s', lÃnia %zu: s'ha ignorat '%s' després de la capçalera de grup."
#: ../src/common/fileconf.cpp:608
-#, fuzzy, c-format
+#, c-format
msgid "file '%s', line %zu: '=' expected."
-msgstr "fitxer '%s', lÃnia %d: '=' inesperat."
+msgstr "fitxer '%s', lÃnia %zu: '=' inesperat."
#: ../src/common/fileconf.cpp:631
-#, fuzzy, c-format
+#, c-format
msgid "file '%s', line %zu: key '%s' was first found at line %d."
msgstr ""
-"fitxer '%s', lÃnia %d: clau '%s' ha estat trobat per primer cop a la lÃnia "
+"fitxer '%s', lÃnia %zu: s'ha trobat la clau '%s' per primer cop a la lÃnia "
"%d."
#: ../src/common/fileconf.cpp:621
-#, fuzzy, c-format
+#, c-format
msgid "file '%s', line %zu: value for immutable key '%s' ignored."
-msgstr "fitxer '%s', lÃnia %d: valor per a clau immutable '%s' ignorat."
+msgstr ""
+"fitxer '%s', lÃnia %zu: s'ha ignorat el valor per a clau immutable '%s'."
#: ../src/common/fileconf.cpp:543
-#, fuzzy, c-format
+#, c-format
msgid "file '%s': unexpected character %c at line %zu."
-msgstr "fiitxer '%s': carà cter inesperat %c a la lÃnia %d."
+msgstr "fiitxer '%s': carà cter inesperat %c a la lÃnia %zu."
#: ../src/richtext/richtextbuffer.cpp:8738
-#, fuzzy
msgid "files"
-msgstr "&Mida"
+msgstr "fitxers"
#: ../src/common/datetimefmt.cpp:1952
msgid "first"
msgstr "primer"
#: ../src/html/helpwnd.cpp:1252
-#, fuzzy
msgid "font size"
-msgstr "Mida de la font:"
+msgstr "mida del tipus de lletra"
#: ../src/common/datetimefmt.cpp:1965
msgid "fourteenth"
-msgstr "catorzé"
+msgstr "catorzè"
#: ../src/common/datetimefmt.cpp:1955
msgid "fourth"
@@ -8827,34 +8451,32 @@ msgstr "genera missatges de registre detallats"
#: ../src/richtext/richtextbuffer.cpp:13138
#: ../src/richtext/richtextbuffer.cpp:13248
-#, fuzzy
msgid "image"
-msgstr "Temps"
+msgstr "imatge"
#: ../src/common/tarstrm.cpp:796
msgid "incomplete header block in tar"
-msgstr ""
+msgstr "bloc de capçalera incomplet al tar"
#: ../src/common/xtixml.cpp:489
msgid "incorrect event handler string, missing dot"
-msgstr ""
+msgstr "cadena de manegador d'esdeveniment incorrecte, hi manca un punt"
#: ../src/common/tarstrm.cpp:1381
msgid "incorrect size given for tar entry"
-msgstr ""
+msgstr "s'ha proporcionat una mida incorrecta per a una entrada del tar"
#: ../src/common/tarstrm.cpp:993
msgid "invalid data in extended tar header"
-msgstr ""
+msgstr "dades invà lides a la capçalera estesa del tar"
#: ../src/generic/logg.cpp:1030
msgid "invalid message box return value"
-msgstr "valor de retorn de la caixa de missatges invà lid"
+msgstr "valor de retorn de la capsa de missatges invà lid"
#: ../src/common/zipstrm.cpp:1647
-#, fuzzy
msgid "invalid zip file"
-msgstr "Fitxer de bloqueig '%s' invà lid."
+msgstr "fitxer zip invà lid"
#: ../src/common/fontcmn.cpp:1001
msgid "italic"
@@ -8862,16 +8484,16 @@ msgstr "cursiva"
#: ../src/common/fontcmn.cpp:991
msgid "light"
-msgstr "clar"
+msgstr "prima"
#: ../src/common/intl.cpp:303
#, c-format
msgid "locale '%s' cannot be set."
-msgstr "la localització '%s' no es pot fixar"
+msgstr "no es pot definir la configuració local '%s'."
#: ../src/common/datetimefmt.cpp:2125
msgid "midnight"
-msgstr "mitja nit"
+msgstr "mitjanit"
#: ../src/common/datetimefmt.cpp:1970
msgid "nineteenth"
@@ -8883,17 +8505,18 @@ msgstr "novè"
#: ../src/msw/dde.cpp:1116
msgid "no DDE error."
-msgstr "no hi ha error DDE."
+msgstr "no hi ha cap error DDE."
#: ../src/html/chm.cpp:327
-#, fuzzy
msgid "no error"
-msgstr "error desconegut"
+msgstr "no hi ha cap error"
#: ../src/dfb/fontmgr.cpp:174
#, c-format
msgid "no fonts found in %s, using builtin font"
msgstr ""
+"no s'ha trobat cap tipus de lletra a %s, es farà servir el tipus de lletra "
+"integrat"
#: ../src/html/helpdata.cpp:657
msgid "noname"
@@ -8904,9 +8527,8 @@ msgid "noon"
msgstr "migdia"
#: ../src/richtext/richtextstyles.cpp:779
-#, fuzzy
msgid "normal"
-msgstr "Normal"
+msgstr "normal"
#: ../src/common/cmdline.cpp:1492
msgid "num"
@@ -8914,16 +8536,15 @@ msgstr "núm."
#: ../src/common/xtixml.cpp:259
msgid "objects cannot have XML Text Nodes"
-msgstr ""
+msgstr "els objectes no poden tenir nodes XML de text"
#: ../src/html/chm.cpp:339
-#, fuzzy
msgid "out of memory"
-msgstr "GIF: No hi ha prou memòria"
+msgstr "s'ha esgotat la memòria"
#: ../src/common/debugrpt.cpp:514
msgid "process context description"
-msgstr ""
+msgstr "descripció del context del procés"
#: ../src/richtext/richtextbackgroundpage.cpp:227
#: ../src/richtext/richtextbackgroundpage.cpp:250
@@ -8941,7 +8562,7 @@ msgstr ""
#: ../src/richtext/richtextborderspage.cpp:525
#: ../src/richtext/richtextborderspage.cpp:593
msgid "pt"
-msgstr ""
+msgstr "pt"
#: ../src/richtext/richtextbackgroundpage.cpp:225
#: ../src/richtext/richtextbackgroundpage.cpp:228
@@ -9038,27 +8659,25 @@ msgstr ""
#: ../src/richtext/richtextsizepage.cpp:662
#: ../src/richtext/richtextsizepage.cpp:663
msgid "px"
-msgstr ""
+msgstr "px"
#: ../src/common/accelcmn.cpp:193
-#, fuzzy
msgid "rawctrl"
-msgstr "control"
+msgstr "rawctrl"
#: ../src/html/chm.cpp:333
-#, fuzzy
msgid "read error"
-msgstr "Error de fitxer"
+msgstr "s'ha produït un error de lectura"
#: ../src/common/zipstrm.cpp:2085
#, c-format
msgid "reading zip stream (entry %s): bad crc"
-msgstr ""
+msgstr "en llegir el flux zip (entrada %s): crc erroni"
#: ../src/common/zipstrm.cpp:2080
#, c-format
msgid "reading zip stream (entry %s): bad length"
-msgstr ""
+msgstr "en llegir el flux zip (entrada %s): longitud errònia"
#: ../src/msw/dde.cpp:1159
msgid "reentrancy problem."
@@ -9069,9 +8688,8 @@ msgid "second"
msgstr "segon"
#: ../src/html/chm.cpp:337
-#, fuzzy
msgid "seek error"
-msgstr "Error de fitxer"
+msgstr "s'ha produït un error de cerca"
#: ../src/common/datetimefmt.cpp:1968
msgid "seventeenth"
@@ -9083,7 +8701,7 @@ msgstr "setè"
#: ../src/common/accelcmn.cpp:191
msgid "shift"
-msgstr "Shift"
+msgstr "maj"
#: ../src/common/appbase.cpp:773
msgid "show this help message"
@@ -9103,32 +8721,31 @@ msgstr "especifiqueu el mode de pantalla a utilitzar (p. ex. 640x480-16)"
#: ../src/common/appcmn.cpp:220
msgid "specify the theme to use"
-msgstr "especifica el tema a utilitzar"
+msgstr "especifiqueu el tema a utilitzar"
#: ../src/richtext/richtextbuffer.cpp:9340
msgid "standard/circle"
-msgstr ""
+msgstr "està ndard/cercle"
#: ../src/richtext/richtextbuffer.cpp:9341
msgid "standard/circle-outline"
-msgstr ""
+msgstr "està ndard/circumferència"
#: ../src/richtext/richtextbuffer.cpp:9343
msgid "standard/diamond"
-msgstr ""
+msgstr "està ndard/diamant"
#: ../src/richtext/richtextbuffer.cpp:9342
msgid "standard/square"
-msgstr ""
+msgstr "està ndard/quadrat"
#: ../src/richtext/richtextbuffer.cpp:9344
msgid "standard/triangle"
-msgstr ""
+msgstr "està ndard/triangle"
#: ../src/common/zipstrm.cpp:1985
-#, fuzzy
msgid "stored file length not in Zip header"
-msgstr "Format no suportat de porta-retalls"
+msgstr "la mida del fitxer emmagatzemat no és a la capçalera del Zip"
#: ../src/common/cmdline.cpp:1488
msgid "str"
@@ -9136,12 +8753,12 @@ msgstr "str"
#: ../src/common/fontcmn.cpp:982
msgid "strikethrough"
-msgstr ""
+msgstr "ratllat"
#: ../src/common/tarstrm.cpp:1003 ../src/common/tarstrm.cpp:1025
#: ../src/common/tarstrm.cpp:1507 ../src/common/tarstrm.cpp:1529
msgid "tar entry not open"
-msgstr ""
+msgstr "entrada tar no oberta"
#: ../src/common/datetimefmt.cpp:1961
msgid "tenth"
@@ -9150,7 +8767,7 @@ msgstr "desè"
#: ../src/msw/dde.cpp:1123
msgid "the response to the transaction caused the DDE_FBUSY bit to be set."
msgstr ""
-"la resposta a la transacció causada per la DDE_FBUSY s'ha de fixar una mica."
+"la resposta a la transacció ha provocat que es defineixi el bit DDE_FBUSY."
#: ../src/common/datetimefmt.cpp:1954
msgid "third"
@@ -9171,16 +8788,16 @@ msgstr "demà "
#: ../src/common/fileconf.cpp:1944
#, c-format
msgid "trailing backslash ignored in '%s'"
-msgstr ""
+msgstr "s'ha ignorat la barra inversa al final a '%s'"
#: ../src/gtk/aboutdlg.cpp:218
msgid "translator-credits"
-msgstr ""
+msgstr "Eduard Ereza MartÃnez "
#. TRANSLATORS: Name of Boolean true value
#: ../src/generic/datavgen.cpp:1028
msgid "true"
-msgstr ""
+msgstr "cert"
#: ../src/common/datetimefmt.cpp:1963
msgid "twelfth"
@@ -9193,7 +8810,7 @@ msgstr "vintè"
#. TRANSLATORS: Checkbox state name
#: ../src/generic/treelist.cpp:486 ../src/generic/datavgen.cpp:1263
msgid "unchecked"
-msgstr ""
+msgstr "no marcat"
#: ../src/common/fontcmn.cpp:802 ../src/common/fontcmn.cpp:978
msgid "underlined"
@@ -9201,19 +8818,17 @@ msgstr "subratllat"
#. TRANSLATORS: Checkbox state name
#: ../src/generic/treelist.cpp:490
-#, fuzzy
msgid "undetermined"
-msgstr "subratllat"
+msgstr "indeterminat"
#: ../src/common/fileconf.cpp:1979
#, c-format
msgid "unexpected \" at position %d in '%s'."
-msgstr "no esperat \" a la posició %d de '%s'."
+msgstr "\" inesperat a la posició %d de '%s'."
#: ../src/common/tarstrm.cpp:1045
-#, fuzzy
msgid "unexpected end of file"
-msgstr "Fi de fitxer inesperat en analitzar el recurs."
+msgstr "final del fitxer inesperat"
#: ../src/generic/progdlgg.cpp:370 ../src/common/tarstrm.cpp:371
#: ../src/common/tarstrm.cpp:394 ../src/common/tarstrm.cpp:425
@@ -9221,23 +8836,23 @@ msgid "unknown"
msgstr "desconegut"
#: ../src/msw/registry.cpp:150
-#, fuzzy, c-format
+#, c-format
msgid "unknown (%lu)"
-msgstr "desconegut"
+msgstr "desconegut (%lu)"
#: ../src/common/xtixml.cpp:253
-#, fuzzy, c-format
+#, c-format
msgid "unknown class %s"
-msgstr ": joc de carà cters desconegut"
+msgstr "classe %s desconeguda"
#: ../src/common/regex.cpp:258 ../src/html/chm.cpp:351
msgid "unknown error"
-msgstr "error desconegut"
+msgstr "s'ha produït un error desconegut"
#: ../src/msw/dialup.cpp:471
#, c-format
msgid "unknown error (error code %08x)."
-msgstr "error desconegut (error de codi %08x)."
+msgstr "s'ha produït un error desconegut (codi d'error %08x)."
#: ../src/common/fmapbase.cpp:834
#, c-format
@@ -9251,21 +8866,20 @@ msgstr "sense nom"
#: ../src/common/docview.cpp:1624
#, c-format
msgid "unnamed%d"
-msgstr "%d sense nom"
+msgstr "sense nom %d"
#: ../src/common/zipstrm.cpp:1999 ../src/common/zipstrm.cpp:2319
msgid "unsupported Zip compression method"
-msgstr ""
+msgstr "mètode de compressió Zip no suportat"
#: ../src/common/translation.cpp:1892
#, c-format
msgid "using catalog '%s' from '%s'."
-msgstr "s'està utilitzant el catà leg '%s' des de '%s'."
+msgstr "s'utilitzarà el catà leg '%s' de '%s'."
#: ../src/html/chm.cpp:335
-#, fuzzy
msgid "write error"
-msgstr "Error de fitxer"
+msgstr "s'ha produït un error d'escriptura"
#: ../src/common/time.cpp:292
msgid "wxGetTimeOfDay failed."
@@ -9274,29 +8888,29 @@ msgstr "wxGetTimeOfDay ha fallat."
#: ../src/motif/app.cpp:242
#, c-format
msgid "wxWidgets could not open display for '%s': exiting."
-msgstr "wxWidgets no podia obrir l'aplicació per '%s'; s'està sortint."
+msgstr "wxWidgets no ha pogut obrir la pantalla de '%s': se sortirà ."
#: ../src/x11/app.cpp:170
msgid "wxWidgets could not open display. Exiting."
-msgstr "wxWidgets no podien obrien l'exhibició. S'està sortint."
+msgstr "wxWidgets no ha pogut obrir la pantalla. Se sortirà ."
#: ../src/richtext/richtextsymboldlg.cpp:434
msgid "xxxx"
-msgstr ""
+msgstr "xxxx"
#: ../src/common/datetimefmt.cpp:1759
msgid "yesterday"
msgstr "ahir"
#: ../src/common/zstream.cpp:251 ../src/common/zstream.cpp:426
-#, fuzzy, c-format
+#, c-format
msgid "zlib error %d"
-msgstr " (error %ld: %s)"
+msgstr "s'ha produït un error de zlib %d"
#: ../src/richtext/richtextliststylepage.cpp:496
#: ../src/richtext/richtextbulletspage.cpp:288
msgid "~"
-msgstr ""
+msgstr "~"
#, fuzzy
#~ msgid "Column could not be added."
diff --git a/misc/scripts/makemswtags.bat b/misc/scripts/makemswtags.bat
index 22bc2a46f4..e54f016b0a 100755
--- a/misc/scripts/makemswtags.bat
+++ b/misc/scripts/makemswtags.bat
@@ -1 +1 @@
-@ctags.exe --totals --language-force=c++ --c++-types=+p -I ./misc/scripts/ctags.ignore include/wx/*.h include/wx/aui/*.h include/wx/msw/*.h include/wx/msw/ole/*.h include/wx/msw/private/*.h include/wx/generic/private/*.h include/wx/generic/*.h include/wx/html/*.h include/wx/private/*.h include/wx/propgrid/*.h include/wx/protocol/*.h include/wx/ribbon/*.h include/wx/richtext/*.h include/wx/xml/*.h include/wx/xrc/*.h src/aui/*.cpp src/common/*.cpp src/generic/*.cpp src/msw/*.cpp src/msw/ole/*.cpp src/html/*.cpp src/propgrid/*.cpp src/ribbon/*.cpp src/richtext/*.cpp src/xml/*.cpp src/xrc/*.cpp
+@ctags.exe --totals --language-force=c++ --c++-types=+p -I ./misc/scripts/ctags.ignore --exclude=src/android --exclude=src/dfb --exclude=src/gtk --exclude=src/gtk1 --exclude=src/motif --exclude=src/osx --exclude=src/qt --exclude=src/univ --exclude=src/unix--exclude=src/x11 --exclude=include/wx/android --exclude=include/wx/dfb --exclude=include/wx/gtk --exclude=include/wx/gtk1 --exclude=include/wx/motif --exclude=include/wx/osx --exclude=include/wx/qt --exclude=include/wx/univ --exclude=include/wx/unix--exclude=include/wx/x11 include src
diff --git a/misc/scripts/run_sed_common.sh b/misc/scripts/run_sed_common.sh
index e3599732fe..2c0793fc58 100644
--- a/misc/scripts/run_sed_common.sh
+++ b/misc/scripts/run_sed_common.sh
@@ -37,6 +37,7 @@ run_sed() {
rm $filename.$$
msgc "unchanged"
else
+ chmod --reference=$filename $filename.$$
mv $filename.$$ $filename
msgc "done"
fi
diff --git a/samples/access/Makefile.in b/samples/access/Makefile.in
index bd39dd5ccb..8469b977f6 100644
--- a/samples/access/Makefile.in
+++ b/samples/access/Makefile.in
@@ -32,7 +32,9 @@ TOOLCHAIN_FULLNAME = @TOOLCHAIN_FULLNAME@
EXTRALIBS = @EXTRALIBS@
EXTRALIBS_XML = @EXTRALIBS_XML@
EXTRALIBS_GUI = @EXTRALIBS_GUI@
-CXXWARNINGS = @CXXWARNINGS@
+WX_CPPFLAGS = @WX_CPPFLAGS@
+WX_CXXFLAGS = @WX_CXXFLAGS@
+WX_LDFLAGS = @WX_LDFLAGS@
HOST_SUFFIX = @HOST_SUFFIX@
SAMPLES_RPATH_FLAG = @SAMPLES_RPATH_FLAG@
SAMPLES_CXXFLAGS = @SAMPLES_CXXFLAGS@
@@ -44,10 +46,10 @@ DESTDIR =
WX_RELEASE = 3.1
WX_VERSION = $(WX_RELEASE).4
LIBDIRNAME = $(wx_top_builddir)/lib
-ACCESSTEST_CXXFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ACCESSTEST_CXXFLAGS = $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) -I$(srcdir) $(__DLLFLAG_p) -I$(srcdir)/../../samples \
- $(CXXWARNINGS) $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(WX_CXXFLAGS) $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
ACCESSTEST_OBJECTS = \
$(__accesstest___win32rc) \
accesstest_accesstest.o
@@ -150,7 +152,7 @@ distclean: clean
rm -f config.cache config.log config.status bk-deps bk-make-pch shared-ld-sh Makefile
accesstest$(EXEEXT): $(ACCESSTEST_OBJECTS) $(__accesstest___win32rc)
- $(CXX) -o $@ $(ACCESSTEST_OBJECTS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
+ $(CXX) -o $@ $(ACCESSTEST_OBJECTS) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
$(__accesstest___os2_emxbindcmd)
@COND_PLATFORM_MACOSX_1@accesstest.app/Contents/PkgInfo: accesstest$(EXEEXT) $(top_srcdir)/src/osx/carbon/Info.plist.in $(top_srcdir)/src/osx/carbon/wxmac.icns
diff --git a/samples/access/access_vc7.vcproj b/samples/access/access_vc7.vcproj
index 789ee50059..2224233e1c 100644
--- a/samples/access/access_vc7.vcproj
+++ b/samples/access/access_vc7.vcproj
@@ -45,7 +45,7 @@
Name="VCCustomBuildTool"/>
Append(ID_SET_BGCOLOR, "Set background colour...",
"Sets the background colour of the control");
+#ifdef wxHAS_NATIVE_ANIMATIONCTRL
+ play_menu->AppendSeparator();
+ play_menu->AppendCheckItem(ID_USE_GENERIC, "Use &generic animation\tCtrl+G",
+ "Selects whether native or generic version is used");
+#endif // wxHAS_NATIVE_ANIMATIONCTRL
+
wxMenu *help_menu = new wxMenu;
help_menu->Append(wxID_ABOUT);
@@ -213,25 +226,7 @@ void MyFrame::OnSetNoAutoResize(wxCommandEvent& event)
if (style != m_animationCtrl->GetWindowStyle())
{
- // save status of the control before destroying it
- wxAnimation curr = m_animationCtrl->GetAnimation();
- wxBitmap inactive = m_animationCtrl->GetInactiveBitmap();
- wxColour bg = m_animationCtrl->GetBackgroundColour();
-
- // destroy & rebuild
- wxAnimationCtrl *old = m_animationCtrl;
- m_animationCtrl = new wxAnimationCtrl(this, wxID_ANY, curr,
- wxDefaultPosition, wxDefaultSize,
- style);
-
- GetSizer()->Replace(old, m_animationCtrl);
- delete old;
-
- // load old status in new control
- m_animationCtrl->SetInactiveBitmap(inactive);
- m_animationCtrl->SetBackgroundColour(bg);
-
- GetSizer()->Layout();
+ RecreateAnimation(style);
}
}
@@ -244,6 +239,58 @@ void MyFrame::OnSetBgColor(wxCommandEvent& WXUNUSED(event))
m_animationCtrl->SetBackgroundColour(clr);
}
+void MyFrame::RecreateAnimation(long style)
+{
+ // save status of the control before destroying it
+
+ // We can't reuse the existing animation if we're switching from native to
+ // generic control or vice versa (as indicated by the absence of change in
+ // the style, which is the only other reason we can get called). We could
+ // save the file name we loaded it from and recreate it, of course, but for
+ // now, for simplicity, just start without any animation in this case.
+ wxAnimation curr;
+#ifdef wxHAS_NATIVE_ANIMATIONCTRL
+ if ( style != m_animationCtrl->GetWindowStyle() )
+ curr = m_animationCtrl->GetAnimation();
+#endif // wxHAS_NATIVE_ANIMATIONCTRL
+
+ wxBitmap inactive = m_animationCtrl->GetInactiveBitmap();
+ wxColour bg = m_animationCtrl->GetBackgroundColour();
+
+ // destroy & rebuild
+ wxAnimationCtrlBase *old = m_animationCtrl;
+
+#ifdef wxHAS_NATIVE_ANIMATIONCTRL
+ if ( GetMenuBar()->IsChecked(ID_USE_GENERIC) )
+ m_animationCtrl = new wxGenericAnimationCtrl(this, wxID_ANY, curr,
+ wxDefaultPosition,
+ wxDefaultSize,
+ style);
+ else
+#endif // wxHAS_NATIVE_ANIMATIONCTRL
+ m_animationCtrl = new wxAnimationCtrl(this, wxID_ANY, curr,
+ wxDefaultPosition, wxDefaultSize,
+ style);
+
+ GetSizer()->Replace(old, m_animationCtrl);
+ delete old;
+
+ // load old status in new control
+ m_animationCtrl->SetInactiveBitmap(inactive);
+ m_animationCtrl->SetBackgroundColour(bg);
+
+ GetSizer()->Layout();
+}
+
+#ifdef wxHAS_NATIVE_ANIMATIONCTRL
+
+void MyFrame::OnUseGeneric(wxCommandEvent& WXUNUSED(event))
+{
+ RecreateAnimation(m_animationCtrl->GetWindowStyle());
+}
+
+#endif // wxHAS_NATIVE_ANIMATIONCTRL
+
void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
{
Close();
@@ -272,15 +319,7 @@ void MyFrame::OnOpen(wxCommandEvent& WXUNUSED(event))
{
wxString filename(dialog.GetPath());
- // enable one of the two chunk of codes to test different parts of wxAnimation/wxAnimationCtrl
-#if 0
- if (m_animationCtrl->LoadFile(filename))
- m_animationCtrl->Play();
- else
- wxMessageBox("Sorry, this animation is not a valid format for wxAnimation.");
-#else
- #if 0
- wxAnimation temp;
+ wxAnimation temp(m_animationCtrl->CreateAnimation());
if (!temp.LoadFile(filename))
{
wxLogError("Sorry, this animation is not a valid format for wxAnimation.");
@@ -289,25 +328,6 @@ void MyFrame::OnOpen(wxCommandEvent& WXUNUSED(event))
m_animationCtrl->SetAnimation(temp);
m_animationCtrl->Play();
- #else
- wxFileInputStream stream(filename);
- if (!stream.IsOk())
- {
- wxLogError("Sorry, this animation is not a valid format for wxAnimation.");
- return;
- }
-
- wxAnimation temp;
- if (!temp.Load(stream))
- {
- wxLogError("Sorry, this animation is not a valid format for wxAnimation.");
- return;
- }
-
- m_animationCtrl->SetAnimation(temp);
- m_animationCtrl->Play();
- #endif
-#endif
GetSizer()->Layout();
}
diff --git a/samples/animate/anitest.h b/samples/animate/anitest.h
index 330d10acd5..505dfdb305 100644
--- a/samples/animate/anitest.h
+++ b/samples/animate/anitest.h
@@ -36,17 +36,20 @@ public:
void OnSetBgColor(wxCommandEvent& event);
void OnStop(wxCommandEvent& event);
+#ifdef wxHAS_NATIVE_ANIMATIONCTRL
+ void OnUseGeneric(wxCommandEvent& event);
+#endif // wxHAS_NATIVE_ANIMATIONCTRL
+
void OnUpdateUI(wxUpdateUIEvent& event);
#if wxUSE_FILEDLG
void OnOpen(wxCommandEvent& event);
#endif // wxUSE_FILEDLG
- wxAnimationCtrl* GetAnimationCtrl() const { return m_animationCtrl; }
-
-protected:
- wxAnimationCtrl* m_animationCtrl;
-
private:
+ void RecreateAnimation(long style);
+
+ wxAnimationCtrlBase* m_animationCtrl;
+
wxDECLARE_EVENT_TABLE();
};
diff --git a/samples/animate/anitest_vc7.vcproj b/samples/animate/anitest_vc7.vcproj
index a60b0d94d6..789b307ba7 100644
--- a/samples/animate/anitest_vc7.vcproj
+++ b/samples/animate/anitest_vc7.vcproj
@@ -45,7 +45,7 @@
Name="VCCustomBuildTool"/>
Append(#id, (void*)id);
+ choice->Append(#id, const_cast(static_cast(id)));
#define ART_ICON(id) \
{ \
int ind; \
diff --git a/samples/artprov/artprov_vc7.vcproj b/samples/artprov/artprov_vc7.vcproj
index bbb4f9a63a..25b1419f62 100644
--- a/samples/artprov/artprov_vc7.vcproj
+++ b/samples/artprov/artprov_vc7.vcproj
@@ -45,7 +45,7 @@
Name="VCCustomBuildTool"/>
(this);
model->m_classicalMusicIsKnownToControl = true;
}
diff --git a/samples/debugrpt/Makefile.in b/samples/debugrpt/Makefile.in
index a031cc04eb..2430468262 100644
--- a/samples/debugrpt/Makefile.in
+++ b/samples/debugrpt/Makefile.in
@@ -32,7 +32,9 @@ TOOLCHAIN_FULLNAME = @TOOLCHAIN_FULLNAME@
EXTRALIBS = @EXTRALIBS@
EXTRALIBS_XML = @EXTRALIBS_XML@
EXTRALIBS_GUI = @EXTRALIBS_GUI@
-CXXWARNINGS = @CXXWARNINGS@
+WX_CPPFLAGS = @WX_CPPFLAGS@
+WX_CXXFLAGS = @WX_CXXFLAGS@
+WX_LDFLAGS = @WX_LDFLAGS@
HOST_SUFFIX = @HOST_SUFFIX@
SAMPLES_RPATH_FLAG = @SAMPLES_RPATH_FLAG@
SAMPLES_CXXFLAGS = @SAMPLES_CXXFLAGS@
@@ -44,10 +46,10 @@ DESTDIR =
WX_RELEASE = 3.1
WX_VERSION = $(WX_RELEASE).4
LIBDIRNAME = $(wx_top_builddir)/lib
-DEBUGRPT_CXXFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+DEBUGRPT_CXXFLAGS = $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
$(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
$(__THREAD_DEFINE_p) -I$(srcdir) $(__DLLFLAG_p) -I$(srcdir)/../../samples \
- $(CXXWARNINGS) $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+ $(WX_CXXFLAGS) $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
DEBUGRPT_OBJECTS = \
$(__debugrpt___win32rc) \
debugrpt_debugrpt.o
@@ -156,7 +158,7 @@ distclean: clean
rm -f config.cache config.log config.status bk-deps bk-make-pch shared-ld-sh Makefile
debugrpt$(EXEEXT): $(DEBUGRPT_OBJECTS) $(__debugrpt___win32rc)
- $(CXX) -o $@ $(DEBUGRPT_OBJECTS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_QA_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_XML_p) $(EXTRALIBS_XML) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
+ $(CXX) -o $@ $(DEBUGRPT_OBJECTS) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_QA_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_XML_p) $(EXTRALIBS_XML) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
$(__debugrpt___os2_emxbindcmd)
@COND_PLATFORM_MACOSX_1@debugrpt.app/Contents/PkgInfo: debugrpt$(EXEEXT) $(top_srcdir)/src/osx/carbon/Info.plist.in $(top_srcdir)/src/osx/carbon/wxmac.icns
diff --git a/samples/debugrpt/debugrpt_vc7.vcproj b/samples/debugrpt/debugrpt_vc7.vcproj
index f0a510f84a..eb00af8ecb 100644
--- a/samples/debugrpt/debugrpt_vc7.vcproj
+++ b/samples/debugrpt/debugrpt_vc7.vcproj
@@ -45,7 +45,7 @@
Name="VCCustomBuildTool"/>
Draw(dc);
dc.SelectObject(wxNullBitmap);
- DnDShapeDataObject *self = (DnDShapeDataObject *)this; // const_cast
+ DnDShapeDataObject* self = const_cast(this);
self->m_dobjBitmap.SetBitmap(bitmap);
self->m_hasBitmap = true;
}
diff --git a/samples/dnd/dnd_vc7.vcproj b/samples/dnd/dnd_vc7.vcproj
index 53896ea842..a323f6d5e6 100644
--- a/samples/dnd/dnd_vc7.vcproj
+++ b/samples/dnd/dnd_vc7.vcproj
@@ -45,7 +45,7 @@
Name="VCCustomBuildTool"/>
CFBundleExecutable
$(PRODUCT_NAME)
CFBundleGetInfoString
- $(PRODUCT_NAME) version 3.1.4, (c) 2005-2019 wxWidgets
+ $(PRODUCT_NAME) version 3.1.4, (c) 2005-2020 wxWidgets
CFBundleIconFile
doc
CFBundleIdentifier
@@ -66,7 +66,7 @@
it
CFBundleLongVersionString
- 3.1.4, (c) 2005-2019 wxWidgets
+ 3.1.4, (c) 2005-2020 wxWidgets
CFBundleName
$(PRODUCT_NAME)
CFBundlePackageType
@@ -82,6 +82,6 @@
LSRequiresCarbon
NSHumanReadableCopyright
- Copyright 2005-2019 wxWidgets
+ Copyright 2005-2020 wxWidgets
diff --git a/samples/docview/Makefile.in b/samples/docview/Makefile.in
index bb7f8a705a..041198cbea 100644
--- a/samples/docview/Makefile.in
+++ b/samples/docview/Makefile.in
@@ -32,7 +32,9 @@ TOOLCHAIN_FULLNAME = @TOOLCHAIN_FULLNAME@
EXTRALIBS = @EXTRALIBS@
EXTRALIBS_XML = @EXTRALIBS_XML@
EXTRALIBS_GUI = @EXTRALIBS_GUI@
-CXXWARNINGS = @CXXWARNINGS@
+WX_CPPFLAGS = @WX_CPPFLAGS@
+WX_CXXFLAGS = @WX_CXXFLAGS@
+WX_LDFLAGS = @WX_LDFLAGS@
HOST_SUFFIX = @HOST_SUFFIX@
SAMPLES_RPATH_FLAG = @SAMPLES_RPATH_FLAG@
SAMPLES_CXXFLAGS = @SAMPLES_CXXFLAGS@
@@ -44,10 +46,10 @@ DESTDIR =
WX_RELEASE = 3.1
WX_VERSION = $(WX_RELEASE).4
LIBDIRNAME = $(wx_top_builddir)/lib
-DOCVIEW_CXXFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
- -I$(srcdir) $(__DLLFLAG_p) -I$(srcdir)/../../samples $(CXXWARNINGS) \
- $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+DOCVIEW_CXXFLAGS = $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -I$(srcdir) $(__DLLFLAG_p) -I$(srcdir)/../../samples \
+ $(WX_CXXFLAGS) $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
DOCVIEW_OBJECTS = \
docview_docview.o \
docview_doc.o \
@@ -155,7 +157,7 @@ distclean: clean
rm -f config.cache config.log config.status bk-deps bk-make-pch shared-ld-sh Makefile
docview$(EXEEXT): $(DOCVIEW_OBJECTS) $(__docview___win32rc)
- $(CXX) -o $@ $(DOCVIEW_OBJECTS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_AUI_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
+ $(CXX) -o $@ $(DOCVIEW_OBJECTS) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_AUI_p) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
$(__docview___os2_emxbindcmd)
@COND_PLATFORM_MACOSX_1@docview.app/Contents/PkgInfo: docview$(EXEEXT) $(srcdir)/Info.plist.in $(srcdir)/doc.icns $(srcdir)/chart.icns $(srcdir)/notepad.icns
diff --git a/samples/docview/docview_vc7.vcproj b/samples/docview/docview_vc7.vcproj
index 8d4f3198c8..cd439da1ab 100644
--- a/samples/docview/docview_vc7.vcproj
+++ b/samples/docview/docview_vc7.vcproj
@@ -45,7 +45,7 @@
Name="VCCustomBuildTool"/>
UseGraphicRenderer(NULL);
}
- void OnGraphicContextNoneUpdateUI(wxUpdateUIEvent& event)
- {
- event.Check(m_canvas->GetRenderer() == NULL);
- }
-
void OnGraphicContextDefault(wxCommandEvent& WXUNUSED(event))
{
m_canvas->UseGraphicRenderer(wxGraphicsRenderer::GetDefaultRenderer());
}
- void OnGraphicContextDefaultUpdateUI(wxUpdateUIEvent& event)
- {
- event.Check(m_canvas->IsDefaultRenderer());
- }
-
#if wxUSE_CAIRO
void OnGraphicContextCairo(wxCommandEvent& WXUNUSED(event))
{
m_canvas->UseGraphicRenderer(wxGraphicsRenderer::GetCairoRenderer());
}
-
- void OnGraphicContextCairoUpdateUI(wxUpdateUIEvent& event)
- {
- event.Check(m_canvas->GetRenderer() == wxGraphicsRenderer::GetCairoRenderer());
- }
#endif // wxUSE_CAIRO
#ifdef __WXMSW__
#if wxUSE_GRAPHICS_GDIPLUS
@@ -235,22 +220,12 @@ public:
{
m_canvas->UseGraphicRenderer(wxGraphicsRenderer::GetGDIPlusRenderer());
}
-
- void OnGraphicContextGDIPlusUpdateUI(wxUpdateUIEvent& event)
- {
- event.Check(m_canvas->GetRenderer() == wxGraphicsRenderer::GetGDIPlusRenderer());
- }
#endif
#if wxUSE_GRAPHICS_DIRECT2D
void OnGraphicContextDirect2D(wxCommandEvent& WXUNUSED(event))
{
m_canvas->UseGraphicRenderer(wxGraphicsRenderer::GetDirect2DRenderer());
}
-
- void OnGraphicContextDirect2DUpdateUI(wxUpdateUIEvent& event)
- {
- event.Check(m_canvas->GetRenderer() == wxGraphicsRenderer::GetDirect2DRenderer());
- }
#endif
#endif // __WXMSW__
void OnAntiAliasing(wxCommandEvent& event)
@@ -639,7 +614,7 @@ void MyCanvas::DrawTestPoly(wxDC& dc)
void MyCanvas::DrawTestLines( int x, int y, int width, wxDC &dc )
{
dc.SetPen( wxPen( *wxBLACK, width ) );
- dc.SetBrush( *wxRED_BRUSH );
+ dc.SetBrush( *wxWHITE_BRUSH );
dc.DrawText(wxString::Format("Testing lines of width %d", width), x + 10, y - 10);
dc.DrawRectangle( x+10, y+10, 100, 190 );
@@ -2230,21 +2205,16 @@ wxBEGIN_EVENT_TABLE(MyFrame, wxFrame)
#if wxUSE_GRAPHICS_CONTEXT
EVT_MENU (File_GC_Default, MyFrame::OnGraphicContextDefault)
- EVT_UPDATE_UI (File_GC_Default, MyFrame::OnGraphicContextDefaultUpdateUI)
EVT_MENU (File_DC, MyFrame::OnGraphicContextNone)
- EVT_UPDATE_UI (File_DC, MyFrame::OnGraphicContextNoneUpdateUI)
#if wxUSE_CAIRO
EVT_MENU (File_GC_Cairo, MyFrame::OnGraphicContextCairo)
- EVT_UPDATE_UI (File_GC_Cairo, MyFrame::OnGraphicContextCairoUpdateUI)
#endif // wxUSE_CAIRO
#ifdef __WXMSW__
#if wxUSE_GRAPHICS_GDIPLUS
EVT_MENU (File_GC_GDIPlus, MyFrame::OnGraphicContextGDIPlus)
- EVT_UPDATE_UI (File_GC_GDIPlus, MyFrame::OnGraphicContextGDIPlusUpdateUI)
#endif
#if wxUSE_GRAPHICS_DIRECT2D
EVT_MENU (File_GC_Direct2D, MyFrame::OnGraphicContextDirect2D)
- EVT_UPDATE_UI (File_GC_Direct2D, MyFrame::OnGraphicContextDirect2DUpdateUI)
#endif
#endif // __WXMSW__
EVT_MENU (File_AntiAliasing, MyFrame::OnAntiAliasing)
@@ -2292,17 +2262,39 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size)
wxMenu *menuFile = new wxMenu;
#if wxUSE_GRAPHICS_CONTEXT
- menuFile->AppendCheckItem(File_GC_Default, "Use default wx&GraphicContext\t1");
- m_menuItemUseDC = menuFile->AppendRadioItem(File_DC, "Use wx&DC\t0");
+ // Number the different renderer choices consecutively, starting from 0.
+ int accel = 0;
+ m_menuItemUseDC = menuFile->AppendRadioItem
+ (
+ File_DC,
+ wxString::Format("Use wx&DC\t%d", accel++)
+ );
+ menuFile->AppendRadioItem
+ (
+ File_GC_Default,
+ wxString::Format("Use default wx&GraphicContext\t%d", accel++)
+ );
#if wxUSE_CAIRO
- menuFile->AppendRadioItem(File_GC_Cairo, "Use &Cairo\t2");
+ menuFile->AppendRadioItem
+ (
+ File_GC_Cairo,
+ wxString::Format("Use &Cairo\t%d", accel++)
+ );
#endif // wxUSE_CAIRO
#ifdef __WXMSW__
#if wxUSE_GRAPHICS_GDIPLUS
- menuFile->AppendRadioItem(File_GC_GDIPlus, "Use &GDI+\t3");
+ menuFile->AppendRadioItem
+ (
+ File_GC_GDIPlus,
+ wxString::Format("Use &GDI+\t%d", accel++)
+ );
#endif
#if wxUSE_GRAPHICS_DIRECT2D
- menuFile->AppendRadioItem(File_GC_Direct2D, "Use &Direct2D\t4");
+ menuFile->AppendRadioItem
+ (
+ File_GC_Direct2D,
+ wxString::Format("Use &Direct2D\t%d", accel++)
+ );
#endif
#endif // __WXMSW__
#endif // wxUSE_GRAPHICS_CONTEXT
diff --git a/samples/drawing/drawing_vc7.vcproj b/samples/drawing/drawing_vc7.vcproj
index 6ab6e11f80..8bff22fa71 100644
--- a/samples/drawing/drawing_vc7.vcproj
+++ b/samples/drawing/drawing_vc7.vcproj
@@ -45,7 +45,7 @@
Name="VCCustomBuildTool"/>
DeleteRows(0, ir);
grid->AppendRows(ir);
- grid->SetRowSize( 0, 60 );
+ grid->SetRowSize( 0, 4*grid->GetDefaultRowSize() );
grid->SetCellValue( 0, 0, "Ctrl+Home\nwill go to\nthis cell" );
grid->SetCellValue( 0, 1, "A long piece of text to demonstrate wrapping." );
@@ -477,7 +474,7 @@ GridFrame::GridFrame()
grid->SetCellValue( 0, 4, "Can veto edit this cell" );
- grid->SetColSize(10, 150);
+ grid->SetColSize(10, FromDIP(150));
wxString longtext = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ\n\n";
longtext += "With tabs :\n";
longtext += "Home,\t\thome\t\t\tagain\n";
@@ -494,7 +491,7 @@ GridFrame::GridFrame()
grid->SetCellValue( 0, 5, "Press\nCtrl+arrow\nto skip over\ncells" );
- grid->SetRowSize( 99, 60 );
+ grid->SetRowSize( 99, 4*grid->GetDefaultRowSize() );
grid->SetCellValue(98, 98, "Test background colour setting");
grid->SetCellBackgroundColour(98, 99, wxColour(255, 127, 127));
grid->SetCellBackgroundColour(99, 98, wxColour(255, 127, 127));
@@ -537,8 +534,8 @@ GridFrame::GridFrame()
grid->SetRowAttr(5, attr);
grid->SetCellValue(2, 4, "a wider column");
- grid->SetColSize(4, 120);
- grid->SetColMinimalWidth(4, 120);
+ grid->SetColSize(4, 3*grid->GetDefaultColLabelSize()/2);
+ grid->SetColMinimalWidth(4, grid->GetColSize(4));
grid->SetCellTextColour(5, 8, *wxGREEN);
grid->SetCellValue(5, 8, "Bg from row attr\nText col from cell attr");
@@ -611,9 +608,10 @@ GridFrame::GridFrame()
// create a separator-like row: it's grey and it's non-resizable
grid->DisableRowResize(10);
- grid->SetRowSize(10, 30);
+ grid->SetRowSize(10, 3*grid->GetDefaultRowSize()/2);
attr = new wxGridCellAttr;
attr->SetBackgroundColour(*wxLIGHT_GREY);
+ attr->SetAlignment(wxALIGN_INVALID, wxALIGN_CENTRE);
grid->SetRowAttr(10, attr);
grid->SetCellValue(10, 0, "You can't resize this row interactively -- try it");
@@ -1596,41 +1594,33 @@ void GridFrame::OnBugsTable(wxCommandEvent& )
// ----------------------------------------------------------------------------
MyGridCellAttrProvider::MyGridCellAttrProvider()
+ : m_attrForOddRows(new wxGridCellAttr)
{
- m_attrForOddRows = new wxGridCellAttr;
m_attrForOddRows->SetBackgroundColour(*wxLIGHT_GREY);
}
-MyGridCellAttrProvider::~MyGridCellAttrProvider()
-{
- m_attrForOddRows->DecRef();
-}
-
wxGridCellAttr *MyGridCellAttrProvider::GetAttr(int row, int col,
wxGridCellAttr::wxAttrKind kind /* = wxGridCellAttr::Any */) const
{
- wxGridCellAttr *attr = wxGridCellAttrProvider::GetAttr(row, col, kind);
+ wxGridCellAttrPtr attr(wxGridCellAttrProvider::GetAttr(row, col, kind));
if ( row % 2 )
{
if ( !attr )
{
attr = m_attrForOddRows;
- attr->IncRef();
}
else
{
if ( !attr->HasBackgroundColour() )
{
- wxGridCellAttr *attrNew = attr->Clone();
- attr->DecRef();
- attr = attrNew;
+ attr = attr->Clone();
attr->SetBackgroundColour(*wxLIGHT_GREY);
}
}
}
- return attr;
+ return attr.release();
}
void GridFrame::OnVTable(wxCommandEvent& )
@@ -1676,8 +1666,7 @@ void MyGridCellRenderer::Draw(wxGrid& grid,
// ============================================================================
BigGridFrame::BigGridFrame(long sizeGrid)
- : wxFrame(NULL, wxID_ANY, "Plugin Virtual Table",
- wxDefaultPosition, wxSize(500, 450))
+ : wxFrame(NULL, wxID_ANY, "Plugin Virtual Table")
{
m_grid = new wxGrid(this, wxID_ANY, wxDefaultPosition, wxDefaultSize);
m_table = new BigGridTable(sizeGrid);
@@ -1686,14 +1675,9 @@ BigGridFrame::BigGridFrame(long sizeGrid)
// must profile it...
//m_table->SetAttrProvider(new MyGridCellAttrProvider);
- m_grid->SetTable(m_table, true);
+ m_grid->AssignTable(m_table);
-#if defined __WXMOTIF__
- // MB: the grid isn't getting a sensible default size under wxMotif
- int cw, ch;
- GetClientSize( &cw, &ch );
- m_grid->SetSize( cw, ch );
-#endif
+ SetClientSize(FromDIP(wxSize(500, 450)));
}
// ============================================================================
@@ -1977,7 +1961,7 @@ BugsGridFrame::BugsGridFrame()
wxGrid *grid = new wxGrid(this, wxID_ANY);
wxGridTableBase *table = new BugsGridTable();
table->SetAttrProvider(new MyGridCellAttrProvider);
- grid->SetTable(table, true);
+ grid->AssignTable(table);
wxGridCellAttr *attrRO = new wxGridCellAttr,
*attrRangeEditor = new wxGridCellAttr,
@@ -2338,7 +2322,7 @@ TabularGridFrame::TabularGridFrame()
m_grid = new wxGrid(panel, wxID_ANY,
wxDefaultPosition, wxDefaultSize,
wxBORDER_STATIC | wxWANTS_CHARS);
- m_grid->SetTable(m_table, true, wxGrid::wxGridSelectRows);
+ m_grid->AssignTable(m_table, wxGrid::wxGridSelectRows);
m_grid->EnableDragColMove();
m_grid->UseNativeColHeader();
@@ -2370,7 +2354,7 @@ TabularGridFrame::TabularGridFrame()
sizerStyles->Add(m_chkEnableColMove, wxSizerFlags().Border());
sizerControls->Add(sizerStyles);
- sizerControls->AddSpacer(10);
+ sizerControls->AddSpacer(FromDIP(10));
wxSizer * const sizerColumns = new wxBoxSizer(wxVERTICAL);
wxSizer * const sizerMoveCols = new wxBoxSizer(wxHORIZONTAL);
diff --git a/samples/grid/griddemo.h b/samples/grid/griddemo.h
index a80c366b7b..784e0fca3d 100644
--- a/samples/grid/griddemo.h
+++ b/samples/grid/griddemo.h
@@ -296,13 +296,12 @@ class MyGridCellAttrProvider : public wxGridCellAttrProvider
{
public:
MyGridCellAttrProvider();
- virtual ~MyGridCellAttrProvider();
virtual wxGridCellAttr *GetAttr(int row, int col,
wxGridCellAttr::wxAttrKind kind) const wxOVERRIDE;
private:
- wxGridCellAttr *m_attrForOddRows;
+ wxGridCellAttrPtr m_attrForOddRows;
};
// ----------------------------------------------------------------------------
diff --git a/samples/grid/makefile.vc b/samples/grid/makefile.vc
index 05c9be52e1..02a8ed3626 100644
--- a/samples/grid/makefile.vc
+++ b/samples/grid/makefile.vc
@@ -24,9 +24,10 @@ GRID_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
$(__DEBUGINFO_0) /Fd$(OBJS)\grid.pdb $(____DEBUGRUNTIME_3_p) \
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I.\..\..\include \
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I.\..\..\include \
$(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 /I. $(__DLLFLAG_p) /D_WINDOWS \
/I.\..\..\samples /DNOPCH $(__RTTIFLAG_11) $(__EXCEPTIONSFLAG_12) \
$(CPPFLAGS) $(CXXFLAGS)
@@ -49,6 +50,12 @@ ARCH_SUFFIX = _ia64
!if "$(TARGET_CPU)" == "X64"
ARCH_SUFFIX = _x64
!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+ARCH_SUFFIX = _x64
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+ARCH_SUFFIX = _x64
+!endif
!if "$(TARGET_CPU)" == "amd64"
ARCH_SUFFIX = _x64
!endif
@@ -103,6 +110,12 @@ LINK_TARGET_CPU = /MACHINE:IA64
!if "$(TARGET_CPU)" == "X64"
LINK_TARGET_CPU = /MACHINE:X64
!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+LINK_TARGET_CPU = /MACHINE:X64
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+LINK_TARGET_CPU = /MACHINE:X64
+!endif
!if "$(TARGET_CPU)" == "amd64"
LINK_TARGET_CPU = /MACHINE:X64
!endif
@@ -115,43 +128,171 @@ LINK_TARGET_CPU = /MACHINE:IA64
!if "$(TARGET_CPU)" == "x64"
LINK_TARGET_CPU = /MACHINE:X64
!endif
-!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "16.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
@@ -287,6 +428,24 @@ __NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
!endif
+!if "$(TARGET_CPU)" == ""
+__TARGET_CPU_COMPFLAG_p = /DTARGET_CPU_COMPFLAG=0
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+__TARGET_CPU_COMPFLAG_p =
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+__TARGET_CPU_COMPFLAG_p =
+!endif
+!if "$(TARGET_CPU)" == ""
+__TARGET_CPU_COMPFLAG_p_1 = /d TARGET_CPU_COMPFLAG=0
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+__TARGET_CPU_COMPFLAG_p_1 =
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+__TARGET_CPU_COMPFLAG_p_1 =
+!endif
!if "$(WXUNIV)" == "1"
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
!endif
@@ -407,7 +566,7 @@ $(OBJS)\grid.exe: $(GRID_OBJECTS) $(OBJS)\grid_sample.res
<<
$(OBJS)\grid_sample.res: .\..\..\samples\sample.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\samples /d NOPCH .\..\..\samples\sample.rc
+ rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) $(__TARGET_CPU_COMPFLAG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\samples /d NOPCH .\..\..\samples\sample.rc
$(OBJS)\grid_griddemo.obj: .\griddemo.cpp
$(CXX) /c /nologo /TP /Fo$@ $(GRID_CXXFLAGS) .\griddemo.cpp
diff --git a/samples/help/Makefile.in b/samples/help/Makefile.in
index 385bfe5774..e41b1a9f8e 100644
--- a/samples/help/Makefile.in
+++ b/samples/help/Makefile.in
@@ -33,7 +33,9 @@ EXTRALIBS = @EXTRALIBS@
EXTRALIBS_XML = @EXTRALIBS_XML@
EXTRALIBS_HTML = @EXTRALIBS_HTML@
EXTRALIBS_GUI = @EXTRALIBS_GUI@
-CXXWARNINGS = @CXXWARNINGS@
+WX_CPPFLAGS = @WX_CPPFLAGS@
+WX_CXXFLAGS = @WX_CXXFLAGS@
+WX_LDFLAGS = @WX_LDFLAGS@
HOST_SUFFIX = @HOST_SUFFIX@
SAMPLES_RPATH_FLAG = @SAMPLES_RPATH_FLAG@
SAMPLES_CXXFLAGS = @SAMPLES_CXXFLAGS@
@@ -45,10 +47,10 @@ DESTDIR =
WX_RELEASE = 3.1
WX_VERSION = $(WX_RELEASE).4
LIBDIRNAME = $(wx_top_builddir)/lib
-HELP_CXXFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
- -I$(srcdir) $(__DLLFLAG_p) -I$(srcdir)/../../samples $(CXXWARNINGS) \
- $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+HELP_CXXFLAGS = $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -I$(srcdir) $(__DLLFLAG_p) -I$(srcdir)/../../samples \
+ $(WX_CXXFLAGS) $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
HELP_OBJECTS = \
$(__help___win32rc) \
help_demo.o
@@ -154,7 +156,7 @@ distclean: clean
rm -f config.cache config.log config.status bk-deps bk-make-pch shared-ld-sh Makefile
help$(EXEEXT): $(HELP_OBJECTS) $(__help___win32rc)
- $(CXX) -o $@ $(HELP_OBJECTS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_HTML_p) $(EXTRALIBS_HTML) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
+ $(CXX) -o $@ $(HELP_OBJECTS) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_HTML_p) $(EXTRALIBS_HTML) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
$(__help___os2_emxbindcmd)
@COND_PLATFORM_MACOSX_1@help.app/Contents/PkgInfo: help$(EXEEXT) $(top_srcdir)/src/osx/carbon/Info.plist.in $(top_srcdir)/src/osx/carbon/wxmac.icns
diff --git a/samples/help/help_vc7.vcproj b/samples/help/help_vc7.vcproj
index f33cb5ec25..c70b841760 100644
--- a/samples/help/help_vc7.vcproj
+++ b/samples/help/help_vc7.vcproj
@@ -45,7 +45,7 @@
Name="VCCustomBuildTool"/>
CFBundleExecutable
$(PRODUCT_NAME)
CFBundleGetInfoString
- $(PRODUCT_NAME) version 3.1.4, (c) 2005-2019 wxWidgets
+ $(PRODUCT_NAME) version 3.1.4, (c) 2005-2020 wxWidgets
CFBundleIconFile
wxmac.icns
CFBundleIdentifier
@@ -22,7 +22,7 @@
it
CFBundleLongVersionString
- 3.1.4, (c) 2005-2019 wxWidgets
+ 3.1.4, (c) 2005-2020 wxWidgets
CFBundleName
$(PRODUCT_NAME)
CFBundlePackageType
@@ -34,7 +34,7 @@
CFBundleVersion
3.1.4
NSHumanReadableCopyright
- Copyright 2005-2019 wxWidgets
+ Copyright 2005-2020 wxWidgets
NSPrincipalClass
wxNSApplication
diff --git a/samples/minimal/Makefile.in b/samples/minimal/Makefile.in
index d6286eeace..66ad917c0d 100644
--- a/samples/minimal/Makefile.in
+++ b/samples/minimal/Makefile.in
@@ -32,7 +32,9 @@ TOOLCHAIN_FULLNAME = @TOOLCHAIN_FULLNAME@
EXTRALIBS = @EXTRALIBS@
EXTRALIBS_XML = @EXTRALIBS_XML@
EXTRALIBS_GUI = @EXTRALIBS_GUI@
-CXXWARNINGS = @CXXWARNINGS@
+WX_CPPFLAGS = @WX_CPPFLAGS@
+WX_CXXFLAGS = @WX_CXXFLAGS@
+WX_LDFLAGS = @WX_LDFLAGS@
HOST_SUFFIX = @HOST_SUFFIX@
SAMPLES_RPATH_FLAG = @SAMPLES_RPATH_FLAG@
SAMPLES_CXXFLAGS = @SAMPLES_CXXFLAGS@
@@ -44,10 +46,10 @@ DESTDIR =
WX_RELEASE = 3.1
WX_VERSION = $(WX_RELEASE).4
LIBDIRNAME = $(wx_top_builddir)/lib
-MINIMAL_CXXFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
- -I$(srcdir) $(__DLLFLAG_p) -I$(srcdir)/../../samples $(CXXWARNINGS) \
- $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+MINIMAL_CXXFLAGS = $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -I$(srcdir) $(__DLLFLAG_p) -I$(srcdir)/../../samples \
+ $(WX_CXXFLAGS) $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
MINIMAL_OBJECTS = \
$(__minimal___win32rc) \
minimal_minimal.o
@@ -150,7 +152,7 @@ distclean: clean
rm -f config.cache config.log config.status bk-deps bk-make-pch shared-ld-sh Makefile
minimal$(EXEEXT): $(MINIMAL_OBJECTS) $(__minimal___win32rc)
- $(CXX) -o $@ $(MINIMAL_OBJECTS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
+ $(CXX) -o $@ $(MINIMAL_OBJECTS) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
$(__minimal___os2_emxbindcmd)
@COND_PLATFORM_MACOSX_1@minimal.app/Contents/PkgInfo: minimal$(EXEEXT) $(top_srcdir)/src/osx/carbon/Info.plist.in $(top_srcdir)/src/osx/carbon/wxmac.icns
diff --git a/samples/minimal/makefile.vc b/samples/minimal/makefile.vc
index 82e88c1224..114aaf0434 100644
--- a/samples/minimal/makefile.vc
+++ b/samples/minimal/makefile.vc
@@ -24,9 +24,10 @@ MINIMAL_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
$(__DEBUGINFO_0) /Fd$(OBJS)\minimal.pdb $(____DEBUGRUNTIME_3_p) \
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I.\..\..\include \
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I.\..\..\include \
$(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 /I. $(__DLLFLAG_p) /D_WINDOWS \
/I.\..\..\samples /DNOPCH $(__RTTIFLAG_11) $(__EXCEPTIONSFLAG_12) \
$(CPPFLAGS) $(CXXFLAGS)
@@ -49,6 +50,12 @@ ARCH_SUFFIX = _ia64
!if "$(TARGET_CPU)" == "X64"
ARCH_SUFFIX = _x64
!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+ARCH_SUFFIX = _x64
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+ARCH_SUFFIX = _x64
+!endif
!if "$(TARGET_CPU)" == "amd64"
ARCH_SUFFIX = _x64
!endif
@@ -103,6 +110,12 @@ LINK_TARGET_CPU = /MACHINE:IA64
!if "$(TARGET_CPU)" == "X64"
LINK_TARGET_CPU = /MACHINE:X64
!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+LINK_TARGET_CPU = /MACHINE:X64
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+LINK_TARGET_CPU = /MACHINE:X64
+!endif
!if "$(TARGET_CPU)" == "amd64"
LINK_TARGET_CPU = /MACHINE:X64
!endif
@@ -115,43 +128,171 @@ LINK_TARGET_CPU = /MACHINE:IA64
!if "$(TARGET_CPU)" == "x64"
LINK_TARGET_CPU = /MACHINE:X64
!endif
-!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "16.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
@@ -287,6 +428,24 @@ __NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
!endif
+!if "$(TARGET_CPU)" == ""
+__TARGET_CPU_COMPFLAG_p = /DTARGET_CPU_COMPFLAG=0
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+__TARGET_CPU_COMPFLAG_p =
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+__TARGET_CPU_COMPFLAG_p =
+!endif
+!if "$(TARGET_CPU)" == ""
+__TARGET_CPU_COMPFLAG_p_1 = /d TARGET_CPU_COMPFLAG=0
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+__TARGET_CPU_COMPFLAG_p_1 =
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+__TARGET_CPU_COMPFLAG_p_1 =
+!endif
!if "$(WXUNIV)" == "1"
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
!endif
@@ -407,7 +566,7 @@ $(OBJS)\minimal.exe: $(MINIMAL_OBJECTS) $(OBJS)\minimal_sample.res
<<
$(OBJS)\minimal_sample.res: .\..\..\samples\sample.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\samples /d NOPCH .\..\..\samples\sample.rc
+ rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) $(__TARGET_CPU_COMPFLAG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\samples /d NOPCH .\..\..\samples\sample.rc
$(OBJS)\minimal_minimal.obj: .\minimal.cpp
$(CXX) /c /nologo /TP /Fo$@ $(MINIMAL_CXXFLAGS) .\minimal.cpp
diff --git a/samples/minimal/minimal_vc7.vcproj b/samples/minimal/minimal_vc7.vcproj
index abdf41c6c3..d8e7298be3 100644
--- a/samples/minimal/minimal_vc7.vcproj
+++ b/samples/minimal/minimal_vc7.vcproj
@@ -45,7 +45,7 @@
Name="VCCustomBuildTool"/>
GetGrid()->GetRowHeight() - 2;
- wxBitmap bmp = wxArtProvider::GetBitmap(wxART_FOLDER, wxART_OTHER, wxSize(bmpH, bmpH));
+ wxBitmap bmp = wxArtProvider::GetBitmap(wxART_FOLDER);
for ( it = pg->GetGrid()->GetIterator();
!it.AtEnd();
@@ -2717,6 +2716,12 @@ void FormMain::OnShowHeader( wxCommandEvent& event )
void FormMain::OnAbout(wxCommandEvent& WXUNUSED(event))
{
+ wxPlatformInfo pi = wxPlatformInfo::Get();
+ wxString toolkit = wxString::Format("%s %i.%i.%i", pi.GetPortIdName(),
+ pi.GetToolkitMajorVersion(),
+ pi.GetToolkitMinorVersion(),
+ pi.GetToolkitMicroVersion());
+
wxString msg;
msg.Printf( "wxPropertyGrid Sample"
#if wxUSE_UNICODE
@@ -2735,8 +2740,8 @@ void FormMain::OnAbout(wxCommandEvent& WXUNUSED(event))
#endif
"\n\n"
"Programmed by %s\n\n"
- "Using %s\n\n",
- "Jaakko Salli", wxVERSION_STRING
+ "Using %s (%s)\n\n",
+ "Jaakko Salli", wxVERSION_STRING, toolkit
);
wxMessageBox(msg, "About", wxOK | wxICON_INFORMATION, this);
diff --git a/samples/propgrid/propgrid_vc7.vcproj b/samples/propgrid/propgrid_vc7.vcproj
index 1c4721922a..781750b71f 100644
--- a/samples/propgrid/propgrid_vc7.vcproj
+++ b/samples/propgrid/propgrid_vc7.vcproj
@@ -45,7 +45,7 @@
Name="VCCustomBuildTool"/>
SetPropertyValue("ArrayStringProperty",test_arrstr_1);
wxColour emptyCol;
pgman->SetPropertyValue("ColourProperty",emptyCol);
- pgman->SetPropertyValue("ColourProperty",(wxObject*)wxBLACK);
+ pgman->SetPropertyValue("ColourProperty", const_cast(static_cast(wxBLACK)));
pgman->SetPropertyValue("Size",WXVARIANT(wxSize(150,150)));
pgman->SetPropertyValue("Position",WXVARIANT(wxPoint(150,150)));
pgman->SetPropertyValue("MultiChoiceProperty",test_arrint_1);
@@ -690,7 +690,7 @@ bool FormMain::RunTests( bool fullTest, bool interactive )
pg->SetPropertyValue("BoolProperty",true);
pg->SetPropertyValue("EnumProperty",80);
pg->SetPropertyValue("ArrayStringProperty",test_arrstr_2);
- pg->SetPropertyValue("ColourProperty",(wxObject*)wxWHITE);
+ pg->SetPropertyValue("ColourProperty", const_cast(static_cast(wxWHITE)));
pg->SetPropertyValue("Size",WXVARIANT(wxSize(300,300)));
pg->SetPropertyValue("Position",WXVARIANT(wxPoint(300,300)));
pg->SetPropertyValue("MultiChoiceProperty",test_arrint_2);
diff --git a/samples/regtest/Makefile.in b/samples/regtest/Makefile.in
index 068305ebdd..a9e46f961a 100644
--- a/samples/regtest/Makefile.in
+++ b/samples/regtest/Makefile.in
@@ -32,7 +32,9 @@ TOOLCHAIN_FULLNAME = @TOOLCHAIN_FULLNAME@
EXTRALIBS = @EXTRALIBS@
EXTRALIBS_XML = @EXTRALIBS_XML@
EXTRALIBS_GUI = @EXTRALIBS_GUI@
-CXXWARNINGS = @CXXWARNINGS@
+WX_CPPFLAGS = @WX_CPPFLAGS@
+WX_CXXFLAGS = @WX_CXXFLAGS@
+WX_LDFLAGS = @WX_LDFLAGS@
HOST_SUFFIX = @HOST_SUFFIX@
SAMPLES_RPATH_FLAG = @SAMPLES_RPATH_FLAG@
SAMPLES_CXXFLAGS = @SAMPLES_CXXFLAGS@
@@ -44,10 +46,10 @@ DESTDIR =
WX_RELEASE = 3.1
WX_VERSION = $(WX_RELEASE).4
LIBDIRNAME = $(wx_top_builddir)/lib
-REGTEST_CXXFLAGS = -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
- -I$(srcdir) $(__DLLFLAG_p) -I$(srcdir)/../../samples $(CXXWARNINGS) \
- $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
+REGTEST_CXXFLAGS = $(WX_CPPFLAGS) -D__WX$(TOOLKIT)__ $(__WXUNIV_DEFINE_p) \
+ $(__DEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
+ $(__THREAD_DEFINE_p) -I$(srcdir) $(__DLLFLAG_p) -I$(srcdir)/../../samples \
+ $(WX_CXXFLAGS) $(SAMPLES_CXXFLAGS) $(CPPFLAGS) $(CXXFLAGS)
REGTEST_OBJECTS = \
regtest_regtest.o \
$(__regtest___win32rc)
@@ -150,7 +152,7 @@ distclean: clean
rm -f config.cache config.log config.status bk-deps bk-make-pch shared-ld-sh Makefile
regtest$(EXEEXT): $(REGTEST_OBJECTS) $(__regtest___win32rc)
- $(CXX) -o $@ $(REGTEST_OBJECTS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
+ $(CXX) -o $@ $(REGTEST_OBJECTS) $(WX_LDFLAGS) -L$(LIBDIRNAME) $(LDFLAGS_GUI) $(SAMPLES_RPATH_FLAG) $(LDFLAGS) $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_SCINTILLA_IF_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) $(EXTRALIBS_FOR_GUI) $(__LIB_ZLIB_p) $(__LIB_REGEX_p) $(__LIB_EXPAT_p) $(EXTRALIBS_FOR_BASE) $(LIBS)
$(__regtest___os2_emxbindcmd)
@COND_PLATFORM_MACOSX_1@regtest.app/Contents/PkgInfo: regtest$(EXEEXT) $(top_srcdir)/src/osx/carbon/Info.plist.in $(top_srcdir)/src/osx/carbon/wxmac.icns
diff --git a/samples/regtest/makefile.vc b/samples/regtest/makefile.vc
index b0e8086595..3a0f167a51 100644
--- a/samples/regtest/makefile.vc
+++ b/samples/regtest/makefile.vc
@@ -24,9 +24,10 @@ REGTEST_CXXFLAGS = /M$(__RUNTIME_LIBS_10)$(__DEBUGRUNTIME_4) /DWIN32 \
$(__DEBUGINFO_0) /Fd$(OBJS)\regtest.pdb $(____DEBUGRUNTIME_3_p) \
$(__OPTIMIZEFLAG_6) /D_CRT_SECURE_NO_DEPRECATE=1 \
/D_CRT_NON_CONFORMING_SWPRINTFS=1 /D_SCL_SECURE_NO_WARNINGS=1 \
- $(__NO_VC_CRTDBG_p) /D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
- $(__NDEBUG_DEFINE_p) $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) \
- $(__THREAD_DEFINE_p) $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I.\..\..\include \
+ $(__NO_VC_CRTDBG_p) $(__TARGET_CPU_COMPFLAG_p) /D__WXMSW__ \
+ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) $(__NDEBUG_DEFINE_p) \
+ $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
+ $(__UNICODE_DEFINE_p) /I$(SETUPHDIR) /I.\..\..\include \
$(____CAIRO_INCLUDEDIR_FILENAMES_p) /W4 /I. $(__DLLFLAG_p) /D_WINDOWS \
/I.\..\..\samples /DNOPCH $(__RTTIFLAG_11) $(__EXCEPTIONSFLAG_12) \
$(CPPFLAGS) $(CXXFLAGS)
@@ -49,6 +50,12 @@ ARCH_SUFFIX = _ia64
!if "$(TARGET_CPU)" == "X64"
ARCH_SUFFIX = _x64
!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+ARCH_SUFFIX = _x64
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+ARCH_SUFFIX = _x64
+!endif
!if "$(TARGET_CPU)" == "amd64"
ARCH_SUFFIX = _x64
!endif
@@ -103,6 +110,12 @@ LINK_TARGET_CPU = /MACHINE:IA64
!if "$(TARGET_CPU)" == "X64"
LINK_TARGET_CPU = /MACHINE:X64
!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+LINK_TARGET_CPU = /MACHINE:X64
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+LINK_TARGET_CPU = /MACHINE:X64
+!endif
!if "$(TARGET_CPU)" == "amd64"
LINK_TARGET_CPU = /MACHINE:X64
!endif
@@ -115,43 +128,171 @@ LINK_TARGET_CPU = /MACHINE:IA64
!if "$(TARGET_CPU)" == "x64"
LINK_TARGET_CPU = /MACHINE:X64
!endif
-!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1"
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
!endif
-!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "1" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/wx_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "amd64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
-!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2"
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "AMD64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "x64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "X64" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "x64" && "$(VISUALSTUDIOVERSION)" == "16.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "14.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "15.0"
+WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
+ /MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
+!endif
+!if "$(TARGET_CPU)" == "" && "$(USE_DPI_AWARE_MANIFEST)" == "2" && "$(VISUALSTUDIOPLATFORM)" == "X64" && "$(VISUALSTUDIOVERSION)" == "16.0"
WIN32_DPI_LINKFLAG = /MANIFEST:EMBED \
/MANIFESTINPUT:./../../include/wx/msw/amd64_dpi_aware_pmv2.manifest
!endif
@@ -287,6 +428,24 @@ __NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
!if "$(BUILD)" == "release" && "$(DEBUG_FLAG)" == "1"
__NO_VC_CRTDBG_p_1 = /d __NO_VC_CRTDBG__
!endif
+!if "$(TARGET_CPU)" == ""
+__TARGET_CPU_COMPFLAG_p = /DTARGET_CPU_COMPFLAG=0
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+__TARGET_CPU_COMPFLAG_p =
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+__TARGET_CPU_COMPFLAG_p =
+!endif
+!if "$(TARGET_CPU)" == ""
+__TARGET_CPU_COMPFLAG_p_1 = /d TARGET_CPU_COMPFLAG=0
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "X64"
+__TARGET_CPU_COMPFLAG_p_1 =
+!endif
+!if "$(TARGET_CPU)" == "" && "$(VISUALSTUDIOPLATFORM)" == "x64"
+__TARGET_CPU_COMPFLAG_p_1 =
+!endif
!if "$(WXUNIV)" == "1"
__WXUNIV_DEFINE_p = /D__WXUNIVERSAL__
!endif
@@ -410,5 +569,5 @@ $(OBJS)\regtest_regtest.obj: .\regtest.cpp
$(CXX) /c /nologo /TP /Fo$@ $(REGTEST_CXXFLAGS) .\regtest.cpp
$(OBJS)\regtest_regtest.res: .\regtest.rc
- rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\samples /d NOPCH .\regtest.rc
+ rc /fo$@ /d WIN32 $(____DEBUGRUNTIME_3_p_1) /d _CRT_SECURE_NO_DEPRECATE=1 /d _CRT_NON_CONFORMING_SWPRINTFS=1 /d _SCL_SECURE_NO_WARNINGS=1 $(__NO_VC_CRTDBG_p_1) $(__TARGET_CPU_COMPFLAG_p_1) /d __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__NDEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) /i $(SETUPHDIR) /i .\..\..\include $(____CAIRO_INCLUDEDIR_FILENAMES_1_p) /i . $(__DLLFLAG_p_1) /d _WINDOWS /i .\..\..\samples /d NOPCH .\regtest.rc
diff --git a/samples/regtest/regtest.cpp b/samples/regtest/regtest.cpp
index 2004e34ce9..2a91c2583b 100644
--- a/samples/regtest/regtest.cpp
+++ b/samples/regtest/regtest.cpp
@@ -1070,9 +1070,9 @@ bool RegTreeCtrl::TreeNode::OnExpand()
case wxRegKey::Type_Dword:
{
- long l;
- m_pKey->QueryValue(str, &l);
- strItem << l;
+ long ldw;
+ m_pKey->QueryValue(str, &ldw);
+ strItem << ldw;
}
wxFALLTHROUGH;
diff --git a/samples/regtest/regtest_vc7.vcproj b/samples/regtest/regtest_vc7.vcproj
index 9c8531fb7f..1303140bd4 100644
--- a/samples/regtest/regtest_vc7.vcproj
+++ b/samples/regtest/regtest_vc7.vcproj
@@ -45,7 +45,7 @@
Name="VCCustomBuildTool"/>
processing.",
wxPoint(180,90), wxSize(200,70), wxTE_MULTILINE | wxTE_PROCESS_TAB );
- m_tab->SetClientData((void *)wxS("tab"));
+ m_tab->SetClientData(const_cast(static_cast(wxS("tab"))));
m_enter = new MyTextCtrl( this, 100, "Multiline, allow processing.",
wxPoint(180,170), wxSize(200,70), wxTE_MULTILINE | wxTE_PROCESS_ENTER );
- m_enter->SetClientData((void *)wxS("enter"));
+ m_enter->SetClientData(const_cast(static_cast(wxS("enter"))));
m_textrich = new MyTextCtrl(this, wxID_ANY, "Allows more than 30Kb of text\n"
"(on all Windows versions)\n"
diff --git a/samples/text/text_vc7.vcproj b/samples/text/text_vc7.vcproj
index 2c07555982..98fc3959a2 100644
--- a/samples/text/text_vc7.vcproj
+++ b/samples/text/text_vc7.vcproj
@@ -45,7 +45,7 @@
Name="VCCustomBuildTool"/>
= 0 && idx < (int)m_items.GetCount())
- {
- m_items.RemoveAt(idx);
- Realize();
- return true;
- }
-
- return false;
+ return DeleteByIndex(GetToolIndex(tool_id));
}
bool wxAuiToolBar::DeleteByIndex(int idx)
@@ -1188,6 +1180,22 @@ bool wxAuiToolBar::DeleteByIndex(int idx)
return false;
}
+bool wxAuiToolBar::DestroyTool(int tool_id)
+{
+ return DestroyToolByIndex(GetToolIndex(tool_id));
+}
+
+bool wxAuiToolBar::DestroyToolByIndex(int idx)
+{
+ if ( idx < 0 || static_cast(idx) >= m_items.GetCount() )
+ return false;
+
+ if ( wxWindow* window = m_items[idx].GetWindow() )
+ window->Destroy();
+
+ return DeleteByIndex(idx);
+}
+
wxControl* wxAuiToolBar::FindControl(int id)
{
@@ -1946,14 +1954,14 @@ bool wxAuiToolBar::RealizeHelper(wxClientDC& dc, bool horizontal)
for (i = 0, count = m_items.GetCount(); i < count; ++i)
{
wxAuiToolBarItem& item = m_items.Item(i);
- wxSizerItem* m_sizerItem = NULL;
+ wxSizerItem* sizerItem = NULL;
switch (item.m_kind)
{
case wxITEM_LABEL:
{
wxSize size = m_art->GetLabelSize(dc, this, item);
- m_sizerItem = sizer->Add(size.x + (m_toolBorderPadding*2),
+ sizerItem = sizer->Add(size.x + (m_toolBorderPadding*2),
size.y + (m_toolBorderPadding*2),
item.m_proportion,
item.m_alignment);
@@ -1970,7 +1978,7 @@ bool wxAuiToolBar::RealizeHelper(wxClientDC& dc, bool horizontal)
case wxITEM_RADIO:
{
wxSize size = m_art->GetToolSize(dc, this, item);
- m_sizerItem = sizer->Add(size.x + (m_toolBorderPadding*2),
+ sizerItem = sizer->Add(size.x + (m_toolBorderPadding*2),
size.y + (m_toolBorderPadding*2),
0,
item.m_alignment);
@@ -1986,9 +1994,9 @@ bool wxAuiToolBar::RealizeHelper(wxClientDC& dc, bool horizontal)
case wxITEM_SEPARATOR:
{
if (horizontal)
- m_sizerItem = sizer->Add(separatorSize, 1, 0, wxEXPAND);
+ sizerItem = sizer->Add(separatorSize, 1, 0, wxEXPAND);
else
- m_sizerItem = sizer->Add(1, separatorSize, 0, wxEXPAND);
+ sizerItem = sizer->Add(1, separatorSize, 0, wxEXPAND);
// add tool packing
if (i+1 < count)
@@ -2001,14 +2009,13 @@ bool wxAuiToolBar::RealizeHelper(wxClientDC& dc, bool horizontal)
case wxITEM_SPACER:
if (item.m_proportion > 0)
- m_sizerItem = sizer->AddStretchSpacer(item.m_proportion);
+ sizerItem = sizer->AddStretchSpacer(item.m_proportion);
else
- m_sizerItem = sizer->Add(item.m_spacerPixels, 1);
+ sizerItem = sizer->Add(item.m_spacerPixels, 1);
break;
case wxITEM_CONTROL:
{
- //m_sizerItem = sizer->Add(item.m_window, item.m_proportion, wxEXPAND);
wxSizerItem* ctrl_m_sizerItem;
wxBoxSizer* vert_sizer = new wxBoxSizer(wxVERTICAL);
@@ -2024,7 +2031,7 @@ bool wxAuiToolBar::RealizeHelper(wxClientDC& dc, bool horizontal)
}
- m_sizerItem = sizer->Add(vert_sizer, item.m_proportion, wxEXPAND);
+ sizerItem = sizer->Add(vert_sizer, item.m_proportion, wxEXPAND);
wxSize min_size = item.m_minSize;
@@ -2038,7 +2045,7 @@ bool wxAuiToolBar::RealizeHelper(wxClientDC& dc, bool horizontal)
if (min_size.IsFullySpecified())
{
- m_sizerItem->SetMinSize(min_size);
+ sizerItem->SetMinSize(min_size);
ctrl_m_sizerItem->SetMinSize(min_size);
}
@@ -2050,7 +2057,7 @@ bool wxAuiToolBar::RealizeHelper(wxClientDC& dc, bool horizontal)
}
}
- item.m_sizerItem = m_sizerItem;
+ item.m_sizerItem = sizerItem;
}
// add "right" padding
diff --git a/src/aui/auibook.cpp b/src/aui/auibook.cpp
index 687b4213ee..c980178afa 100644
--- a/src/aui/auibook.cpp
+++ b/src/aui/auibook.cpp
@@ -2082,6 +2082,8 @@ bool wxAuiNotebook::RemovePage(size_t page_idx)
if (!wnd)
return false;
+ ShowWnd(wnd, false);
+
// find out which onscreen tab ctrl owns this tab
wxAuiTabCtrl* ctrl;
int ctrl_idx;
diff --git a/src/aui/descrip.mms b/src/aui/descrip.mms
index 0361253ab8..ab1a0c940a 100644
--- a/src/aui/descrip.mms
+++ b/src/aui/descrip.mms
@@ -2,31 +2,31 @@
# *
# Make file for VMS *
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
-# Date : 2 April 2011 *
+# Date : 4 March 2020 *
# *
#*****************************************************************************
.first
define wx [--.include.wx]
.ifdef __WXMOTIF__
-CXX_DEFINE = /nowarn/define=(__WXMOTIF__=1)/name=(as_is,short)\
+CXX_DEFINE = /nowarn/define=(__WXMOTIF__=1,WXBUILDING=1)/name=(as_is,short)\
/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)
+CC_DEFINE = /define=(__WXMOTIF__=1,WXBUILDING=1)/name=(as_is,short)
.else
.ifdef __WXGTK__
-CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
+CXX_DEFINE = /define=(__WXGTK__=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/ieee=denorm\
/nowarn/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm
+CC_DEFINE = /define=(__WXGTK__=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/ieee=denorm
.else
.ifdef __WXGTK2__
-CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2)/float=ieee/name=(as_is,short)/ieee=denorm\
+CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2,WXBUILDING=1)/float=ieee/name=(as_is,short)/ieee=denorm\
/nowarn/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXGTK__=1,VMS_GTK2)/float=ieee/name=(as_is,short)/ieee=denorm
+CC_DEFINE = /define=(__WXGTK__=1,VMS_GTK2,WXBUILDING=1)/float=ieee/name=(as_is,short)/ieee=denorm
.else
.ifdef __WXX11__
-CXX_DEFINE = /nowarn/define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
+CXX_DEFINE = /nowarn/define=(__WXX11__=1,__WXUNIVERSAL__==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
+CC_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)
.else
CXX_DEFINE =
diff --git a/src/aui/framemanager.cpp b/src/aui/framemanager.cpp
index c395200291..4a09cce95d 100644
--- a/src/aui/framemanager.cpp
+++ b/src/aui/framemanager.cpp
@@ -49,7 +49,6 @@ WX_DECLARE_OBJARRAY(wxRect, wxAuiRectArray);
WX_DEFINE_OBJARRAY(wxAuiRectArray)
WX_DEFINE_OBJARRAY(wxAuiDockUIPartArray)
WX_DEFINE_OBJARRAY(wxAuiDockInfoArray)
-WX_DEFINE_OBJARRAY(wxAuiPaneButtonArray)
WX_DEFINE_OBJARRAY(wxAuiPaneInfoArray)
wxAuiPaneInfo wxAuiNullPaneInfo;
@@ -1071,27 +1070,6 @@ bool wxAuiManager::AddPane(wxWindow* window, const wxAuiPaneInfo& paneInfo)
if (pinfo.dock_proportion == 0)
pinfo.dock_proportion = 100000;
- if (pinfo.HasMaximizeButton())
- {
- wxAuiPaneButton button;
- button.button_id = wxAUI_BUTTON_MAXIMIZE_RESTORE;
- pinfo.buttons.Add(button);
- }
-
- if (pinfo.HasPinButton())
- {
- wxAuiPaneButton button;
- button.button_id = wxAUI_BUTTON_PIN;
- pinfo.buttons.Add(button);
- }
-
- if (pinfo.HasCloseButton())
- {
- wxAuiPaneButton button;
- button.button_id = wxAUI_BUTTON_CLOSE;
- pinfo.buttons.Add(button);
- }
-
if (pinfo.HasGripper())
{
if (wxDynamicCast(pinfo.window, wxAuiToolBar))
@@ -1826,7 +1804,7 @@ void wxAuiManager::LayoutAddPane(wxSizer* cont,
part.type = wxAuiDockUIPart::typeGripper;
part.dock = &dock;
part.pane = &pane;
- part.button = NULL;
+ part.button = 0;
part.orientation = orientation;
part.cont_sizer = horz_pane_sizer;
part.sizer_item = sizer_item;
@@ -1843,7 +1821,7 @@ void wxAuiManager::LayoutAddPane(wxSizer* cont,
part.type = wxAuiDockUIPart::typeCaption;
part.dock = &dock;
part.pane = &pane;
- part.button = NULL;
+ part.button = 0;
part.orientation = orientation;
part.cont_sizer = vert_pane_sizer;
part.sizer_item = sizer_item;
@@ -1851,24 +1829,37 @@ void wxAuiManager::LayoutAddPane(wxSizer* cont,
uiparts.Add(part);
// add pane buttons to the caption
- int i, button_count;
- for (i = 0, button_count = pane.buttons.GetCount();
- i < button_count; ++i)
+ int button_count = 0;
+ const int NUM_SUPPORTED_BUTTONS = 3;
+ wxAuiButtonId buttons[NUM_SUPPORTED_BUTTONS] = {
+ wxAUI_BUTTON_MAXIMIZE_RESTORE,
+ wxAUI_BUTTON_PIN,
+ wxAUI_BUTTON_CLOSE
+ };
+ int flags[NUM_SUPPORTED_BUTTONS] = {
+ wxAuiPaneInfo::buttonMaximize,
+ wxAuiPaneInfo::buttonPin,
+ wxAuiPaneInfo::buttonClose
+ };
+
+ for (int i = 0; i < NUM_SUPPORTED_BUTTONS; ++i)
{
- wxAuiPaneButton& button = pane.buttons.Item(i);
+ if (pane.HasFlag(flags[i]))
+ {
+ sizer_item = caption_sizer->Add(pane_button_size,
+ caption_size,
+ 0, wxEXPAND);
- sizer_item = caption_sizer->Add(pane_button_size,
- caption_size,
- 0, wxEXPAND);
-
- part.type = wxAuiDockUIPart::typePaneButton;
- part.dock = &dock;
- part.pane = &pane;
- part.button = &button;
- part.orientation = orientation;
- part.cont_sizer = caption_sizer;
- part.sizer_item = sizer_item;
- uiparts.Add(part);
+ part.type = wxAuiDockUIPart::typePaneButton;
+ part.dock = &dock;
+ part.pane = &pane;
+ part.button = buttons[i];
+ part.orientation = orientation;
+ part.cont_sizer = caption_sizer;
+ part.sizer_item = sizer_item;
+ uiparts.Add(part);
+ button_count++;
+ }
}
// if we have buttons, add a little space to the right
@@ -1901,7 +1892,7 @@ void wxAuiManager::LayoutAddPane(wxSizer* cont,
part.type = wxAuiDockUIPart::typePane;
part.dock = &dock;
part.pane = &pane;
- part.button = NULL;
+ part.button = 0;
part.orientation = orientation;
part.cont_sizer = vert_pane_sizer;
part.sizer_item = sizer_item;
@@ -1945,7 +1936,7 @@ void wxAuiManager::LayoutAddPane(wxSizer* cont,
part.type = wxAuiDockUIPart::typePaneBorder;
part.dock = &dock;
part.pane = &pane;
- part.button = NULL;
+ part.button = 0;
part.orientation = orientation;
part.cont_sizer = cont;
part.sizer_item = sizer_item;
@@ -1978,7 +1969,7 @@ void wxAuiManager::LayoutAddDock(wxSizer* cont,
part.orientation = orientation;
part.dock = &dock;
part.pane = NULL;
- part.button = NULL;
+ part.button = 0;
part.cont_sizer = cont;
part.sizer_item = sizer_item;
uiparts.Add(part);
@@ -2020,7 +2011,7 @@ void wxAuiManager::LayoutAddDock(wxSizer* cont,
part.type = wxAuiDockUIPart::typeBackground;
part.dock = &dock;
part.pane = NULL;
- part.button = NULL;
+ part.button = 0;
part.orientation = (orientation==wxHORIZONTAL) ? wxVERTICAL:wxHORIZONTAL;
part.cont_sizer = dock_sizer;
part.sizer_item = sizer_item;
@@ -2040,7 +2031,7 @@ void wxAuiManager::LayoutAddDock(wxSizer* cont,
part.type = wxAuiDockUIPart::typeBackground;
part.dock = &dock;
part.pane = NULL;
- part.button = NULL;
+ part.button = 0;
part.orientation = orientation;
part.cont_sizer = dock_sizer;
part.sizer_item = sizer_item;
@@ -2064,7 +2055,7 @@ void wxAuiManager::LayoutAddDock(wxSizer* cont,
part.type = wxAuiDockUIPart::typePaneSizer;
part.dock = &dock;
part.pane = dock.panes.Item(pane_i-1);
- part.button = NULL;
+ part.button = 0;
part.orientation = (orientation==wxHORIZONTAL) ? wxVERTICAL:wxHORIZONTAL;
part.cont_sizer = dock_sizer;
part.sizer_item = sizer_item;
@@ -2083,7 +2074,7 @@ void wxAuiManager::LayoutAddDock(wxSizer* cont,
part.type = wxAuiDockUIPart::typeDock;
part.dock = &dock;
part.pane = NULL;
- part.button = NULL;
+ part.button = 0;
part.orientation = orientation;
part.cont_sizer = cont;
part.sizer_item = sizer_item;
@@ -2105,7 +2096,7 @@ void wxAuiManager::LayoutAddDock(wxSizer* cont,
part.type = wxAuiDockUIPart::typeDockSizer;
part.dock = &dock;
part.pane = NULL;
- part.button = NULL;
+ part.button = 0;
part.orientation = orientation;
part.cont_sizer = cont;
part.sizer_item = sizer_item;
@@ -2444,7 +2435,7 @@ wxSizer* wxAuiManager::LayoutAll(wxAuiPaneInfoArray& panes,
part.type = wxAuiDockUIPart::typeBackground;
part.pane = NULL;
part.dock = NULL;
- part.button = NULL;
+ part.button = 0;
part.cont_sizer = middle;
part.sizer_item = sizer_item;
uiparts.Add(part);
@@ -2490,7 +2481,7 @@ wxSizer* wxAuiManager::LayoutAll(wxAuiPaneInfoArray& panes,
part.type = wxAuiDockUIPart::typeBackground;
part.pane = NULL;
part.dock = NULL;
- part.button = NULL;
+ part.button = 0;
part.cont_sizer = middle;
part.sizer_item = sizer_item;
uiparts.Add(part);
@@ -3914,7 +3905,7 @@ void wxAuiManager::OnRender(wxAuiManagerEvent& evt)
m_art->DrawBorder(*dc, m_frame, part.rect, *part.pane);
break;
case wxAuiDockUIPart::typePaneButton:
- m_art->DrawPaneButton(*dc, m_frame, part.button->button_id,
+ m_art->DrawPaneButton(*dc, m_frame, part.button,
wxAUI_BUTTON_STATE_NORMAL, part.rect, *part.pane);
break;
}
@@ -4107,7 +4098,7 @@ void wxAuiManager::UpdateButtonOnScreen(wxAuiDockUIPart* button_ui_part,
if (hit_test->pane)
{
m_art->DrawPaneButton(cdc, m_frame,
- button_ui_part->button->button_id,
+ button_ui_part->button,
state,
button_ui_part->rect,
*hit_test->pane);
@@ -4508,7 +4499,7 @@ void wxAuiManager::OnLeftUp(wxMouseEvent& event)
wxAuiManagerEvent e(wxEVT_AUI_PANE_BUTTON);
e.SetManager(this);
e.SetPane(m_actionPart->pane);
- e.SetButton(m_actionPart->button->button_id);
+ e.SetButton(m_actionPart->button);
ProcessMgrEvent(e);
}
}
diff --git a/src/aui/tabmdi.cpp b/src/aui/tabmdi.cpp
index 5c0ac18b7e..dca9b8404e 100644
--- a/src/aui/tabmdi.cpp
+++ b/src/aui/tabmdi.cpp
@@ -54,6 +54,7 @@ enum MDI_MENU_ID
wxIMPLEMENT_DYNAMIC_CLASS(wxAuiMDIParentFrame, wxFrame);
wxBEGIN_EVENT_TABLE(wxAuiMDIParentFrame, wxFrame)
+ EVT_CLOSE(wxAuiMDIParentFrame::OnClose)
#if wxUSE_MENUS
EVT_MENU (wxID_ANY, wxAuiMDIParentFrame::DoHandleMenu)
EVT_UPDATE_UI (wxID_ANY, wxAuiMDIParentFrame::DoHandleUpdateUI)
@@ -241,6 +242,29 @@ bool wxAuiMDIParentFrame::ProcessEvent(wxEvent& event)
return res;
}
+void wxAuiMDIParentFrame::OnClose(wxCloseEvent& event)
+{
+ if (!CloseAll())
+ event.Veto();
+ else
+ event.Skip();
+}
+
+bool wxAuiMDIParentFrame::CloseAll()
+{
+ wxAuiMDIChildFrame* pActiveChild;
+ while ((pActiveChild = GetActiveChild()) != NULL)
+ {
+ if (!pActiveChild->Close())
+ {
+ // it refused to close, don't close the remaining ones neither
+ return false;
+ }
+ }
+
+ return true;
+}
+
wxAuiMDIChildFrame *wxAuiMDIParentFrame::GetActiveChild() const
{
// We can be called before the client window is created, so check for its
@@ -343,14 +367,7 @@ void wxAuiMDIParentFrame::DoHandleMenu(wxCommandEvent& event)
}
case wxWINDOWCLOSEALL:
{
- wxAuiMDIChildFrame* pActiveChild;
- while ((pActiveChild = GetActiveChild()) != NULL)
- {
- if (!pActiveChild->Close())
- {
- return; // failure
- }
- }
+ CloseAll();
break;
}
case wxWINDOWNEXT:
diff --git a/src/common/animatecmn.cpp b/src/common/animatecmn.cpp
index 17c2a60b63..b56f91cee9 100644
--- a/src/common/animatecmn.cpp
+++ b/src/common/animatecmn.cpp
@@ -28,14 +28,106 @@
#include "wx/brush.h"
#include "wx/image.h"
#include "wx/dcmemory.h"
+#include "wx/module.h"
+#include "wx/gifdecod.h"
+#include "wx/anidecod.h"
+
+#include "wx/private/animate.h"
+
+// global objects
const char wxAnimationCtrlNameStr[] = "animationctrl";
-
-// global object
wxAnimation wxNullAnimation;
-wxIMPLEMENT_ABSTRACT_CLASS(wxAnimationBase, wxObject);
-wxIMPLEMENT_ABSTRACT_CLASS(wxAnimationCtrlBase, wxControl);
+wxIMPLEMENT_DYNAMIC_CLASS(wxAnimation, wxObject);
+
+#if !defined(wxHAS_NATIVE_ANIMATIONCTRL)
+ // In this case the "native" ctrl is the generic ctrl. See wx/animate.h
+ // Notice that it's important to use wxGenericAnimationCtrl here because
+ // wxAnimation::IsCompatibleWith() relies on control deriving from
+ // wxGenericAnimationCtrl when using generic wxAnimation implementation.
+ wxIMPLEMENT_CLASS(wxAnimationCtrl, wxGenericAnimationCtrl);
+#endif
+
+#include "wx/listimpl.cpp"
+WX_DEFINE_LIST(wxAnimationDecoderList)
+
+wxAnimationDecoderList wxAnimation::sm_handlers;
+
+// ----------------------------------------------------------------------------
+// wxAnimation
+// ----------------------------------------------------------------------------
+
+wxAnimation::wxAnimation()
+{
+ m_refData = wxAnimationImpl::CreateDefault();
+}
+
+wxAnimation::wxAnimation(wxAnimationImpl* impl)
+{
+ m_refData = impl;
+}
+
+wxAnimation::wxAnimation(const wxString &name, wxAnimationType type)
+{
+ m_refData = wxAnimationImpl::CreateDefault();
+ LoadFile(name, type);
+}
+
+wxAnimationImpl* wxAnimation::GetImpl() const
+{
+ return static_cast(m_refData);
+}
+
+bool wxAnimation::IsOk() const
+{
+ return GetImpl() && GetImpl()->IsOk();
+}
+
+bool wxAnimation::IsCompatibleWith(wxClassInfo* ci) const
+{
+ wxCHECK_MSG( IsOk(), false, wxT("invalid animation") );
+
+ return GetImpl()->IsCompatibleWith(ci);
+}
+
+int wxAnimation::GetDelay(unsigned int frame) const
+{
+ wxCHECK_MSG( IsOk(), -1, wxT("invalid animation") );
+ return GetImpl()->GetDelay(frame);
+}
+
+unsigned int wxAnimation::GetFrameCount() const
+{
+ wxCHECK_MSG( IsOk(), 0, wxT("invalid animation") );
+ return GetImpl()->GetFrameCount();
+}
+
+wxImage wxAnimation::GetFrame(unsigned int frame) const
+{
+ wxCHECK_MSG( IsOk(), wxNullImage, wxT("invalid animation") );
+ return GetImpl()->GetFrame(frame);
+}
+
+wxSize wxAnimation::GetSize() const
+{
+ wxCHECK_MSG( IsOk(), wxDefaultSize, wxT("invalid animation") );
+ return GetImpl()->GetSize();
+}
+
+bool wxAnimation::LoadFile(const wxString& name, wxAnimationType type)
+{
+ // the animation impl may not be fully ready until after it has loaded the
+ // file, so just check GetImpl in the Load methods
+ wxCHECK_MSG( GetImpl(), false, wxT("invalid animation") );
+ return GetImpl()->LoadFile(name, type);
+}
+
+bool wxAnimation::Load(wxInputStream& stream, wxAnimationType type)
+{
+ wxCHECK_MSG( GetImpl(), false, wxT("invalid animation") );
+ return GetImpl()->Load(stream, type);
+}
// ----------------------------------------------------------------------------
@@ -103,4 +195,96 @@ void wxAnimationCtrlBase::SetInactiveBitmap(const wxBitmap &bmp)
DisplayStaticImage();
}
+// ----------------------------------------------------------------------------
+// animation decoders
+// ----------------------------------------------------------------------------
+
+void wxAnimation::AddHandler( wxAnimationDecoder *handler )
+{
+ // Check for an existing handler of the type being added.
+ if (FindHandler( handler->GetType() ) == 0)
+ {
+ sm_handlers.Append( handler );
+ }
+ else
+ {
+ // This is not documented behaviour, merely the simplest 'fix'
+ // for preventing duplicate additions. If someone ever has
+ // a good reason to add and remove duplicate handlers (and they
+ // may) we should probably refcount the duplicates.
+
+ wxLogDebug( wxT("Adding duplicate animation handler for '%d' type"),
+ handler->GetType() );
+ delete handler;
+ }
+}
+
+void wxAnimation::InsertHandler( wxAnimationDecoder *handler )
+{
+ // Check for an existing handler of the type being added.
+ if (FindHandler( handler->GetType() ) == 0)
+ {
+ sm_handlers.Insert( handler );
+ }
+ else
+ {
+ // see AddHandler for additional comments.
+ wxLogDebug( wxT("Inserting duplicate animation handler for '%d' type"),
+ handler->GetType() );
+ delete handler;
+ }
+}
+
+const wxAnimationDecoder *wxAnimation::FindHandler( wxAnimationType animType )
+{
+ wxAnimationDecoderList::compatibility_iterator node = sm_handlers.GetFirst();
+ while (node)
+ {
+ const wxAnimationDecoder *handler = (const wxAnimationDecoder *)node->GetData();
+ if (handler->GetType() == animType) return handler;
+ node = node->GetNext();
+ }
+ return 0;
+}
+
+void wxAnimation::InitStandardHandlers()
+{
+#if wxUSE_GIF
+ AddHandler(new wxGIFDecoder);
+#endif // wxUSE_GIF
+#if wxUSE_ICO_CUR
+ AddHandler(new wxANIDecoder);
+#endif // wxUSE_ICO_CUR
+}
+
+void wxAnimation::CleanUpHandlers()
+{
+ wxAnimationDecoderList::compatibility_iterator node = sm_handlers.GetFirst();
+ while (node)
+ {
+ wxAnimationDecoder *handler = (wxAnimationDecoder *)node->GetData();
+ wxAnimationDecoderList::compatibility_iterator next = node->GetNext();
+ delete handler;
+ node = next;
+ }
+
+ sm_handlers.Clear();
+}
+
+
+// A module to allow wxAnimation initialization/cleanup
+// without calling these functions from app.cpp or from
+// the user's application.
+
+class wxAnimationModule: public wxModule
+{
+ wxDECLARE_DYNAMIC_CLASS(wxAnimationModule);
+public:
+ wxAnimationModule() {}
+ bool OnInit() wxOVERRIDE { wxAnimation::InitStandardHandlers(); return true; }
+ void OnExit() wxOVERRIDE { wxAnimation::CleanUpHandlers(); }
+};
+
+wxIMPLEMENT_DYNAMIC_CLASS(wxAnimationModule, wxModule);
+
#endif // wxUSE_ANIMATIONCTRL
diff --git a/src/common/arrstr.cpp b/src/common/arrstr.cpp
index e3ebe2e43e..1b05c1d556 100644
--- a/src/common/arrstr.cpp
+++ b/src/common/arrstr.cpp
@@ -59,7 +59,7 @@ wxArrayString::wxArrayString(size_t sz, const wxString* a)
#include "wx/arrstr.h"
-#if __cplusplus >= 201103L
+#if __cplusplus >= 201103L || wxCHECK_VISUALC_VERSION(14)
int wxArrayString::Index(const wxString& str, bool bCase, bool WXUNUSED(bFromEnd)) const
{
@@ -153,7 +153,7 @@ wxStringCompareLess wxStringCompare(F f)
void wxArrayString::Sort(CompareFunction function)
{
std::sort(begin(), end(),
-#if __cplusplus >= 201103L
+#if __cplusplus >= 201103L || wxCHECK_VISUALC_VERSION(14)
[function](const wxString& s1, const wxString& s2)
{
return function(s1, s2) < 0;
@@ -185,7 +185,7 @@ int wxSortedArrayString::Index(const wxString& str,
wxSortedArrayString::const_iterator
it = std::lower_bound(begin(), end(), str,
-#if __cplusplus >= 201103L
+#if __cplusplus >= 201103L || wxCHECK_VISUALC_VERSION(14)
[](const wxString& s1, const wxString& s2)
{
return s1 < s2;
diff --git a/src/common/clntdata.cpp b/src/common/clntdata.cpp
index 1cb5595785..8ecddc2241 100644
--- a/src/common/clntdata.cpp
+++ b/src/common/clntdata.cpp
@@ -40,9 +40,7 @@ void wxClientDataContainer::DoSetClientObject( wxClientData *data )
wxASSERT_MSG( m_clientDataType != wxClientData_Void,
wxT("can't have both object and void client data") );
- if ( m_clientObject )
- delete m_clientObject;
-
+ delete m_clientObject;
m_clientObject = data;
m_clientDataType = wxClientData_Object;
}
diff --git a/src/common/cmndata.cpp b/src/common/cmndata.cpp
index 92b8ba4633..3361c17d04 100644
--- a/src/common/cmndata.cpp
+++ b/src/common/cmndata.cpp
@@ -107,8 +107,7 @@ wxPrintData::~wxPrintData()
if (m_nativeData->m_ref == 0)
delete m_nativeData;
- if (m_privData)
- delete [] m_privData;
+ delete[] m_privData;
}
void wxPrintData::ConvertToNative()
diff --git a/src/common/combocmn.cpp b/src/common/combocmn.cpp
index d3920f9d8c..5ede7dfd42 100644
--- a/src/common/combocmn.cpp
+++ b/src/common/combocmn.cpp
@@ -2086,6 +2086,9 @@ void wxComboCtrlBase::OnCharEvent(wxKeyEvent& event)
void wxComboCtrlBase::OnFocusEvent( wxFocusEvent& event )
{
+ // Always let default handling of focus events to take place.
+ event.Skip();
+
// On Mac, setting focus here led to infinite recursion so
// m_resetFocus is used as a guard
diff --git a/src/common/config.cpp b/src/common/config.cpp
index c4382ef656..924ed51c86 100644
--- a/src/common/config.cpp
+++ b/src/common/config.cpp
@@ -140,7 +140,7 @@ wxConfigBase *wxConfigBase::Create()
{ \
if ( IsRecordingDefaults() ) \
{ \
- ((wxConfigBase *)this)->DoWrite##name(key, defVal); \
+ const_cast(this)->DoWrite##name(key, defVal);\
} \
\
*val = defVal; \
diff --git a/src/common/ctrlsub.cpp b/src/common/ctrlsub.cpp
index 03435b7056..d680c3c1ca 100644
--- a/src/common/ctrlsub.cpp
+++ b/src/common/ctrlsub.cpp
@@ -170,8 +170,7 @@ void wxItemContainer::SetClientObject(unsigned int n, wxClientData *data)
{
wxClientData * clientDataOld =
static_cast(DoGetItemClientData(n));
- if ( clientDataOld )
- delete clientDataOld;
+ delete clientDataOld;
}
else // didn't have any client data so far
{
diff --git a/src/common/datavcmn.cpp b/src/common/datavcmn.cpp
index 1099b653a6..76073485e1 100644
--- a/src/common/datavcmn.cpp
+++ b/src/common/datavcmn.cpp
@@ -2485,8 +2485,7 @@ wxDataViewTreeStoreNode::wxDataViewTreeStoreNode(
wxDataViewTreeStoreNode::~wxDataViewTreeStoreNode()
{
- if (m_data)
- delete m_data;
+ delete m_data;
}
wxDataViewTreeStoreContainerNode::wxDataViewTreeStoreContainerNode(
diff --git a/src/common/dcsvg.cpp b/src/common/dcsvg.cpp
index 6fa8108632..cd1d678ebe 100644
--- a/src/common/dcsvg.cpp
+++ b/src/common/dcsvg.cpp
@@ -270,6 +270,9 @@ wxString GetBrushStyleName(const wxBrush& brush)
break;
}
+ if (!brushStyle.empty())
+ brushStyle += wxString::Format(wxS("%s%02X"), Col2SVG(brush.GetColour()).substr(1), brush.GetColour().Alpha());
+
return brushStyle;
}
@@ -279,7 +282,7 @@ wxString GetBrushPattern(const wxBrush& brush)
wxString brushStyle = GetBrushStyleName(brush);
if (!brushStyle.empty())
- s = wxS("fill=\"url(#") + brushStyle + Col2SVG(brush.GetColour()).substr(1) + wxS(")\"");
+ s = wxString::Format(wxS("fill=\"url(#%s)\""), brushStyle);
return s;
}
@@ -339,12 +342,14 @@ wxString CreateBrushFill(const wxBrush& brush, wxSVGShapeRenderingMode mode)
break;
}
- wxString brushColourStr = Col2SVG(brush.GetColour());
+ float opacity;
+ wxString brushColourStr = Col2SVG(brush.GetColour(), &opacity);
+ wxString brushStrokeStr = wxS("stroke-width:1; stroke-linecap:round; stroke-linejoin:round;");
- s += wxString::Format(wxS(" \n"),
- patternName, brushColourStr.substr(1));
- s += wxString::Format(wxS(" \n"),
- brushColourStr, pattern, GetRenderMode(mode));
+ s += wxString::Format(wxS(" \n"),
+ patternName);
+ s += wxString::Format(wxS(" \n"),
+ brushColourStr, NumStr(opacity), brushStrokeStr, pattern, GetRenderMode(mode));
s += wxS(" \n");
}
diff --git a/src/common/descrip.mms b/src/common/descrip.mms
index 181e126786..234883eb83 100644
--- a/src/common/descrip.mms
+++ b/src/common/descrip.mms
@@ -2,33 +2,33 @@
# *
# Make file for VMS *
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
-# Date : 13 September 2019 *
+# Date : 4 March 2020 *
# *
#*****************************************************************************
.first
define wx [--.include.wx]
.ifdef __WXMOTIF__
-CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
+CXX_DEFINE = /define=(__WXMOTIF__=1,WXBUILDING=1)/name=(as_is,short)\
/assume=(nostdnew,noglobal_array_new)/incl=[-.regex]
-CC_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)/incl=[-.regex]
+CC_DEFINE = /define=(__WXMOTIF__=1,WXBUILDING=1)/name=(as_is,short)/incl=[-.regex]
.else
.ifdef __WXGTK__
-CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
+CXX_DEFINE = /define=(__WXGTK__=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/ieee=denorm\
/assume=(nostdnew,noglobal_array_new)/incl=[-.regex]
-CC_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
+CC_DEFINE = /define=(__WXGTK__=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/ieee=denorm\
/incl=[-.regex]
.else
.ifdef __WXGTK2__
-CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm\
+CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/ieee=denorm\
/assume=(nostdnew,noglobal_array_new)/incl=[-.regex]
-CC_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)\
+CC_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1,WXBUILDING=1)/float=ieee/name=(as_is,short)\
/ieee=denorm/incl=[-.regex]
.else
.ifdef __WXX11__
-CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
+CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)/assume=(nostdnew,noglobal_array_new)/incl=[-.regex]
-CC_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
+CC_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)/incl=[-.regex]
.else
CXX_DEFINE =
diff --git a/src/common/encconv.cpp b/src/common/encconv.cpp
index a95c7f7208..b08b063682 100644
--- a/src/common/encconv.cpp
+++ b/src/common/encconv.cpp
@@ -80,7 +80,7 @@ extern "C"
static int wxCMPFUNC_CONV
CompareCharsetItems(const void *i1, const void *i2)
{
- return ( ((CharsetItem*)i1) -> u - ((CharsetItem*)i2) -> u );
+ return static_cast(i1)->u - static_cast(i2)->u;
}
}
diff --git a/src/common/event.cpp b/src/common/event.cpp
index 83820b54b4..2d7b822c38 100644
--- a/src/common/event.cpp
+++ b/src/common/event.cpp
@@ -458,6 +458,22 @@ wxString wxCommandEvent::GetString() const
return m_cmdString;
}
+// ----------------------------------------------------------------------------
+// wxPaintEvent and wxNcPaintEvent
+// ----------------------------------------------------------------------------
+
+wxPaintEvent::wxPaintEvent(wxWindowBase* window)
+ : wxEvent(window ? window->GetId() : 0, wxEVT_PAINT)
+{
+ SetEventObject(window);
+}
+
+wxNcPaintEvent::wxNcPaintEvent(wxWindowBase* window)
+ : wxEvent(window ? window->GetId() : 0, wxEVT_NC_PAINT)
+{
+ SetEventObject(window);
+}
+
// ----------------------------------------------------------------------------
// wxUpdateUIEvent
// ----------------------------------------------------------------------------
@@ -1919,8 +1935,7 @@ void wxEvtHandler::DoSetClientObject( wxClientData *data )
wxASSERT_MSG( m_clientDataType != wxClientData_Void,
wxT("can't have both object and void client data") );
- if ( m_clientObject )
- delete m_clientObject;
+ delete m_clientObject;
m_clientObject = data;
m_clientDataType = wxClientData_Object;
diff --git a/src/common/evtloopcmn.cpp b/src/common/evtloopcmn.cpp
index bc713b84e1..223e81b531 100644
--- a/src/common/evtloopcmn.cpp
+++ b/src/common/evtloopcmn.cpp
@@ -270,7 +270,15 @@ int wxEventLoopManual::DoRun()
// generate and process idle events for as long as we don't
// have anything else to do, but stop doing this if Exit() is
// called by one of the idle handlers
- while ( !m_shouldExit && !Pending() && ProcessIdle() )
+ //
+ // note that Pending() only checks for pending events from the
+ // underlying toolkit, but not our own pending events added by
+ // QueueEvent(), so we need to call HasPendingEvents() to check
+ // for them too
+ while ( !m_shouldExit
+ && !Pending()
+ && !(wxTheApp && wxTheApp->HasPendingEvents())
+ && ProcessIdle() )
;
// if Exit() was called, don't dispatch any more events here
diff --git a/src/common/ffile.cpp b/src/common/ffile.cpp
index b77a60c649..22ff7411d0 100644
--- a/src/common/ffile.cpp
+++ b/src/common/ffile.cpp
@@ -31,10 +31,11 @@
#include "wx/crt.h"
#endif
+#include "wx/filename.h"
#include "wx/ffile.h"
// ============================================================================
-// implementation
+// implementation of wxFFile
// ============================================================================
// ----------------------------------------------------------------------------
@@ -296,4 +297,105 @@ bool wxFFile::Error() const
return ferror(m_fp) != 0;
}
+// ============================================================================
+// implementation of wxTempFFile
+// ============================================================================
+
+// ----------------------------------------------------------------------------
+// construction
+// ----------------------------------------------------------------------------
+
+wxTempFFile::wxTempFFile(const wxString& strName)
+{
+ Open(strName);
+}
+
+bool wxTempFFile::Open(const wxString& strName)
+{
+ // we must have an absolute filename because otherwise CreateTempFileName()
+ // would create the temp file in $TMP (i.e. the system standard location
+ // for the temp files) which might be on another volume/drive/mount and
+ // wxRename()ing it later to m_strName from Commit() would then fail
+ //
+ // with the absolute filename, the temp file is created in the same
+ // directory as this one which ensures that wxRename() may work later
+ wxFileName fn(strName);
+ if ( !fn.IsAbsolute() )
+ {
+ fn.Normalize(wxPATH_NORM_ABSOLUTE);
+ }
+
+ m_strName = fn.GetFullPath();
+
+ m_strTemp = wxFileName::CreateTempFileName(m_strName, &m_file);
+
+ if ( m_strTemp.empty() )
+ {
+ // CreateTempFileName() failed
+ return false;
+ }
+
+#ifdef __UNIX__
+ // the temp file should have the same permissions as the original one
+ mode_t mode;
+
+ wxStructStat st;
+ if ( stat( (const char*) m_strName.fn_str(), &st) == 0 )
+ {
+ mode = st.st_mode;
+ }
+ else
+ {
+ // file probably didn't exist, just give it the default mode _using_
+ // user's umask (new files creation should respect umask)
+ mode_t mask = umask(0777);
+ mode = 0666 & ~mask;
+ umask(mask);
+ }
+
+ if ( chmod( (const char*) m_strTemp.fn_str(), mode) == -1 )
+ {
+ wxLogSysError(_("Failed to set temporary file permissions"));
+ }
+#endif // Unix
+
+ return true;
+}
+
+// ----------------------------------------------------------------------------
+// destruction
+// ----------------------------------------------------------------------------
+
+wxTempFFile::~wxTempFFile()
+{
+ if ( IsOpened() )
+ Discard();
+}
+
+bool wxTempFFile::Commit()
+{
+ m_file.Close();
+
+ if ( wxFile::Exists(m_strName) && wxRemove(m_strName) != 0 ) {
+ wxLogSysError(_("can't remove file '%s'"), m_strName.c_str());
+ return false;
+ }
+
+ if ( !wxRenameFile(m_strTemp, m_strName) ) {
+ wxLogSysError(_("can't commit changes to file '%s'"), m_strName.c_str());
+ return false;
+ }
+
+ return true;
+}
+
+void wxTempFFile::Discard()
+{
+ m_file.Close();
+ if ( wxRemove(m_strTemp) != 0 )
+ {
+ wxLogSysError(_("can't remove temporary file '%s'"), m_strTemp.c_str());
+ }
+}
+
#endif // wxUSE_FFILE
diff --git a/src/common/file.cpp b/src/common/file.cpp
index 9446bb32d9..717f66f334 100644
--- a/src/common/file.cpp
+++ b/src/common/file.cpp
@@ -479,7 +479,8 @@ wxFileOffset wxFile::Length() const
wxFileOffset iLen = const_cast(this)->SeekEnd();
if ( iLen != wxInvalidOffset ) {
// restore old position
- if ( ((wxFile *)this)->Seek(iRc) == wxInvalidOffset ) {
+ if (const_cast(this)->Seek(iRc) == wxInvalidOffset)
+ {
// error
iLen = wxInvalidOffset;
}
diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp
index 51ac27ade9..ce25de9ebc 100644
--- a/src/common/filefn.cpp
+++ b/src/common/filefn.cpp
@@ -796,7 +796,16 @@ wxString wxPathOnly (const wxString& path)
// and back again - or we get nasty problems with delimiters.
// Also, convert to lower case, since case is significant in UNIX.
-#if defined(__WXMAC__) && !defined(__WXOSX_IPHONE__)
+#ifdef __WXOSX__
+
+CFURLRef wxOSXCreateURLFromFileSystemPath( const wxString& path)
+{
+ wxCFRef cfMutableString(CFStringCreateMutableCopy(NULL, 0, wxCFStringRef(path)));
+ CFStringNormalize(cfMutableString,kCFStringNormalizationFormD);
+ return CFURLCreateWithFileSystemPath(kCFAllocatorDefault, cfMutableString , kCFURLPOSIXPathStyle, false);
+}
+
+#ifndef __WXOSX_IPHONE__
wxString wxMacFSRefToPath( const FSRef *fsRef , CFStringRef additionalPathComponent )
{
@@ -842,13 +851,6 @@ wxString wxMacHFSUniStrToString( ConstHFSUniStr255Param uniname )
return wxCFStringRef::AsStringWithNormalizationFormC(cfname);
}
-CFURLRef wxOSXCreateURLFromFileSystemPath( const wxString& path)
-{
- wxCFRef cfMutableString(CFStringCreateMutableCopy(NULL, 0, wxCFStringRef(path)));
- CFStringNormalize(cfMutableString,kCFStringNormalizationFormD);
- return CFURLCreateWithFileSystemPath(kCFAllocatorDefault, cfMutableString , kCFURLPOSIXPathStyle, false);
-}
-
#ifndef __LP64__
wxString wxMacFSSpec2MacFilename( const FSSpec *spec )
@@ -871,6 +873,8 @@ void wxMacFilename2FSSpec( const wxString& path , FSSpec *spec )
}
#endif
+#endif // !__WXOSX_IPHONE__
+
#endif // __WXMAC__
diff --git a/src/common/filename.cpp b/src/common/filename.cpp
index ea4597078e..474f7fa1c1 100644
--- a/src/common/filename.cpp
+++ b/src/common/filename.cpp
@@ -945,7 +945,7 @@ static wxString wxCreateTempImpl(
wxCharBuffer buf(path.fn_str());
// cast is safe because the string length doesn't change
- int fdTemp = mkstemp( (char*)(const char*) buf );
+ int fdTemp = mkstemp(const_cast(static_cast(buf)));
if ( fdTemp == -1 )
{
// this might be not necessary as mkstemp() on most systems should have
diff --git a/src/common/fmapbase.cpp b/src/common/fmapbase.cpp
index 0c434aef67..1fafeb4234 100644
--- a/src/common/fmapbase.cpp
+++ b/src/common/fmapbase.cpp
@@ -407,8 +407,7 @@ wxFontMapperBase::wxFontMapperBase()
wxFontMapperBase::~wxFontMapperBase()
{
#if wxUSE_CONFIG && wxUSE_FILECONFIG
- if ( m_configDummy )
- delete m_configDummy;
+ delete m_configDummy;
#endif // wxUSE_CONFIG
}
diff --git a/src/common/fontcmn.cpp b/src/common/fontcmn.cpp
index cadf89b1e5..ab2fa540dc 100644
--- a/src/common/fontcmn.cpp
+++ b/src/common/fontcmn.cpp
@@ -261,7 +261,7 @@ int wxFontBase::GetPointSize() const
wxSize wxFontBase::GetPixelSize() const
{
wxScreenDC dc;
- dc.SetFont(*(wxFont *)this);
+ dc.SetFont(*static_cast(this));
return wxSize(dc.GetCharWidth(), dc.GetCharHeight());
}
diff --git a/src/common/fswatchercmn.cpp b/src/common/fswatchercmn.cpp
index 133aaa5a2d..f54acd467c 100644
--- a/src/common/fswatchercmn.cpp
+++ b/src/common/fswatchercmn.cpp
@@ -87,10 +87,7 @@ wxFileSystemWatcherBase::wxFileSystemWatcherBase() :
wxFileSystemWatcherBase::~wxFileSystemWatcherBase()
{
RemoveAll();
- if (m_service)
- {
- delete m_service;
- }
+ delete m_service;
}
bool wxFileSystemWatcherBase::Add(const wxFileName& path, int events)
diff --git a/src/common/gbsizer.cpp b/src/common/gbsizer.cpp
index 1f4e7d25cf..1d43e408e0 100644
--- a/src/common/gbsizer.cpp
+++ b/src/common/gbsizer.cpp
@@ -182,11 +182,9 @@ wxSizerItem* wxGridBagSizer::Add( wxWindow *window,
wxGBSizerItem* item = new wxGBSizerItem(window, pos, span, flag, border, userData);
if ( Add(item) )
return item;
- else
- {
- delete item;
- return NULL;
- }
+
+ delete item;
+ return NULL;
}
wxSizerItem* wxGridBagSizer::Add( wxSizer *sizer,
@@ -196,11 +194,9 @@ wxSizerItem* wxGridBagSizer::Add( wxSizer *sizer,
wxGBSizerItem* item = new wxGBSizerItem(sizer, pos, span, flag, border, userData);
if ( Add(item) )
return item;
- else
- {
- delete item;
- return NULL;
- }
+
+ delete item;
+ return NULL;
}
wxSizerItem* wxGridBagSizer::Add( int width, int height,
@@ -210,11 +206,9 @@ wxSizerItem* wxGridBagSizer::Add( int width, int height,
wxGBSizerItem* item = new wxGBSizerItem(width, height, pos, span, flag, border, userData);
if ( Add(item) )
return item;
- else
- {
- delete item;
- return NULL;
- }
+
+ delete item;
+ return NULL;
}
wxSizerItem* wxGridBagSizer::Add( wxGBSizerItem *item )
diff --git a/src/common/image.cpp b/src/common/image.cpp
index 2bf29a0864..096f823f0c 100644
--- a/src/common/image.cpp
+++ b/src/common/image.cpp
@@ -2641,7 +2641,7 @@ bool wxImage::SaveFile( const wxString& WXUNUSED_UNLESS_STREAMS(filename),
#if HAS_FILE_STREAMS
wxCHECK_MSG( IsOk(), false, wxT("invalid image") );
- ((wxImage*)this)->SetOption(wxIMAGE_OPTION_FILENAME, filename);
+ const_cast(this)->SetOption(wxIMAGE_OPTION_FILENAME, filename);
wxImageFileOutputStream stream(filename);
@@ -2661,7 +2661,7 @@ bool wxImage::SaveFile( const wxString& WXUNUSED_UNLESS_STREAMS(filename),
#if HAS_FILE_STREAMS
wxCHECK_MSG( IsOk(), false, wxT("invalid image") );
- ((wxImage*)this)->SetOption(wxIMAGE_OPTION_FILENAME, filename);
+ const_cast(this)->SetOption(wxIMAGE_OPTION_FILENAME, filename);
wxImageFileOutputStream stream(filename);
diff --git a/src/common/imagiff.cpp b/src/common/imagiff.cpp
index 032e1526a6..32510b799f 100644
--- a/src/common/imagiff.cpp
+++ b/src/common/imagiff.cpp
@@ -360,7 +360,7 @@ int wxIFFDecoder::ReadIFF()
}
// check if we really got an IFF file
- if (strncmp((char *)dataptr, "FORM", 4) != 0) {
+ if (strncmp(reinterpret_cast(dataptr), "FORM", 4) != 0) {
Destroy();
return wxIFF_INVFORMAT;
}
@@ -368,7 +368,7 @@ int wxIFFDecoder::ReadIFF()
dataptr = dataptr + 8; // skip ID and length of FORM
// check if the IFF file is an ILBM (picture) file
- if (strncmp((char *) dataptr, "ILBM", 4) != 0) {
+ if (strncmp(reinterpret_cast(dataptr), "ILBM", 4) != 0) {
Destroy();
return wxIFF_INVFORMAT;
}
@@ -394,7 +394,7 @@ int wxIFFDecoder::ReadIFF()
}
bool truncated = (dataptr + 8 + chunkLen > dataend);
- if (strncmp((char *)dataptr, "BMHD", 4) == 0) { // BMHD chunk?
+ if (strncmp(reinterpret_cast(dataptr), "BMHD", 4) == 0) { // BMHD chunk?
if (chunkLen < 12 + 2 || truncated) {
break;
}
@@ -407,7 +407,7 @@ int wxIFFDecoder::ReadIFF()
BMHDok = true; // got BMHD
dataptr += 8 + chunkLen; // to next chunk
}
- else if (strncmp((char *)dataptr, "CMAP", 4) == 0) { // CMAP ?
+ else if (strncmp(reinterpret_cast(dataptr), "CMAP", 4) == 0) { // CMAP ?
if (truncated) {
break;
}
@@ -435,7 +435,7 @@ int wxIFFDecoder::ReadIFF()
colors);
dataptr += 8 + chunkLen; // to next chunk
- } else if (strncmp((char *)dataptr, "CAMG", 4) == 0) { // CAMG ?
+ } else if (strncmp(reinterpret_cast(dataptr), "CAMG", 4) == 0) { // CAMG ?
if (chunkLen < 4 || truncated) {
break;
}
@@ -443,7 +443,7 @@ int wxIFFDecoder::ReadIFF()
CAMGok = true; // got CAMG
dataptr += 8 + chunkLen; // to next chunk
}
- else if (strncmp((char *)dataptr, "BODY", 4) == 0) { // BODY ?
+ else if (strncmp(reinterpret_cast(dataptr), "BODY", 4) == 0) { // BODY ?
if (!BMHDok) { // BMHD found?
break;
}
diff --git a/src/common/list.cpp b/src/common/list.cpp
index 3b51fce4ff..e5a30cac4a 100644
--- a/src/common/list.cpp
+++ b/src/common/list.cpp
@@ -689,10 +689,10 @@ static int LINKAGEMODE
wx_comparestrings(const void *arg1, const void *arg2)
{
- wxChar **s1 = (wxChar **) arg1;
- wxChar **s2 = (wxChar **) arg2;
+ const wxChar* s1 = *static_cast(arg1);
+ const wxChar* s2 = *static_cast(arg2);
- return wxStrcmp (*s1, *s2);
+ return wxStrcmp(s1, s2);
}
} // end of extern "C" (required because of GCC Bug c++/33078
diff --git a/src/common/mediactrlcmn.cpp b/src/common/mediactrlcmn.cpp
index 1b272d3948..13b2f503d8 100644
--- a/src/common/mediactrlcmn.cpp
+++ b/src/common/mediactrlcmn.cpp
@@ -269,8 +269,7 @@ const wxClassInfo* wxMediaCtrl::NextBackend(wxClassInfo::const_iterator* it)
//---------------------------------------------------------------------------
wxMediaCtrl::~wxMediaCtrl()
{
- if (m_imp)
- delete m_imp;
+ delete m_imp;
}
//---------------------------------------------------------------------------
diff --git a/src/common/menucmn.cpp b/src/common/menucmn.cpp
index d665f18c20..f23aa68322 100644
--- a/src/common/menucmn.cpp
+++ b/src/common/menucmn.cpp
@@ -537,7 +537,7 @@ wxMenuItem *wxMenuBase::FindItem(int itemId, wxMenu **itemMenu) const
if ( item->GetId() == itemId )
{
if ( itemMenu )
- *itemMenu = (wxMenu *)this;
+ *itemMenu = const_cast(static_cast(this));
}
else if ( item->IsSubMenu() )
{
diff --git a/src/common/mimecmn.cpp b/src/common/mimecmn.cpp
index 175fcb205e..a57e657a33 100644
--- a/src/common/mimecmn.cpp
+++ b/src/common/mimecmn.cpp
@@ -290,8 +290,7 @@ wxFileType::wxFileType()
wxFileType::~wxFileType()
{
- if ( m_impl )
- delete m_impl;
+ delete m_impl;
}
bool wxFileType::GetExtensions(wxArrayString& extensions)
@@ -589,8 +588,7 @@ wxMimeTypesManager::wxMimeTypesManager()
wxMimeTypesManager::~wxMimeTypesManager()
{
- if ( m_impl )
- delete m_impl;
+ delete m_impl;
}
bool wxMimeTypesManager::Unassociate(wxFileType *ft)
diff --git a/src/common/prntbase.cpp b/src/common/prntbase.cpp
index 7ea4d88441..2ec82bc0c0 100644
--- a/src/common/prntbase.cpp
+++ b/src/common/prntbase.cpp
@@ -85,9 +85,7 @@ wxPrintFactory *wxPrintFactory::m_factory = NULL;
void wxPrintFactory::SetPrintFactory( wxPrintFactory *factory )
{
- if (wxPrintFactory::m_factory)
- delete wxPrintFactory::m_factory;
-
+ delete wxPrintFactory::m_factory;
wxPrintFactory::m_factory = factory;
}
@@ -349,7 +347,7 @@ void wxPrinterBase::ReportError(wxWindow *parent, wxPrintout *WXUNUSED(printout)
wxPrintDialogData& wxPrinterBase::GetPrintDialogData() const
{
- return (wxPrintDialogData&) m_printDialogData;
+ return const_cast(m_printDialogData);
}
//----------------------------------------------------------------------------
@@ -1873,12 +1871,9 @@ void wxPrintPreviewBase::Init(wxPrintout *printout,
wxPrintPreviewBase::~wxPrintPreviewBase()
{
- if (m_previewPrintout)
- delete m_previewPrintout;
- if (m_previewBitmap)
- delete m_previewBitmap;
- if (m_printPrintout)
- delete m_printPrintout;
+ delete m_previewPrintout;
+ delete m_previewBitmap;
+ delete m_printPrintout;
}
bool wxPrintPreviewBase::SetCurrentPage(int pageNum)
diff --git a/src/common/secretstore.cpp b/src/common/secretstore.cpp
index f00dc3dd26..672fdd17fe 100644
--- a/src/common/secretstore.cpp
+++ b/src/common/secretstore.cpp
@@ -162,6 +162,19 @@ wxSecretStore::~wxSecretStore()
// Methods forwarded to wxSecretStoreImpl
// ----------------------------------------------------------------------------
+bool
+wxSecretStore::IsOk(wxString* errmsg) const
+{
+ if ( !m_impl )
+ {
+ if ( errmsg )
+ *errmsg = _("Not available for this platform");
+ return false;
+ }
+
+ return m_impl->IsOk(errmsg);
+}
+
bool
wxSecretStore::Save(const wxString& service,
const wxString& user,
diff --git a/src/common/selectdispatcher.cpp b/src/common/selectdispatcher.cpp
index 13639392e3..6b1f98536f 100644
--- a/src/common/selectdispatcher.cpp
+++ b/src/common/selectdispatcher.cpp
@@ -78,7 +78,7 @@ bool wxSelectSets::HasFD(int fd) const
{
for ( int n = 0; n < Max; n++ )
{
- if ( wxFD_ISSET(fd, (fd_set*) &m_fds[n]) )
+ if ( wxFD_ISSET(fd, const_cast(&m_fds[n])) )
return true;
}
@@ -113,7 +113,7 @@ bool wxSelectSets::Handle(int fd, wxFDIOHandler& handler) const
{
for ( int n = 0; n < Max; n++ )
{
- if ( wxFD_ISSET(fd, (fd_set*) &m_fds[n]) )
+ if ( wxFD_ISSET(fd, const_cast(&m_fds[n])) )
{
wxLogTrace(wxSelectDispatcher_Trace,
wxT("Got %s event on fd %d"), ms_names[n], fd);
diff --git a/src/common/spinctrlcmn.cpp b/src/common/spinctrlcmn.cpp
index 7098ff1d04..42e571dfac 100644
--- a/src/common/spinctrlcmn.cpp
+++ b/src/common/spinctrlcmn.cpp
@@ -22,13 +22,13 @@
#pragma hdrstop
#endif
+#if wxUSE_SPINCTRL
+
#include "wx/spinbutt.h"
#include "wx/spinctrl.h"
#include "wx/private/spinctrl.h"
-#if wxUSE_SPINCTRL
-
wxDEFINE_EVENT(wxEVT_SPINCTRL, wxSpinEvent);
wxDEFINE_EVENT(wxEVT_SPINCTRLDOUBLE, wxSpinDoubleEvent);
diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp
index e839a3a0d3..ba04f3c144 100644
--- a/src/common/strconv.cpp
+++ b/src/common/strconv.cpp
@@ -2047,7 +2047,7 @@ wxMBConvUTF32swap::FromWChar(char *dst, size_t dstLen,
#define ICONV_FAILED(cres, bufLeft) (cres == (size_t)-1)
#endif
-#define ICONV_CHAR_CAST(x) ((ICONV_CONST char **)(x))
+#define ICONV_CHAR_CAST(x) const_cast(x)
#define ICONV_T_INVALID ((iconv_t)-1)
@@ -2396,7 +2396,7 @@ size_t wxMBConv_iconv::FromWChar(char *dst, size_t dstLen,
src = tmpbuf;
}
- char* inbuf = (char*)src;
+ const char* inbuf = reinterpret_cast(src);
if ( dst )
{
// have destination buffer, convert there
@@ -2450,7 +2450,7 @@ size_t wxMBConv_iconv::GetMBNulLen() const
char buf[8]; // should be enough for NUL in any encoding
size_t inLen = sizeof(wchar_t),
outLen = WXSIZEOF(buf);
- char *inBuff = (char *)wnul;
+ const char* inBuff = reinterpret_cast(wnul);
char *outBuff = buf;
if ( iconv(w2m, ICONV_CHAR_CAST(&inBuff), &inLen, &outBuff, &outLen) == (size_t)-1 )
{
diff --git a/src/common/stream.cpp b/src/common/stream.cpp
index 97ba7588e7..b5eb381ada 100644
--- a/src/common/stream.cpp
+++ b/src/common/stream.cpp
@@ -511,7 +511,7 @@ size_t wxStreamBuffer::Write(const void *buffer, size_t size)
{
PutToBuffer(buffer, left);
size -= left;
- buffer = (char *)buffer + left;
+ buffer = static_cast(buffer) + left;
if ( !FlushBuffer() )
{
diff --git a/src/common/textentrycmn.cpp b/src/common/textentrycmn.cpp
index b9aa7640d6..731251ce7f 100644
--- a/src/common/textentrycmn.cpp
+++ b/src/common/textentrycmn.cpp
@@ -341,7 +341,9 @@ namespace
// Poor man's lambda: helper for binding ConvertToUpperCase() to the event
struct ForceUpperFunctor
{
- explicit ForceUpperFunctor(wxTextEntryBase* entry)
+ // This class must have default ctor in wxNO_RTTI case, so allow creating
+ // it with null entry even if this never actually happens in practice.
+ explicit ForceUpperFunctor(wxTextEntryBase* entry = NULL)
: m_entry(entry)
{
}
diff --git a/src/common/translation.cpp b/src/common/translation.cpp
index 97162940ac..ee8b586fa0 100644
--- a/src/common/translation.cpp
+++ b/src/common/translation.cpp
@@ -1065,6 +1065,7 @@ private:
// data description
size_t32 m_numStrings; // number of strings in this domain
+ const
wxMsgTableEntry *m_pOrigTable, // pointer to original strings
*m_pTransTable; // translated
@@ -1079,7 +1080,7 @@ private:
: ui;
}
- const char *StringAtOfs(wxMsgTableEntry *pTable, size_t32 n) const
+ const char* StringAtOfs(const wxMsgTableEntry* pTable, size_t32 n) const
{
const wxMsgTableEntry * const ent = pTable + n;
@@ -1155,7 +1156,7 @@ bool wxMsgCatalogFile::LoadData(const DataBuffer& data,
// examine header
bool bValid = data.length() > sizeof(wxMsgCatalogHeader);
- const wxMsgCatalogHeader *pHeader = (wxMsgCatalogHeader *)data.data();
+ const wxMsgCatalogHeader* pHeader = reinterpret_cast(data.data());
if ( bValid ) {
// we'll have to swap all the integers if it's true
m_bSwapped = pHeader->magic == MSGCATALOG_MAGIC_SW;
@@ -1174,9 +1175,9 @@ bool wxMsgCatalogFile::LoadData(const DataBuffer& data,
// initialize
m_numStrings = Swap(pHeader->numStrings);
- m_pOrigTable = (wxMsgTableEntry *)(data.data() +
+ m_pOrigTable = reinterpret_cast(data.data() +
Swap(pHeader->ofsOrigTable));
- m_pTransTable = (wxMsgTableEntry *)(data.data() +
+ m_pTransTable = reinterpret_cast(data.data() +
Swap(pHeader->ofsTransTable));
// now parse catalog's header and try to extract catalog charset and
diff --git a/src/common/treebase.cpp b/src/common/treebase.cpp
index d1493de28d..f3b11d3b11 100644
--- a/src/common/treebase.cpp
+++ b/src/common/treebase.cpp
@@ -357,6 +357,7 @@ void wxTreeCtrlBase::OnCharHook(wxKeyEvent& event)
wxFALLTHROUGH;
case WXK_RETURN:
+ case WXK_NUMPAD_ENTER:
EndEditLabel(GetFocusedItem(), discardChanges);
// Do not call Skip() below.
diff --git a/src/common/utilscmn.cpp b/src/common/utilscmn.cpp
index 33eb302186..12fc75761c 100644
--- a/src/common/utilscmn.cpp
+++ b/src/common/utilscmn.cpp
@@ -1432,7 +1432,7 @@ wxVersionInfo wxGetLibraryVersionInfo()
wxMINOR_VERSION,
wxRELEASE_NUMBER,
msg,
- wxS("Copyright (c) 1995-2019 wxWidgets team"));
+ wxS("Copyright (c) 1995-2020 wxWidgets team"));
}
void wxInfoMessageBox(wxWindow* parent)
diff --git a/src/common/variant.cpp b/src/common/variant.cpp
index 0362653cc8..d20e539b28 100644
--- a/src/common/variant.cpp
+++ b/src/common/variant.cpp
@@ -99,7 +99,7 @@ wxObjectRefData *wxVariant::CreateRefData() const
wxObjectRefData *wxVariant::CloneRefData(const wxObjectRefData *data) const
{
- return ((wxVariantData*) data)->Clone();
+ return static_cast(data)->Clone();
}
// Assignment
diff --git a/src/common/wfstream.cpp b/src/common/wfstream.cpp
index 362b1861d6..b0f4d6cd44 100644
--- a/src/common/wfstream.cpp
+++ b/src/common/wfstream.cpp
@@ -214,6 +214,33 @@ size_t wxTempFileOutputStream::OnSysWrite(const void *buffer, size_t size)
return 0;
}
+// ----------------------------------------------------------------------------
+// wxTempFFileOutputStream
+// ----------------------------------------------------------------------------
+
+wxTempFFileOutputStream::wxTempFFileOutputStream(const wxString& fileName)
+{
+ m_file = new wxTempFFile(fileName);
+
+ if (!m_file->IsOpened())
+ m_lasterror = wxSTREAM_WRITE_ERROR;
+}
+
+wxTempFFileOutputStream::~wxTempFFileOutputStream()
+{
+ if (m_file->IsOpened())
+ Discard();
+ delete m_file;
+}
+
+size_t wxTempFFileOutputStream::OnSysWrite(const void *buffer, size_t size)
+{
+ if (IsOk() && m_file->Write(buffer, size))
+ return size;
+ m_lasterror = wxSTREAM_WRITE_ERROR;
+ return 0;
+}
+
// ----------------------------------------------------------------------------
// wxFileStream
// ----------------------------------------------------------------------------
diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp
index 0b744892fd..0cd0df79eb 100644
--- a/src/common/wincmn.cpp
+++ b/src/common/wincmn.cpp
@@ -1768,7 +1768,7 @@ void wxWindowBase::SetPalette(const wxPalette& pal)
wxWindow *wxWindowBase::GetAncestorWithCustomPalette() const
{
- wxWindow *win = (wxWindow *)this;
+ wxWindow* win = const_cast(static_cast(this));
while ( win && !win->HasCustomPalette() )
{
win = win->GetParent();
@@ -1782,11 +1782,7 @@ wxWindow *wxWindowBase::GetAncestorWithCustomPalette() const
#if wxUSE_CARET
void wxWindowBase::SetCaret(wxCaret *caret)
{
- if ( m_caret )
- {
- delete m_caret;
- }
-
+ delete m_caret;
m_caret = caret;
if ( m_caret )
@@ -1804,8 +1800,7 @@ void wxWindowBase::SetCaret(wxCaret *caret)
void wxWindowBase::SetValidator(const wxValidator& validator)
{
- if ( m_windowValidator )
- delete m_windowValidator;
+ delete m_windowValidator;
m_windowValidator = static_cast(validator.Clone());
@@ -1858,7 +1853,7 @@ void wxWindowBase::ClearBackground()
wxWindow *wxWindowBase::FindWindow(long id) const
{
if ( id == m_windowId )
- return (wxWindow *)this;
+ return const_cast(static_cast(this));
wxWindowBase *res = NULL;
wxWindowList::compatibility_iterator node;
@@ -1874,13 +1869,13 @@ wxWindow *wxWindowBase::FindWindow(long id) const
res = child->FindWindow( id );
}
- return (wxWindow *)res;
+ return static_cast(res);
}
wxWindow *wxWindowBase::FindWindow(const wxString& name) const
{
if ( name == m_windowName )
- return (wxWindow *)this;
+ return const_cast(static_cast(this));
wxWindowBase *res = NULL;
wxWindowList::compatibility_iterator node;
@@ -1895,7 +1890,7 @@ wxWindow *wxWindowBase::FindWindow(const wxString& name) const
res = child->FindWindow(name);
}
- return (wxWindow *)res;
+ return static_cast(res);
}
@@ -1939,7 +1934,7 @@ wxWindow *wxFindWindowRecursively(const wxWindow *parent,
{
// see if this is the one we're looking for
if ( (*cmp)(parent, label, id) )
- return (wxWindow *)parent;
+ return const_cast(parent);
// It wasn't, so check all its children
for ( wxWindowList::compatibility_iterator node = parent->GetChildren().GetFirst();
@@ -1947,7 +1942,7 @@ wxWindow *wxFindWindowRecursively(const wxWindow *parent,
node = node->GetNext() )
{
// recursively check each child
- wxWindow *win = (wxWindow *)node->GetData();
+ wxWindow* win = static_cast(node->GetData());
wxWindow *retwin = wxFindWindowRecursively(win, label, id, cmp);
if (retwin)
return retwin;
@@ -2321,9 +2316,7 @@ void wxWindowBase::DoSetToolTip(wxToolTip *tooltip)
{
if ( m_tooltip != tooltip )
{
- if ( m_tooltip )
- delete m_tooltip;
-
+ delete m_tooltip;
m_tooltip = tooltip;
}
}
@@ -2921,7 +2914,8 @@ wxWindowBase::ToDIP(const wxSize& sz, const wxWindowBase* w)
// using them.
wxSize wxWindowBase::GetDlgUnitBase() const
{
- const wxWindowBase* const parent = wxGetTopLevelParent((wxWindow*)this);
+ const wxWindowBase* const parent =
+ wxGetTopLevelParent(const_cast(static_cast(this)));
wxCHECK_MSG( parent, wxDefaultSize, wxS("Must have TLW parent") );
@@ -3499,7 +3493,7 @@ wxWindow *wxWindowBase::DoGetSibling(WindowOrder order) const
wxT("GetPrev/NextSibling() don't work for TLWs!") );
wxWindowList& siblings = GetParent()->GetChildren();
- wxWindowList::compatibility_iterator i = siblings.Find((wxWindow *)this);
+ wxWindowList::compatibility_iterator i = siblings.Find(static_cast(this));
wxCHECK_MSG( i, NULL, wxT("window not a child of its parent?") );
if ( order == OrderBefore )
@@ -3661,8 +3655,9 @@ void wxWindowBase::DragAcceptFiles(bool accept)
// global functions
// ----------------------------------------------------------------------------
-wxWindow* wxGetTopLevelParent(wxWindow *win)
+wxWindow* wxGetTopLevelParent(wxWindowBase *win_)
{
+ wxWindow* win = static_cast(win_);
while ( win && !win->IsTopLevel() )
win = win->GetParent();
diff --git a/src/common/wxcrt.cpp b/src/common/wxcrt.cpp
index d6d2798ab2..f3118375d1 100644
--- a/src/common/wxcrt.cpp
+++ b/src/common/wxcrt.cpp
@@ -908,7 +908,7 @@ wxCRT_StrtoullBase(const T* nptr, T** endptr, int base, T* sign)
{
// Then it's an error.
if ( endptr )
- *endptr = (T*) nptr;
+ *endptr = const_cast(nptr);
errno = EINVAL;
return sum;
}
diff --git a/src/common/zipstrm.cpp b/src/common/zipstrm.cpp
index 34ae8e66a4..ff39cba742 100644
--- a/src/common/zipstrm.cpp
+++ b/src/common/zipstrm.cpp
@@ -2639,7 +2639,7 @@ size_t wxZipOutputStream::OnSysWrite(const void *buffer, size_t size)
if (m_comp->Write(buffer, size).LastWrite() != size)
m_lasterror = wxSTREAM_WRITE_ERROR;
- m_crcAccumulator = crc32(m_crcAccumulator, (Byte*)buffer, size);
+ m_crcAccumulator = crc32(m_crcAccumulator, static_cast(buffer), size);
m_entrySize += m_comp->LastWrite();
return m_comp->LastWrite();
diff --git a/src/common/zstream.cpp b/src/common/zstream.cpp
index 8ae6c1c466..3b2e4645e6 100644
--- a/src/common/zstream.cpp
+++ b/src/common/zstream.cpp
@@ -268,7 +268,7 @@ size_t wxZlibInputStream::OnSysRead(void *buffer, size_t size)
bool wxZlibInputStream::SetDictionary(const char *data, size_t datalen)
{
- return (inflateSetDictionary(m_inflate, (Bytef*)data, datalen) == Z_OK);
+ return inflateSetDictionary(m_inflate, reinterpret_cast(data), datalen) == Z_OK;
}
bool wxZlibInputStream::SetDictionary(const wxMemoryBuffer &buf)
@@ -400,7 +400,7 @@ size_t wxZlibOutputStream::OnSysWrite(const void *buffer, size_t size)
return 0;
int err = Z_OK;
- m_deflate->next_in = (unsigned char *)buffer;
+ m_deflate->next_in = const_cast(static_cast(buffer));
m_deflate->avail_in = size;
while (err == Z_OK && m_deflate->avail_in > 0) {
@@ -439,7 +439,7 @@ size_t wxZlibOutputStream::OnSysWrite(const void *buffer, size_t size)
bool wxZlibOutputStream::SetDictionary(const char *data, size_t datalen)
{
- return (deflateSetDictionary(m_deflate, (Bytef*)data, datalen) == Z_OK);
+ return deflateSetDictionary(m_deflate, reinterpret_cast(data), datalen) == Z_OK;
}
bool wxZlibOutputStream::SetDictionary(const wxMemoryBuffer &buf)
diff --git a/src/dfb/window.cpp b/src/dfb/window.cpp
index 888cf7491f..dd6a310f09 100644
--- a/src/dfb/window.cpp
+++ b/src/dfb/window.cpp
@@ -684,8 +684,7 @@ void wxWindowDFB::PaintWindow(const wxRect& rect)
// only send wxNcPaintEvent if drawing at least part of nonclient area:
if ( !clientRect.Contains(rect) )
{
- wxNcPaintEvent eventNc(GetId());
- eventNc.SetEventObject(this);
+ wxNcPaintEvent eventNc(this);
HandleWindowEvent(eventNc);
}
else
@@ -697,8 +696,7 @@ void wxWindowDFB::PaintWindow(const wxRect& rect)
// only send wxPaintEvent if drawing at least part of client area:
if ( rect.Intersects(clientRect) )
{
- wxPaintEvent eventPt(GetId());
- eventPt.SetEventObject(this);
+ wxPaintEvent eventPt(this);
HandleWindowEvent(eventPt);
}
else
diff --git a/src/generic/accel.cpp b/src/generic/accel.cpp
index e4382f455d..2174111161 100644
--- a/src/generic/accel.cpp
+++ b/src/generic/accel.cpp
@@ -213,7 +213,7 @@ wxObjectRefData *wxAcceleratorTable::CreateRefData() const
wxObjectRefData *wxAcceleratorTable::CloneRefData(const wxObjectRefData *data) const
{
- return new wxAccelRefData(*(wxAccelRefData *)data);
+ return new wxAccelRefData(*static_cast(data));
}
#endif // wxUSE_ACCEL
diff --git a/src/generic/animateg.cpp b/src/generic/animateg.cpp
index c27fc524a9..bfd826eb04 100644
--- a/src/generic/animateg.cpp
+++ b/src/generic/animateg.cpp
@@ -1,6 +1,6 @@
///////////////////////////////////////////////////////////////////////////////
// Name: src/generic/animateg.cpp
-// Purpose: wxAnimation and wxAnimationCtrl
+// Purpose: wxAnimationGenericImpl and wxGenericAnimationCtrl
// Author: Julian Smart and Guillermo Rodriguez Garcia
// Modified by: Francesco Montorsi
// Created: 13/8/99
@@ -17,99 +17,86 @@
#if wxUSE_ANIMATIONCTRL
#include "wx/animate.h"
+#include "wx/generic/animate.h"
+#include "wx/generic/private/animate.h"
#ifndef WX_PRECOMP
#include "wx/log.h"
#include "wx/image.h"
#include "wx/dcmemory.h"
#include "wx/dcclient.h"
- #include "wx/module.h"
#endif
#include "wx/wfstream.h"
-#include "wx/gifdecod.h"
-#include "wx/anidecod.h"
-
-#include "wx/listimpl.cpp"
-WX_DEFINE_LIST(wxAnimationDecoderList)
-
-wxAnimationDecoderList wxAnimation::sm_handlers;
-
// ----------------------------------------------------------------------------
// wxAnimation
// ----------------------------------------------------------------------------
-wxIMPLEMENT_DYNAMIC_CLASS(wxAnimation, wxAnimationBase);
-#define M_ANIMDATA static_cast(m_refData)
+#ifndef wxHAS_NATIVE_ANIMATIONCTRL
-wxSize wxAnimation::GetSize() const
+/* static */
+wxAnimationImpl *wxAnimationImpl::CreateDefault()
{
- wxCHECK_MSG( IsOk(), wxDefaultSize, wxT("invalid animation") );
-
- return M_ANIMDATA->GetAnimationSize();
+ return new wxAnimationGenericImpl();
}
-unsigned int wxAnimation::GetFrameCount() const
-{
- wxCHECK_MSG( IsOk(), 0, wxT("invalid animation") );
+#endif // !wxHAS_NATIVE_ANIMATIONCTRL
- return M_ANIMDATA->GetFrameCount();
+bool wxAnimationGenericImpl::IsCompatibleWith(wxClassInfo* ci) const
+{
+ return ci->IsKindOf(&wxGenericAnimationCtrl::ms_classInfo);
}
-wxImage wxAnimation::GetFrame(unsigned int i) const
+wxSize wxAnimationGenericImpl::GetSize() const
{
- wxCHECK_MSG( IsOk(), wxNullImage, wxT("invalid animation") );
+ return m_decoder->GetAnimationSize();
+}
+unsigned int wxAnimationGenericImpl::GetFrameCount() const
+{
+ return m_decoder->GetFrameCount();
+}
+
+wxImage wxAnimationGenericImpl::GetFrame(unsigned int i) const
+{
wxImage ret;
- if (!M_ANIMDATA->ConvertToImage(i, &ret))
+ if (!m_decoder->ConvertToImage(i, &ret))
return wxNullImage;
return ret;
}
-int wxAnimation::GetDelay(unsigned int i) const
+int wxAnimationGenericImpl::GetDelay(unsigned int i) const
{
- wxCHECK_MSG( IsOk(), 0, wxT("invalid animation") );
-
- return M_ANIMDATA->GetDelay(i);
+ return m_decoder->GetDelay(i);
}
-wxPoint wxAnimation::GetFramePosition(unsigned int frame) const
+wxPoint wxAnimationGenericImpl::GetFramePosition(unsigned int frame) const
{
- wxCHECK_MSG( IsOk(), wxDefaultPosition, wxT("invalid animation") );
-
- return M_ANIMDATA->GetFramePosition(frame);
+ return m_decoder->GetFramePosition(frame);
}
-wxSize wxAnimation::GetFrameSize(unsigned int frame) const
+wxSize wxAnimationGenericImpl::GetFrameSize(unsigned int frame) const
{
- wxCHECK_MSG( IsOk(), wxDefaultSize, wxT("invalid animation") );
-
- return M_ANIMDATA->GetFrameSize(frame);
+ return m_decoder->GetFrameSize(frame);
}
-wxAnimationDisposal wxAnimation::GetDisposalMethod(unsigned int frame) const
+wxAnimationDisposal wxAnimationGenericImpl::GetDisposalMethod(unsigned int frame) const
{
- wxCHECK_MSG( IsOk(), wxANIM_UNSPECIFIED, wxT("invalid animation") );
-
- return M_ANIMDATA->GetDisposalMethod(frame);
+ return m_decoder->GetDisposalMethod(frame);
}
-wxColour wxAnimation::GetTransparentColour(unsigned int frame) const
+wxColour wxAnimationGenericImpl::GetTransparentColour(unsigned int frame) const
{
- wxCHECK_MSG( IsOk(), wxNullColour, wxT("invalid animation") );
-
- return M_ANIMDATA->GetTransparentColour(frame);
+ return m_decoder->GetTransparentColour(frame);
}
-wxColour wxAnimation::GetBackgroundColour() const
+wxColour wxAnimationGenericImpl::GetBackgroundColour() const
{
- wxCHECK_MSG( IsOk(), wxNullColour, wxT("invalid animation") );
-
- return M_ANIMDATA->GetBackgroundColour();
+ return m_decoder->GetBackgroundColour();
}
-bool wxAnimation::LoadFile(const wxString& filename, wxAnimationType type)
+bool wxAnimationGenericImpl::LoadFile(const wxString& filename, wxAnimationType type)
{
wxFileInputStream stream(filename);
if ( !stream.IsOk() )
@@ -118,14 +105,14 @@ bool wxAnimation::LoadFile(const wxString& filename, wxAnimationType type)
return Load(stream, type);
}
-bool wxAnimation::Load(wxInputStream &stream, wxAnimationType type)
+bool wxAnimationGenericImpl::Load(wxInputStream &stream, wxAnimationType type)
{
UnRef();
const wxAnimationDecoder *handler;
if ( type == wxANIMATION_TYPE_ANY )
{
- for ( wxAnimationDecoderList::compatibility_iterator node = sm_handlers.GetFirst();
+ for ( wxAnimationDecoderList::compatibility_iterator node = wxAnimation::GetHandlers().GetFirst();
node; node = node->GetNext() )
{
handler=(const wxAnimationDecoder*)node->GetData();
@@ -134,8 +121,8 @@ bool wxAnimation::Load(wxInputStream &stream, wxAnimationType type)
{
// do a copy of the handler from the static list which we will own
// as our reference data
- m_refData = handler->Clone();
- return M_ANIMDATA->Load(stream);
+ m_decoder = handler->Clone();
+ return m_decoder->Load(stream);
}
}
@@ -143,7 +130,7 @@ bool wxAnimation::Load(wxInputStream &stream, wxAnimationType type)
return false;
}
- handler = FindHandler(type);
+ handler = wxAnimation::FindHandler(type);
if (handler == NULL)
{
@@ -155,123 +142,38 @@ bool wxAnimation::Load(wxInputStream &stream, wxAnimationType type)
// do a copy of the handler from the static list which we will own
// as our reference data
- m_refData = handler->Clone();
+ m_decoder = handler->Clone();
- if (stream.IsSeekable() && !M_ANIMDATA->CanRead(stream))
+ if (stream.IsSeekable() && !m_decoder->CanRead(stream))
{
wxLogError(_("Animation file is not of type %ld."), type);
return false;
}
else
- return M_ANIMDATA->Load(stream);
+ return m_decoder->Load(stream);
}
-
-// ----------------------------------------------------------------------------
-// animation decoders
-// ----------------------------------------------------------------------------
-
-void wxAnimation::AddHandler( wxAnimationDecoder *handler )
+void wxAnimationGenericImpl::UnRef()
{
- // Check for an existing handler of the type being added.
- if (FindHandler( handler->GetType() ) == 0)
+ if ( m_decoder )
{
- sm_handlers.Append( handler );
- }
- else
- {
- // This is not documented behaviour, merely the simplest 'fix'
- // for preventing duplicate additions. If someone ever has
- // a good reason to add and remove duplicate handlers (and they
- // may) we should probably refcount the duplicates.
-
- wxLogDebug( wxT("Adding duplicate animation handler for '%d' type"),
- handler->GetType() );
- delete handler;
+ m_decoder->DecRef();
+ m_decoder = NULL;
}
}
-void wxAnimation::InsertHandler( wxAnimationDecoder *handler )
-{
- // Check for an existing handler of the type being added.
- if (FindHandler( handler->GetType() ) == 0)
- {
- sm_handlers.Insert( handler );
- }
- else
- {
- // see AddHandler for additional comments.
- wxLogDebug( wxT("Inserting duplicate animation handler for '%d' type"),
- handler->GetType() );
- delete handler;
- }
-}
-
-const wxAnimationDecoder *wxAnimation::FindHandler( wxAnimationType animType )
-{
- wxAnimationDecoderList::compatibility_iterator node = sm_handlers.GetFirst();
- while (node)
- {
- const wxAnimationDecoder *handler = (const wxAnimationDecoder *)node->GetData();
- if (handler->GetType() == animType) return handler;
- node = node->GetNext();
- }
- return 0;
-}
-
-void wxAnimation::InitStandardHandlers()
-{
-#if wxUSE_GIF
- AddHandler(new wxGIFDecoder);
-#endif // wxUSE_GIF
-#if wxUSE_ICO_CUR
- AddHandler(new wxANIDecoder);
-#endif // wxUSE_ICO_CUR
-}
-
-void wxAnimation::CleanUpHandlers()
-{
- wxAnimationDecoderList::compatibility_iterator node = sm_handlers.GetFirst();
- while (node)
- {
- wxAnimationDecoder *handler = (wxAnimationDecoder *)node->GetData();
- wxAnimationDecoderList::compatibility_iterator next = node->GetNext();
- delete handler;
- node = next;
- }
-
- sm_handlers.Clear();
-}
-
-
-// A module to allow wxAnimation initialization/cleanup
-// without calling these functions from app.cpp or from
-// the user's application.
-
-class wxAnimationModule: public wxModule
-{
- wxDECLARE_DYNAMIC_CLASS(wxAnimationModule);
-public:
- wxAnimationModule() {}
- bool OnInit() wxOVERRIDE { wxAnimation::InitStandardHandlers(); return true; }
- void OnExit() wxOVERRIDE { wxAnimation::CleanUpHandlers(); }
-};
-
-wxIMPLEMENT_DYNAMIC_CLASS(wxAnimationModule, wxModule);
-
-
// ----------------------------------------------------------------------------
// wxAnimationCtrl
// ----------------------------------------------------------------------------
-wxIMPLEMENT_CLASS(wxAnimationCtrl, wxAnimationCtrlBase);
-wxBEGIN_EVENT_TABLE(wxAnimationCtrl, wxAnimationCtrlBase)
- EVT_PAINT(wxAnimationCtrl::OnPaint)
- EVT_SIZE(wxAnimationCtrl::OnSize)
- EVT_TIMER(wxID_ANY, wxAnimationCtrl::OnTimer)
+wxIMPLEMENT_CLASS(wxGenericAnimationCtrl, wxAnimationCtrlBase);
+wxBEGIN_EVENT_TABLE(wxGenericAnimationCtrl, wxAnimationCtrlBase)
+ EVT_PAINT(wxGenericAnimationCtrl::OnPaint)
+ EVT_SIZE(wxGenericAnimationCtrl::OnSize)
+ EVT_TIMER(wxID_ANY, wxGenericAnimationCtrl::OnTimer)
wxEND_EVENT_TABLE()
-void wxAnimationCtrl::Init()
+void wxGenericAnimationCtrl::Init()
{
m_currentFrame = 0;
m_looped = false;
@@ -282,7 +184,7 @@ void wxAnimationCtrl::Init()
m_useWinBackgroundColour = true;
}
-bool wxAnimationCtrl::Create(wxWindow *parent, wxWindowID id,
+bool wxGenericAnimationCtrl::Create(wxWindow *parent, wxWindowID id,
const wxAnimation& animation, const wxPoint& pos,
const wxSize& size, long style, const wxString& name)
{
@@ -299,12 +201,13 @@ bool wxAnimationCtrl::Create(wxWindow *parent, wxWindowID id,
return true;
}
-wxAnimationCtrl::~wxAnimationCtrl()
+wxGenericAnimationCtrl::~wxGenericAnimationCtrl()
{
- Stop();
+ if (IsPlaying())
+ Stop();
}
-bool wxAnimationCtrl::LoadFile(const wxString& filename, wxAnimationType type)
+bool wxGenericAnimationCtrl::LoadFile(const wxString& filename, wxAnimationType type)
{
wxFileInputStream fis(filename);
if (!fis.IsOk())
@@ -312,9 +215,9 @@ bool wxAnimationCtrl::LoadFile(const wxString& filename, wxAnimationType type)
return Load(fis, type);
}
-bool wxAnimationCtrl::Load(wxInputStream& stream, wxAnimationType type)
+bool wxGenericAnimationCtrl::Load(wxInputStream& stream, wxAnimationType type)
{
- wxAnimation anim;
+ wxAnimation anim(CreateAnimation());
if ( !anim.Load(stream, type) || !anim.IsOk() )
return false;
@@ -322,7 +225,17 @@ bool wxAnimationCtrl::Load(wxInputStream& stream, wxAnimationType type)
return true;
}
-wxSize wxAnimationCtrl::DoGetBestSize() const
+wxAnimation wxGenericAnimationCtrl::CreateCompatibleAnimation()
+{
+ return MakeAnimFromImpl(new wxAnimationGenericImpl());
+}
+
+wxAnimationImpl* wxGenericAnimationCtrl::DoCreateAnimationImpl() const
+{
+ return new wxAnimationGenericImpl();
+}
+
+wxSize wxGenericAnimationCtrl::DoGetBestSize() const
{
if (m_animation.IsOk() && !this->HasFlag(wxAC_NO_AUTORESIZE))
return m_animation.GetSize();
@@ -330,7 +243,7 @@ wxSize wxAnimationCtrl::DoGetBestSize() const
return FromDIP(wxSize(100, 100));
}
-void wxAnimationCtrl::SetAnimation(const wxAnimation& animation)
+void wxGenericAnimationCtrl::SetAnimation(const wxAnimation& animation)
{
if (IsPlaying())
Stop();
@@ -343,7 +256,10 @@ void wxAnimationCtrl::SetAnimation(const wxAnimation& animation)
return;
}
- if (m_animation.GetBackgroundColour() == wxNullColour)
+ wxCHECK_RET(animation.IsCompatibleWith(GetClassInfo()),
+ wxT("incompatible animation") );
+
+ if (AnimationImplGetBackgroundColour() == wxNullColour)
SetUseWindowBackgroundColour();
if (!this->HasFlag(wxAC_NO_AUTORESIZE))
FitToAnimation();
@@ -351,7 +267,7 @@ void wxAnimationCtrl::SetAnimation(const wxAnimation& animation)
DisplayStaticImage();
}
-void wxAnimationCtrl::SetInactiveBitmap(const wxBitmap &bmp)
+void wxGenericAnimationCtrl::SetInactiveBitmap(const wxBitmap &bmp)
{
// if the bitmap has an associated mask, we need to set our background to
// the colour of our parent otherwise when calling DrawCurrentFrame()
@@ -364,12 +280,12 @@ void wxAnimationCtrl::SetInactiveBitmap(const wxBitmap &bmp)
wxAnimationCtrlBase::SetInactiveBitmap(bmp);
}
-void wxAnimationCtrl::FitToAnimation()
+void wxGenericAnimationCtrl::FitToAnimation()
{
SetSize(m_animation.GetSize());
}
-bool wxAnimationCtrl::SetBackgroundColour(const wxColour& colour)
+bool wxGenericAnimationCtrl::SetBackgroundColour(const wxColour& colour)
{
if ( !wxWindow::SetBackgroundColour(colour) )
return false;
@@ -387,7 +303,7 @@ bool wxAnimationCtrl::SetBackgroundColour(const wxColour& colour)
// wxAnimationCtrl - stop/play methods
// ----------------------------------------------------------------------------
-void wxAnimationCtrl::Stop()
+void wxGenericAnimationCtrl::Stop()
{
m_timer.Stop();
m_isPlaying = false;
@@ -398,7 +314,7 @@ void wxAnimationCtrl::Stop()
DisplayStaticImage();
}
-bool wxAnimationCtrl::Play(bool looped)
+bool wxGenericAnimationCtrl::Play(bool looped)
{
if (!m_animation.IsOk())
return false;
@@ -434,7 +350,7 @@ bool wxAnimationCtrl::Play(bool looped)
// wxAnimationCtrl - rendering methods
// ----------------------------------------------------------------------------
-bool wxAnimationCtrl::RebuildBackingStoreUpToFrame(unsigned int frame)
+bool wxGenericAnimationCtrl::RebuildBackingStoreUpToFrame(unsigned int frame)
{
// if we've not created the backing store yet or it's too
// small, then recreate it
@@ -459,14 +375,14 @@ bool wxAnimationCtrl::RebuildBackingStoreUpToFrame(unsigned int frame)
// Draw all intermediate frames that haven't been removed from the animation
for (unsigned int i = 0; i < frame; i++)
{
- if (m_animation.GetDisposalMethod(i) == wxANIM_DONOTREMOVE ||
- m_animation.GetDisposalMethod(i) == wxANIM_UNSPECIFIED)
+ if (AnimationImplGetDisposalMethod(i) == wxANIM_DONOTREMOVE ||
+ AnimationImplGetDisposalMethod(i) == wxANIM_UNSPECIFIED)
{
DrawFrame(dc, i);
}
- else if (m_animation.GetDisposalMethod(i) == wxANIM_TOBACKGROUND)
- DisposeToBackground(dc, m_animation.GetFramePosition(i),
- m_animation.GetFrameSize(i));
+ else if (AnimationImplGetDisposalMethod(i) == wxANIM_TOBACKGROUND)
+ DisposeToBackground(dc, AnimationImplGetFramePosition(i),
+ AnimationImplGetFrameSize(i));
}
// finally draw this frame
@@ -476,7 +392,7 @@ bool wxAnimationCtrl::RebuildBackingStoreUpToFrame(unsigned int frame)
return true;
}
-void wxAnimationCtrl::IncrementalUpdateBackingStore()
+void wxGenericAnimationCtrl::IncrementalUpdateBackingStore()
{
wxMemoryDC dc;
dc.SelectObject(m_backingStore);
@@ -494,11 +410,11 @@ void wxAnimationCtrl::IncrementalUpdateBackingStore()
}
else
{
- switch (m_animation.GetDisposalMethod(m_currentFrame-1))
+ switch (AnimationImplGetDisposalMethod(m_currentFrame-1))
{
case wxANIM_TOBACKGROUND:
- DisposeToBackground(dc, m_animation.GetFramePosition(m_currentFrame-1),
- m_animation.GetFrameSize(m_currentFrame-1));
+ DisposeToBackground(dc, AnimationImplGetFramePosition(m_currentFrame-1),
+ AnimationImplGetFrameSize(m_currentFrame-1));
break;
case wxANIM_TOPREVIOUS:
@@ -528,7 +444,7 @@ void wxAnimationCtrl::IncrementalUpdateBackingStore()
dc.SelectObject(wxNullBitmap);
}
-void wxAnimationCtrl::DisplayStaticImage()
+void wxGenericAnimationCtrl::DisplayStaticImage()
{
wxASSERT(!IsPlaying());
@@ -563,7 +479,7 @@ void wxAnimationCtrl::DisplayStaticImage()
Refresh();
}
-void wxAnimationCtrl::DrawFrame(wxDC &dc, unsigned int frame)
+void wxGenericAnimationCtrl::DrawFrame(wxDC &dc, unsigned int frame)
{
// PERFORMANCE NOTE:
// this draw stuff is not as fast as possible: the wxAnimationDecoder
@@ -572,11 +488,11 @@ void wxAnimationCtrl::DrawFrame(wxDC &dc, unsigned int frame)
// If wxAnimationDecoder had a function to convert directly from its
// internal format to a port-specific wxBitmap, it would be somewhat faster.
wxBitmap bmp(m_animation.GetFrame(frame));
- dc.DrawBitmap(bmp, m_animation.GetFramePosition(frame),
+ dc.DrawBitmap(bmp, AnimationImplGetFramePosition(frame),
true /* use mask */);
}
-void wxAnimationCtrl::DrawCurrentFrame(wxDC& dc)
+void wxGenericAnimationCtrl::DrawCurrentFrame(wxDC& dc)
{
wxASSERT( m_backingStore.IsOk() );
@@ -584,7 +500,7 @@ void wxAnimationCtrl::DrawCurrentFrame(wxDC& dc)
dc.DrawBitmap(m_backingStore, 0, 0, true /* use mask in case it's present */);
}
-void wxAnimationCtrl::DisposeToBackground()
+void wxGenericAnimationCtrl::DisposeToBackground()
{
// clear the backing store
wxMemoryDC dc;
@@ -593,22 +509,22 @@ void wxAnimationCtrl::DisposeToBackground()
DisposeToBackground(dc);
}
-void wxAnimationCtrl::DisposeToBackground(wxDC& dc)
+void wxGenericAnimationCtrl::DisposeToBackground(wxDC& dc)
{
wxColour col = IsUsingWindowBackgroundColour()
? GetBackgroundColour()
- : m_animation.GetBackgroundColour();
+ : AnimationImplGetBackgroundColour();
wxBrush brush(col);
dc.SetBackground(brush);
dc.Clear();
}
-void wxAnimationCtrl::DisposeToBackground(wxDC& dc, const wxPoint &pos, const wxSize &sz)
+void wxGenericAnimationCtrl::DisposeToBackground(wxDC& dc, const wxPoint &pos, const wxSize &sz)
{
wxColour col = IsUsingWindowBackgroundColour()
? GetBackgroundColour()
- : m_animation.GetBackgroundColour();
+ : AnimationImplGetBackgroundColour();
wxBrush brush(col);
dc.SetBrush(brush); // SetBrush and not SetBackground !!
dc.SetPen(*wxTRANSPARENT_PEN);
@@ -619,7 +535,7 @@ void wxAnimationCtrl::DisposeToBackground(wxDC& dc, const wxPoint &pos, const wx
// wxAnimationCtrl - event handlers
// ----------------------------------------------------------------------------
-void wxAnimationCtrl::OnPaint(wxPaintEvent& WXUNUSED(event))
+void wxGenericAnimationCtrl::OnPaint(wxPaintEvent& WXUNUSED(event))
{
// VERY IMPORTANT: the wxPaintDC *must* be created in any case
wxPaintDC dc(this);
@@ -639,7 +555,7 @@ void wxAnimationCtrl::OnPaint(wxPaintEvent& WXUNUSED(event))
}
}
-void wxAnimationCtrl::OnTimer(wxTimerEvent &WXUNUSED(event))
+void wxGenericAnimationCtrl::OnTimer(wxTimerEvent &WXUNUSED(event))
{
m_currentFrame++;
if (m_currentFrame == m_animation.GetFrameCount())
@@ -671,7 +587,7 @@ void wxAnimationCtrl::OnTimer(wxTimerEvent &WXUNUSED(event))
m_timer.Start(delay, true);
}
-void wxAnimationCtrl::OnSize(wxSizeEvent &WXUNUSED(event))
+void wxGenericAnimationCtrl::OnSize(wxSizeEvent &WXUNUSED(event))
{
// NB: resizing an animation control may take a lot of time
// for big animations as the backing store must be
@@ -692,5 +608,39 @@ void wxAnimationCtrl::OnSize(wxSizeEvent &WXUNUSED(event))
}
}
-#endif // wxUSE_ANIMATIONCTRL
+// ----------------------------------------------------------------------------
+// helpers to safely access wxAnimationGenericImpl methods
+// ----------------------------------------------------------------------------
+#define ANIMATION (static_cast(GetAnimImpl()))
+wxPoint wxGenericAnimationCtrl::AnimationImplGetFramePosition(unsigned int frame) const
+{
+ wxCHECK_MSG( m_animation.IsOk(), wxDefaultPosition, wxT("invalid animation") );
+ return ANIMATION->GetFramePosition(frame);
+}
+
+wxSize wxGenericAnimationCtrl::AnimationImplGetFrameSize(unsigned int frame) const
+{
+ wxCHECK_MSG( m_animation.IsOk(), wxDefaultSize, wxT("invalid animation") );
+ return ANIMATION->GetFrameSize(frame);
+}
+
+wxAnimationDisposal wxGenericAnimationCtrl::AnimationImplGetDisposalMethod(unsigned int frame) const
+{
+ wxCHECK_MSG( m_animation.IsOk(), wxANIM_UNSPECIFIED, wxT("invalid animation") );
+ return ANIMATION->GetDisposalMethod(frame);
+}
+
+wxColour wxGenericAnimationCtrl::AnimationImplGetTransparentColour(unsigned int frame) const
+{
+ wxCHECK_MSG( m_animation.IsOk(), wxNullColour, wxT("invalid animation") );
+ return ANIMATION->GetTransparentColour(frame);
+}
+
+wxColour wxGenericAnimationCtrl::AnimationImplGetBackgroundColour() const
+{
+ wxCHECK_MSG( m_animation.IsOk(), wxNullColour, wxT("invalid animation") );
+ return ANIMATION->GetBackgroundColour();
+}
+
+#endif // wxUSE_ANIMATIONCTRL
diff --git a/src/generic/datavgen.cpp b/src/generic/datavgen.cpp
index 042f7216eb..7cf49aefa4 100644
--- a/src/generic/datavgen.cpp
+++ b/src/generic/datavgen.cpp
@@ -3913,8 +3913,8 @@ int wxDataViewMainWindow::RecalculateCount() const
{
if (IsVirtualList())
{
- wxDataViewVirtualListModel *list_model =
- (wxDataViewVirtualListModel*) GetModel();
+ const wxDataViewVirtualListModel* list_model =
+ static_cast(GetModel());
return list_model->GetCount();
}
diff --git a/src/generic/dcpsg.cpp b/src/generic/dcpsg.cpp
index 77b50fbf99..076e535502 100644
--- a/src/generic/dcpsg.cpp
+++ b/src/generic/dcpsg.cpp
@@ -2253,13 +2253,8 @@ void wxPostScriptDCImpl::DoGetTextExtent(const wxString& string,
/* JC: calculate UnderlineThickness/UnderlinePosition */
- // VS: dirty, but is there any better solution?
- double *pt;
- pt = (double*) &m_underlinePosition;
- *pt = YLOG2DEVREL((wxCoord)(UnderlinePosition * fontSize)) / 1000.0f;
- pt = (double*) &m_underlineThickness;
- *pt = YLOG2DEVREL((wxCoord)(UnderlineThickness * fontSize)) / 1000.0f;
-
+ m_underlinePosition = YLOG2DEVREL(int(UnderlinePosition * fontSize)) / 1000.0;
+ m_underlineThickness = YLOG2DEVREL(int(UnderlineThickness * fontSize)) / 1000.0;
}
diff --git a/src/generic/descrip.mms b/src/generic/descrip.mms
index 2d671b3751..9e1aa214c8 100644
--- a/src/generic/descrip.mms
+++ b/src/generic/descrip.mms
@@ -2,32 +2,32 @@
# *
# Make file for VMS *
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
-# Date : 1 February 2019 *
+# Date : 4 March 2020 *
# *
#*****************************************************************************
.first
define wx [--.include.wx]
.ifdef __WXMOTIF__
-CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
+CXX_DEFINE = /define=(__WXMOTIF__=1,WXBUILDING=1)/name=(as_is,short)\
/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)
+CC_DEFINE = /define=(__WXMOTIF__=1,WXBUILDING=1)/name=(as_is,short)
.else
.ifdef __WXGTK__
-CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
+CXX_DEFINE = /define=(__WXGTK__=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/ieee=denorm\
/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm
+CC_DEFINE = /define=(__WXGTK__=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/ieee=denorm
.else
.ifdef __WXX11__
-CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
+CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
+CC_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)
.else
.ifdef __WXGTK2__
-CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2==1)/float=ieee\
+CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WX_GTK__=1,VMS_GTK2==1)/float=ieee\
+CC_DEFINE = /define=(__WX_GTK__=1,VMS_GTK2==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)
.else
CXX_DEFINE =
diff --git a/src/generic/dirctrlg.cpp b/src/generic/dirctrlg.cpp
index f5cc1e418d..ef73d79dd2 100644
--- a/src/generic/dirctrlg.cpp
+++ b/src/generic/dirctrlg.cpp
@@ -1454,7 +1454,7 @@ wxFileIconsTable::~wxFileIconsTable()
WX_CLEAR_HASH_TABLE(*m_HashTable);
delete m_HashTable;
}
- if (m_smallImageList) delete m_smallImageList;
+ delete m_smallImageList;
}
// delayed initialization - wait until first use (wxArtProv not created yet)
diff --git a/src/generic/dragimgg.cpp b/src/generic/dragimgg.cpp
index 9de2d1c401..df9c1b66a5 100644
--- a/src/generic/dragimgg.cpp
+++ b/src/generic/dragimgg.cpp
@@ -58,10 +58,7 @@ wxIMPLEMENT_DYNAMIC_CLASS(wxGenericDragImage, wxObject);
wxGenericDragImage::~wxGenericDragImage()
{
- if (m_windowDC)
- {
- delete m_windowDC;
- }
+ delete m_windowDC;
}
void wxGenericDragImage::Init()
diff --git a/src/generic/graphicc.cpp b/src/generic/graphicc.cpp
index 9899056c50..a5c6f74ca0 100644
--- a/src/generic/graphicc.cpp
+++ b/src/generic/graphicc.cpp
@@ -1020,7 +1020,7 @@ void wxCairoPenData::Apply( wxGraphicsContext* context )
cairo_set_line_width(ctext,m_width);
cairo_set_line_cap(ctext,m_cap);
cairo_set_line_join(ctext,m_join);
- cairo_set_dash(ctext,(double*)m_lengths,m_count,0.0);
+ cairo_set_dash(ctext, m_lengths, m_count, 0);
}
//-----------------------------------------------------------------------------
@@ -1504,7 +1504,7 @@ void wxCairoMatrixData::TransformDistance( wxDouble *dx, wxDouble *dy ) const
// returns the native representation
void * wxCairoMatrixData::GetNativeMatrix() const
{
- return (void*) &m_matrix;
+ return const_cast(&m_matrix);
}
// ----------------------------------------------------------------------------
@@ -1954,7 +1954,7 @@ wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, const wxWindowDC&
cairo_t* cr = static_cast(dc.GetImpl()->GetCairoContext());
Init(cr ? cairo_reference(cr) : NULL);
#elif defined __WXGTK20__
- wxGTKDCImpl *impldc = (wxGTKDCImpl*) dc.GetImpl();
+ const wxGTKDCImpl* impldc = static_cast(dc.GetImpl());
Init( gdk_cairo_create( impldc->GetGDKWindow() ) );
// Transfer transformation settings from source DC to Cairo context on our own.
@@ -2167,7 +2167,7 @@ wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, const wxMemoryDC&
cairo_t* cr = static_cast(dc.GetImpl()->GetCairoContext());
Init(cr ? cairo_reference(cr) : NULL);
#elif defined __WXGTK20__
- wxGTKDCImpl *impldc = (wxGTKDCImpl*) dc.GetImpl();
+ const wxGTKDCImpl* impldc = static_cast(dc.GetImpl());
Init( gdk_cairo_create( impldc->GetGDKWindow() ) );
// Transfer transformation settings from source DC to Cairo context on our own.
diff --git a/src/generic/grid.cpp b/src/generic/grid.cpp
index c1dbb96548..608feb1634 100644
--- a/src/generic/grid.cpp
+++ b/src/generic/grid.cpp
@@ -11,7 +11,6 @@
/*
TODO:
- - Replace use of wxINVERT with wxOverlay
- Make Begin/EndBatch() the same as the generic Freeze/Thaw()
- Review the column reordering code, it's a mess.
- Implement row reordering after dealing with the columns.
@@ -42,6 +41,7 @@
#include "wx/listbox.h"
#endif
+#include "wx/dcbuffer.h"
#include "wx/textfile.h"
#include "wx/spinctrl.h"
#include "wx/tokenzr.h"
@@ -114,6 +114,9 @@ const int DRAG_SENSITIVITY = 3;
// the space between the cell edge and the checkbox mark
const int GRID_CELL_CHECKBOX_MARGIN = 2;
+// the margin between a cell vertical line and a cell text
+const int GRID_TEXT_MARGIN = 1;
+
} // anonymous namespace
#include "wx/arrimpl.cpp"
@@ -642,6 +645,21 @@ wxGridFitMode wxGridCellAttr::GetFitMode() const
}
}
+bool wxGridCellAttr::CanOverflow() const
+{
+ // If overflow is disabled anyhow, we definitely can't overflow.
+ if ( !GetOverflow() )
+ return false;
+
+ // But if it is enabled, we still don't use it for right-aligned or
+ // centered cells because it's not really clear how it should work for
+ // them.
+ int hAlign = wxALIGN_LEFT;
+ GetNonDefaultAlignment(&hAlign, NULL);
+
+ return hAlign == wxALIGN_LEFT;
+}
+
// GetRenderer and GetEditor use a slightly different decision path about
// which attribute to use. If a non-default attr object has one then it is
// used, otherwise the default editor or renderer is fetched from the grid and
@@ -1897,12 +1915,11 @@ wxBEGIN_EVENT_TABLE( wxGridWindow, wxGridSubwindow )
EVT_CHAR( wxGridWindow::OnChar )
EVT_SET_FOCUS( wxGridWindow::OnFocus )
EVT_KILL_FOCUS( wxGridWindow::OnFocus )
- EVT_ERASE_BACKGROUND( wxGridWindow::OnEraseBackground )
wxEND_EVENT_TABLE()
void wxGridWindow::OnPaint( wxPaintEvent &WXUNUSED(event) )
{
- wxPaintDC dc( this );
+ wxAutoBufferedPaintDC dc( this );
m_owner->PrepareDCFor( dc, this );
wxRegion reg = GetUpdateRegion();
@@ -2271,10 +2288,6 @@ void wxGridWindow::OnChar( wxKeyEvent& event )
event.Skip();
}
-void wxGridWindow::OnEraseBackground( wxEraseEvent& WXUNUSED(event) )
-{
-}
-
void wxGridWindow::OnFocus(wxFocusEvent& event)
{
// and if we have any selection, it has to be repainted, because it
@@ -2311,12 +2324,11 @@ void wxGridWindow::OnFocus(wxFocusEvent& event)
/////////////////////////////////////////////////////////////////////
wxBEGIN_EVENT_TABLE( wxGrid, wxScrolledCanvas )
- EVT_PAINT( wxGrid::OnPaint )
EVT_SIZE( wxGrid::OnSize )
+ EVT_DPI_CHANGED( wxGrid::OnDPIChanged )
EVT_KEY_DOWN( wxGrid::OnKeyDown )
EVT_KEY_UP( wxGrid::OnKeyUp )
EVT_CHAR ( wxGrid::OnChar )
- EVT_ERASE_BACKGROUND( wxGrid::OnEraseBackground )
EVT_COMMAND(wxID_ANY, wxEVT_GRID_HIDE_EDITOR, wxGrid::OnHideEditor )
wxEND_EVENT_TABLE()
@@ -2454,8 +2466,11 @@ void wxGrid::Create()
m_labelBackgroundColour = m_rowLabelWin->GetBackgroundColour();
m_labelTextColour = m_rowLabelWin->GetForegroundColour();
- // now that we have the grid window, use its font to compute the default
- // row height
+ InitPixelFields();
+}
+
+void wxGrid::InitPixelFields()
+{
m_defaultRowHeight = m_gridWin->GetCharHeight();
#if defined(__WXMOTIF__) || defined(__WXGTK__) || defined(__WXQT__) // see also text ctrl sizing in ShowCellEditControl()
m_defaultRowHeight += 8;
@@ -2463,6 +2478,13 @@ void wxGrid::Create()
m_defaultRowHeight += 4;
#endif
+ m_rowLabelWidth = FromDIP(WXGRID_DEFAULT_ROW_LABEL_WIDTH);
+ m_colLabelHeight = FromDIP(WXGRID_DEFAULT_COL_LABEL_HEIGHT);
+
+ m_defaultColWidth = FromDIP(WXGRID_DEFAULT_COL_WIDTH);
+
+ m_minAcceptableColWidth = FromDIP(WXGRID_MIN_COL_WIDTH);
+ m_minAcceptableRowHeight = FromDIP(WXGRID_MIN_ROW_HEIGHT);
}
void wxGrid::CreateColumnWindow()
@@ -2475,7 +2497,7 @@ void wxGrid::CreateColumnWindow()
else // draw labels ourselves
{
m_colLabelWin = new wxGridColLabelWindow(this);
- m_colLabelHeight = WXGRID_DEFAULT_COL_LABEL_HEIGHT;
+ m_colLabelHeight = FromDIP(WXGRID_DEFAULT_COL_LABEL_HEIGHT);
}
}
@@ -2598,6 +2620,14 @@ wxGrid::SetTable(wxGridTableBase *table,
return m_created;
}
+void wxGrid::AssignTable(wxGridTableBase *table, wxGridSelectionModes selmode)
+{
+ wxCHECK_RET( table, wxS("Table pointer must be valid") );
+ wxCHECK_RET( !m_created, wxS("wxGrid already has a table") );
+
+ SetTable(table, true /* take ownership */, selmode);
+}
+
void wxGrid::Init()
{
m_created = false;
@@ -2619,9 +2649,6 @@ void wxGrid::Init()
m_defaultCellAttr = NULL;
m_typeRegistry = NULL;
- m_rowLabelWidth = WXGRID_DEFAULT_ROW_LABEL_WIDTH;
- m_colLabelHeight = WXGRID_DEFAULT_COL_LABEL_HEIGHT;
-
m_setFixedRows =
m_setFixedCols = NULL;
@@ -2644,11 +2671,15 @@ void wxGrid::Init()
m_cornerLabelVertAlign = wxALIGN_CENTRE;
m_cornerLabelTextOrientation = wxHORIZONTAL;
- m_defaultColWidth = WXGRID_DEFAULT_COL_WIDTH;
- m_defaultRowHeight = 0; // this will be initialized after creation
+ // All these fields require a valid window, so are initialized in Create().
+ m_rowLabelWidth =
+ m_colLabelHeight = 0;
- m_minAcceptableColWidth = WXGRID_MIN_COL_WIDTH;
- m_minAcceptableRowHeight = WXGRID_MIN_ROW_HEIGHT;
+ m_defaultColWidth =
+ m_defaultRowHeight = 0;
+
+ m_minAcceptableColWidth =
+ m_minAcceptableRowHeight = 0;
m_gridLineColour = wxColour( 192,192,192 );
m_gridLinesEnabled = true;
@@ -2669,6 +2700,7 @@ void wxGrid::Init()
m_canDragColSize = true;
m_canDragGridSize = true;
m_canDragCell = false;
+ m_dragMoveCol = -1;
m_dragLastPos = -1;
m_dragRowOrCol = -1;
m_isDragging = false;
@@ -2806,6 +2838,10 @@ int wxGrid::GetRowBottom(int row) const
void wxGrid::CalcDimensions()
{
+ // Wait until the window is thawed if it's currently frozen.
+ if ( GetBatchCount() )
+ return;
+
// if our OnSize() hadn't been called (it would if we have scrollbars), we
// still must reposition the children
CalcWindowSizes();
@@ -2827,8 +2863,8 @@ void wxGrid::CalcDimensions()
int y = GetRowTop(r);
// how big is the editor
- wxGridCellAttr* attr = GetCellAttr(r, c);
- wxGridCellEditor* editor = attr->GetEditor(this, r, c);
+ wxGridCellAttrPtr attr = GetCellAttrPtr(r, c);
+ wxGridCellEditorPtr editor = attr->GetEditorPtr(this, r, c);
editor->GetWindow()->GetSize(&w2, &h2);
w2 += x;
h2 += y;
@@ -2836,8 +2872,6 @@ void wxGrid::CalcDimensions()
w = w2;
if ( h2 > h )
h = h2;
- editor->DecRef();
- attr->DecRef();
}
wxPoint offset = GetGridWindowOffset(m_gridWin);
@@ -2978,11 +3012,10 @@ bool wxGrid::Redimension( wxGridTableMessage& msg )
if (attrProvider)
attrProvider->UpdateAttrRows( pos, numRows );
- if ( !GetBatchCount() )
- {
- CalcDimensions();
+ CalcDimensions();
+
+ if ( ShouldRefresh() )
m_rowLabelWin->Refresh();
- }
}
result = true;
break;
@@ -3011,11 +3044,10 @@ bool wxGrid::Redimension( wxGridTableMessage& msg )
UpdateCurrentCellOnRedim();
- if ( !GetBatchCount() )
- {
- CalcDimensions();
+ CalcDimensions();
+
+ if ( ShouldRefresh() )
m_rowLabelWin->Refresh();
- }
}
result = true;
break;
@@ -3060,11 +3092,10 @@ bool wxGrid::Redimension( wxGridTableMessage& msg )
#endif
}
- if ( !GetBatchCount() )
- {
- CalcDimensions();
+ CalcDimensions();
+
+ if ( ShouldRefresh() )
m_rowLabelWin->Refresh();
- }
}
result = true;
break;
@@ -3122,11 +3153,11 @@ bool wxGrid::Redimension( wxGridTableMessage& msg )
wxGridCellAttrProvider * attrProvider = m_table->GetAttrProvider();
if (attrProvider)
attrProvider->UpdateAttrCols( pos, numCols );
- if ( !GetBatchCount() )
- {
- CalcDimensions();
+
+ CalcDimensions();
+
+ if ( ShouldRefresh() )
m_colLabelWin->Refresh();
- }
}
result = true;
break;
@@ -3175,11 +3206,10 @@ bool wxGrid::Redimension( wxGridTableMessage& msg )
UpdateCurrentCellOnRedim();
- if ( !GetBatchCount() )
- {
- CalcDimensions();
+ CalcDimensions();
+
+ if ( ShouldRefresh() )
m_colLabelWin->Refresh();
- }
}
result = true;
break;
@@ -3244,11 +3274,10 @@ bool wxGrid::Redimension( wxGridTableMessage& msg )
#endif
}
- if ( !GetBatchCount() )
- {
- CalcDimensions();
+ CalcDimensions();
+
+ if ( ShouldRefresh() )
m_colLabelWin->Refresh();
- }
}
result = true;
break;
@@ -3256,7 +3285,7 @@ bool wxGrid::Redimension( wxGridTableMessage& msg )
InvalidateBestSize();
- if (result && !GetBatchCount() )
+ if (result && ShouldRefresh() )
Refresh();
return result;
@@ -3480,7 +3509,7 @@ void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent& event, wxGridRowLabelWindo
{
case WXGRID_CURSOR_RESIZE_ROW:
{
- DrawGridDragLine(event.GetPosition(), wxGridRowOperations(), gridWindow);
+ DoGridDragResize(event.GetPosition(), wxGridRowOperations(), gridWindow);
}
break;
@@ -3624,13 +3653,16 @@ void wxGrid::ProcessRowLabelMouseEvent( wxMouseEvent& event, wxGridRowLabelWindo
//
else if ( event.Moving() )
{
- m_dragRowOrCol = YToEdgeOfRow( pos.y );
- if ( m_dragRowOrCol != wxNOT_FOUND )
+ const int dragRowOrCol = YToEdgeOfRow( pos.y );
+ if ( dragRowOrCol != wxNOT_FOUND )
{
if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL )
{
- if ( CanDragRowSize(m_dragRowOrCol) )
+ if ( CanDragRowSize(dragRowOrCol) )
+ {
+ DoStartResizeRowOrCol(dragRowOrCol);
ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW, rowLabelWin, false);
+ }
}
}
else if ( m_cursorMode != WXGRID_CURSOR_SELECT_CELL )
@@ -3743,19 +3775,17 @@ void wxGrid::DoColHeaderClick(int col)
}
}
-void wxGrid::DoStartResizeCol(int col)
+void wxGrid::DoStartResizeRowOrCol(int col)
{
+ // Hide the editor if it's currently shown to avoid any weird interactions
+ // with it while dragging the row/column separator.
+ if ( IsCellEditControlShown() )
+ {
+ HideCellEditControl();
+ SaveEditControlValue();
+ }
+
m_dragRowOrCol = col;
- m_dragLastPos = -1;
- DoUpdateResizeColWidth(GetColWidth(m_dragRowOrCol));
-}
-
-void wxGrid::DoUpdateResizeColWidth(int w)
-{
- wxPoint pt(GetColLeft(m_dragRowOrCol) + w, 0);
-
- pt = CalcGridWindowScrolledPosition(pt, m_gridWin);
- DrawGridDragLine(pt, wxGridColumnOperations(), m_gridWin);
}
void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event, wxGridColLabelWindow* colLabelWin )
@@ -3787,7 +3817,7 @@ void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event, wxGridColLabelWindo
switch ( m_cursorMode )
{
case WXGRID_CURSOR_RESIZE_COL:
- DrawGridDragLine(event.GetPosition(), wxGridColumnOperations(), gridWindow);
+ DoGridDragResize(event.GetPosition(), wxGridColumnOperations(), gridWindow);
break;
case WXGRID_CURSOR_SELECT_COL:
@@ -3836,7 +3866,7 @@ void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event, wxGridColLabelWindo
const wxColour *color;
//Moving to the same place? Don't draw a marker
- if ( colNew == m_dragRowOrCol )
+ if ( colNew == m_dragMoveCol )
color = wxLIGHT_GREY;
else
color = wxBLUE;
@@ -3962,7 +3992,7 @@ void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event, wxGridColLabelWindo
break;
case WXGRID_CURSOR_MOVE_COL:
- if ( m_dragLastPos == -1 || col == m_dragRowOrCol )
+ if ( m_dragLastPos == -1 || col == m_dragMoveCol )
{
// the column didn't actually move anywhere
if ( col != -1 )
@@ -3988,7 +4018,7 @@ void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event, wxGridColLabelWindo
const bool onNearPart = (x <= middle);
// adjust for the column being dragged itself
- if ( pos < GetColPos(m_dragRowOrCol) )
+ if ( pos < GetColPos(m_dragMoveCol) )
pos++;
// and if it's on the near part of the target column,
@@ -4041,13 +4071,16 @@ void wxGrid::ProcessColLabelMouseEvent( wxMouseEvent& event, wxGridColLabelWindo
//
else if ( event.Moving() )
{
- m_dragRowOrCol = XToEdgeOfCol( x );
- if ( m_dragRowOrCol >= 0 )
+ const int dragRowOrCol = XToEdgeOfCol( x );
+ if ( dragRowOrCol >= 0 )
{
if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL )
{
- if ( CanDragColSize(m_dragRowOrCol) )
+ if ( CanDragColSize(dragRowOrCol) )
+ {
+ DoStartResizeRowOrCol(dragRowOrCol);
ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL, colLabelWin, false);
+ }
}
}
else if ( m_cursorMode != WXGRID_CURSOR_SELECT_CELL )
@@ -4118,9 +4151,6 @@ void wxGrid::CancelMouseCapture()
if ( m_winCapture )
{
DoAfterDraggingEnd();
-
- // remove traces of whatever we drew on screen
- Refresh();
}
}
@@ -4270,87 +4300,6 @@ wxGrid::DoGridCellDrag(wxMouseEvent& event,
return performDefault;
}
-void wxGrid::GetDragGridWindows(int pos,
- const wxGridOperations& oper,
- wxGridWindow*& firstGridWindow,
- wxGridWindow*& secondGridWindow)
-{
- int numFrozenLines = oper.Select(wxPoint(m_numFrozenRows, m_numFrozenCols));
-
- if ( numFrozenLines > 0 )
- {
- int lineEnd = oper.GetLineEndPos(this, numFrozenLines - 1);
-
- // check if it is within frozen windows space
- if ( pos < lineEnd )
- {
- firstGridWindow = m_frozenCornerGridWin;
- secondGridWindow = oper.GetFrozenGrid(this);
- }
- else
- {
- firstGridWindow = oper.Dual().GetFrozenGrid(this);
- secondGridWindow = m_gridWin;
- }
- }
- else
- {
- firstGridWindow = m_gridWin;
- secondGridWindow = NULL;
- }
-}
-
-void wxGrid::DrawGridDragLine(wxPoint position,
- const wxGridOperations& oper,
- wxGridWindow* gridWindow)
-{
- // we need the vertical position for rows and horizontal for columns here
- int pos = oper.Dual().Select(CalcGridWindowUnscrolledPosition(position, gridWindow));
-
- // don't allow resizing beneath the minimal size
- const int posMin = oper.GetLineStartPos(this, m_dragRowOrCol) +
- oper.GetMinimalLineSize(this, m_dragRowOrCol);
- if ( pos < posMin )
- pos = posMin;
-
- // erase the previously drawn line, if any
- if ( m_dragLastPos >= 0 )
- {
- wxGridWindow* prevGridWindows[2] = { NULL, NULL };
- GetDragGridWindows(m_dragLastPos, oper, prevGridWindows[0], prevGridWindows[1]);
-
- DoGridLineDrag(m_dragLastPos, oper, prevGridWindows[0]);
- DoGridLineDrag(m_dragLastPos, oper, prevGridWindows[1]);
- }
-
- // and draw it at the new position
- wxGridWindow* currGridWindows[2] = { NULL, NULL };
- GetDragGridWindows(pos, oper, currGridWindows[0], currGridWindows[1]);
-
- DoGridLineDrag(pos, oper, currGridWindows[0]);
- DoGridLineDrag(pos, oper, currGridWindows[1]);
-
- m_dragLastPos = pos;
-}
-
-void wxGrid::DoGridLineDrag(int pos,
- const wxGridOperations& oper,
- wxGridWindow* gridWindow)
-{
- if ( !gridWindow )
- return;
-
- wxClientDC dc(gridWindow);
- PrepareDCFor(dc, gridWindow);
- dc.SetLogicalFunction(wxINVERT);
-
- wxPoint offset = GetGridWindowOffset(gridWindow);
- const wxRect rectWin(CalcGridWindowUnscrolledPosition(offset, gridWindow),
- gridWindow->GetClientSize());
-
- oper.DrawParallelLineInRect(dc, rectWin, pos);
-}
-
bool wxGrid::DoGridDragEvent(wxMouseEvent& event,
const wxGridCellCoords& coords,
bool isFirstDrag,
@@ -4362,11 +4311,11 @@ bool wxGrid::DoGridDragEvent(wxMouseEvent& event,
return DoGridCellDrag(event, coords, isFirstDrag);
case WXGRID_CURSOR_RESIZE_ROW:
- DrawGridDragLine(event.GetPosition(), wxGridRowOperations(), gridWindow);
+ DoGridDragResize(event.GetPosition(), wxGridRowOperations(), gridWindow);
break;
case WXGRID_CURSOR_RESIZE_COL:
- DrawGridDragLine(event.GetPosition(), wxGridColumnOperations(), gridWindow);
+ DoGridDragResize(event.GetPosition(), wxGridColumnOperations(), gridWindow);
break;
default:
@@ -4474,11 +4423,9 @@ wxGrid::DoGridCellLeftUp(wxMouseEvent& event,
ClearSelection();
EnableCellEditControl();
- wxGridCellAttr *attr = GetCellAttr(coords);
- wxGridCellEditor *editor = attr->GetEditor(this, coords.GetRow(), coords.GetCol());
+ wxGridCellAttrPtr attr = GetCellAttrPtr(coords);
+ wxGridCellEditorPtr editor = attr->GetEditorPtr(this, coords.GetRow(), coords.GetCol());
editor->StartingClick();
- editor->DecRef();
- attr->DecRef();
m_waitForSlowClick = false;
}
@@ -4543,7 +4490,7 @@ wxGrid::DoGridMouseMoveEvent(wxMouseEvent& WXUNUSED(event),
{
if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL )
{
- m_dragRowOrCol = dragRow;
+ DoStartResizeRowOrCol(dragRow);
ChangeCursorMode(WXGRID_CURSOR_RESIZE_ROW, gridWindow, false);
}
}
@@ -4555,7 +4502,7 @@ wxGrid::DoGridMouseMoveEvent(wxMouseEvent& WXUNUSED(event),
{
if ( m_cursorMode == WXGRID_CURSOR_SELECT_CELL )
{
- m_dragRowOrCol = dragCol;
+ DoStartResizeRowOrCol(dragCol);
ChangeCursorMode(WXGRID_CURSOR_RESIZE_COL, gridWindow, false);
}
}
@@ -4694,145 +4641,97 @@ void wxGrid::ProcessGridCellMouseEvent(wxMouseEvent& event, wxGridWindow *eventG
}
}
-// this function returns true only if the size really changed
-bool wxGrid::DoEndDragResizeLine(const wxGridOperations& oper, wxGridWindow *gridWindow)
+void wxGrid::DoGridDragResize(const wxPoint& position,
+ const wxGridOperations& oper,
+ wxGridWindow* gridWindow)
{
- if ( m_dragLastPos == -1 )
- return false;
+ // Get the logical position from the physical one we're passed.
+ const wxPoint
+ logicalPos = CalcGridWindowUnscrolledPosition(position, gridWindow);
- const wxGridOperations& doper = oper.Dual();
- const wxSize size = gridWindow->GetClientSize();
- wxPoint offset = GetGridWindowOffset(gridWindow);
- const wxPoint ptOrigin = CalcGridWindowUnscrolledPosition(offset, gridWindow);
+ // Size of the row/column is determined by the mouse coordinates in the
+ // orthogonal direction.
+ const int linePos = oper.Dual().Select(logicalPos);
- const int posLineStart = oper.Select(ptOrigin);
- const int posLineEnd = oper.Select(ptOrigin) + oper.Select(size);
-
- // erase the last line we drew
- wxGridWindow* endDragGridWindows[2] = { NULL, NULL };
- GetDragGridWindows(m_dragLastPos, oper, endDragGridWindows[0], endDragGridWindows[1]);
-
- DoGridLineDrag(m_dragLastPos, oper, endDragGridWindows[0]);
- DoGridLineDrag(m_dragLastPos, oper, endDragGridWindows[1]);
-
- // temporarily hide the edit control before resizing
- HideCellEditControl();
- SaveEditControlValue();
-
- // increase the line size based on device, not logical position for frozen lines,
- // so that it won't increase in size more that the window when scrolled
- if ( m_dragRowOrCol < oper.Select(wxPoint(m_numFrozenRows, m_numFrozenCols)) )
- {
- wxPoint dragLastPoint(m_dragLastPos, m_dragLastPos);
- dragLastPoint = CalcGridWindowScrolledPosition(dragLastPoint, gridWindow);
-
- m_dragLastPos = doper.Select(dragLastPoint);
- }
-
- // do resize the line
const int lineStart = oper.GetLineStartPos(this, m_dragRowOrCol);
- const int lineSizeOld = oper.GetLineSize(this, m_dragRowOrCol);
oper.SetLineSize(this, m_dragRowOrCol,
- wxMax(m_dragLastPos - lineStart,
+ wxMax(linePos - lineStart,
oper.GetMinimalLineSize(this, m_dragRowOrCol)));
- const bool
- sizeChanged = oper.GetLineSize(this, m_dragRowOrCol) != lineSizeOld;
- m_dragLastPos = -1;
+ // TODO: generate RESIZING event, see #10754, if the size has changed.
+}
- // refresh now if we're not frozen
- if ( !GetBatchCount() )
- {
- // we need to refresh everything beyond the resized line in the header
- // window
+wxPoint wxGrid::GetPositionForResizeEvent(int width) const
+{
+ // Note that we currently always use m_gridWin here as using
+ // wxGridHeaderCtrl is incompatible with using frozen rows/columns.
+ // This would need to be changed if they're allowed to be used together.
+ int x;
+ CalcGridWindowScrolledPosition(GetColLeft(m_dragRowOrCol) + width, 0,
+ &x, NULL,
+ m_gridWin);
- // get the position from which to refresh in the other direction
- wxRect rect(CellToRect(oper.MakeCoords(m_dragRowOrCol, 0)));
- rect.SetPosition(CalcScrolledPosition(rect.GetPosition()));
-
- // we only need the ordinate (for rows) or abscissa (for columns) here,
- // and need to cover the entire window in the other direction
- oper.Select(rect) = 0;
-
- wxRect rectHeader(rect.GetPosition(),
- oper.MakeSize
- (
- oper.GetHeaderWindowSize(this),
- doper.Select(size) - doper.Select(rect)
- ));
-
- oper.GetHeaderWindow(this)->Refresh(true, &rectHeader);
-
-
- // also refresh the grid window: extend the rectangle
- if ( m_table )
- {
- oper.SelectSize(rect) = oper.Select(size);
-
- int subtractLines = 0;
- int line = doper.PosToLine(this, posLineStart, NULL);
- if ( line >= 0 )
- {
- // ensure that if we have a multi-cell block we redraw all of
- // it by increasing the refresh area to cover it entirely if a
- // part of it is affected
- const int lineEnd = doper.PosToLine(this, posLineEnd, NULL, true);
- for ( ; line < lineEnd; line++ )
- {
- int cellLines = oper.Select(
- GetCellSize(oper.MakeCoords(m_dragRowOrCol, line)));
- if ( cellLines < subtractLines )
- subtractLines = cellLines;
- }
- }
-
- int startPos =
- oper.GetLineStartPos(this, m_dragRowOrCol + subtractLines);
- startPos = doper.CalcScrolledPosition(this, startPos);
-
- doper.Select(rect) = startPos;
- doper.SelectSize(rect) = doper.Select(size) - startPos;
-
- Refresh(false, &rect);
- }
- }
-
- // show the edit control back again
- ShowCellEditControl();
-
- return sizeChanged;
+ return wxPoint(x, 0);
}
void wxGrid::DoEndDragResizeRow(const wxMouseEvent& event, wxGridWindow* gridWindow)
{
- // TODO: generate RESIZING event, see #10754
+ DoGridDragResize(event.GetPosition(), wxGridRowOperations(), gridWindow);
- if ( DoEndDragResizeLine(wxGridRowOperations(), gridWindow) )
- SendGridSizeEvent(wxEVT_GRID_ROW_SIZE, m_dragRowOrCol, -1, event);
+ SendGridSizeEvent(wxEVT_GRID_ROW_SIZE, m_dragRowOrCol, -1, event);
+
+ m_dragRowOrCol = -1;
}
void wxGrid::DoEndDragResizeCol(const wxMouseEvent& event, wxGridWindow* gridWindow)
{
- // TODO: generate RESIZING event, see #10754
+ DoGridDragResize(event.GetPosition(), wxGridColumnOperations(), gridWindow);
- if ( DoEndDragResizeLine(wxGridColumnOperations(), gridWindow) )
- SendGridSizeEvent(wxEVT_GRID_COL_SIZE, -1, m_dragRowOrCol, event);
+ SendGridSizeEvent(wxEVT_GRID_COL_SIZE, -1, m_dragRowOrCol, event);
+
+ m_dragRowOrCol = -1;
+}
+
+void wxGrid::DoHeaderStartDragResizeCol(int col)
+{
+ DoStartResizeRowOrCol(col);
+}
+
+void wxGrid::DoHeaderDragResizeCol(int width)
+{
+ DoGridDragResize(GetPositionForResizeEvent(width),
+ wxGridColumnOperations(),
+ m_gridWin);
+}
+
+void wxGrid::DoHeaderEndDragResizeCol(int width)
+{
+ // Unfortunately we need to create a dummy mouse event here to avoid
+ // modifying too much existing code. Note that only position and keyboard
+ // state parts of this event object are actually used, so the rest
+ // (even including some crucial parts, such as event type) can be left
+ // uninitialized.
+ wxMouseEvent e;
+ e.SetState(wxGetMouseState());
+ e.SetPosition(GetPositionForResizeEvent(width));
+
+ DoEndDragResizeCol(e, m_gridWin);
}
void wxGrid::DoStartMoveCol(int col)
{
- m_dragRowOrCol = col;
+ m_dragMoveCol = col;
}
void wxGrid::DoEndMoveCol(int pos)
{
- wxASSERT_MSG( m_dragRowOrCol != -1, "no matching DoStartMoveCol?" );
+ wxASSERT_MSG( m_dragMoveCol != -1, "no matching DoStartMoveCol?" );
- if ( SendEvent(wxEVT_GRID_COL_MOVE, -1, m_dragRowOrCol) != -1 )
- SetColPos(m_dragRowOrCol, pos);
+ if ( SendEvent(wxEVT_GRID_COL_MOVE, -1, m_dragMoveCol) != -1 )
+ SetColPos(m_dragMoveCol, pos);
//else: vetoed by user
- m_dragRowOrCol = -1;
+ m_dragMoveCol = -1;
}
void wxGrid::RefreshAfterColPosChange()
@@ -5049,11 +4948,10 @@ bool wxGrid::FreezeTo(int row, int col)
// recompute dimensions
InvalidateBestSize();
- if ( !GetBatchCount() )
- {
- CalcDimensions();
+ CalcDimensions();
+
+ if ( ShouldRefresh() )
Refresh();
- }
return true;
}
@@ -5110,7 +5008,7 @@ void wxGrid::ClearGrid()
DisableCellEditControl();
m_table->Clear();
- if (!GetBatchCount())
+ if ( ShouldRefresh() )
m_gridWin->Refresh();
}
}
@@ -5261,17 +5159,11 @@ wxGrid::SendEvent(wxEventType type, int row, int col, const wxString& s)
return claimed ? 1 : 0;
}
-void wxGrid::OnPaint( wxPaintEvent& WXUNUSED(event) )
-{
- // needed to prevent zillions of paint events on MSW
- wxPaintDC dc(this);
-}
-
void wxGrid::Refresh(bool eraseb, const wxRect* rect)
{
// Don't do anything if between Begin/EndBatch...
// EndBatch() will do all this on the last nested one anyway.
- if ( m_created && !GetBatchCount() )
+ if ( m_created && ShouldRefresh() )
{
// Refresh to get correct scrolled position:
wxScrolledCanvas::Refresh(eraseb, rect);
@@ -5466,6 +5358,72 @@ void wxGrid::OnSize(wxSizeEvent& WXUNUSED(event))
}
}
+void wxGrid::OnDPIChanged(wxDPIChangedEvent& event)
+{
+ InitPixelFields();
+
+ // If we have any non-default row sizes, we need to scale them (default
+ // ones will be scaled due to the reinitialization of m_defaultRowHeight
+ // inside InitPixelFields() above).
+ if ( !m_rowHeights.empty() )
+ {
+ int total = 0;
+ for ( unsigned i = 0; i < m_rowHeights.size(); ++i )
+ {
+ int height = m_rowHeights[i];
+
+ // Skip hidden rows.
+ if ( height <= 0 )
+ continue;
+
+ height = height * event.GetNewDPI().x / event.GetOldDPI().x;
+ total += height;
+
+ m_rowHeights[i] = height;
+ m_rowBottoms[i] = total;
+ }
+ }
+
+ // Similarly for columns, except that here we need to update the native
+ // control even if none of the widths had been changed, as it's not going
+ // to do it on its own when redisplayed.
+ wxHeaderCtrl* const
+ colHeader = m_useNativeHeader ? GetGridColHeader() : NULL;
+ if ( !m_colWidths.empty() )
+ {
+ int total = 0;
+ for ( unsigned i = 0; i < m_colWidths.size(); ++i )
+ {
+ int width = m_colWidths[i];
+
+ if ( width <= 0 )
+ continue;
+
+ width = width * event.GetNewDPI().x / event.GetOldDPI().x;
+ total += width;
+
+ m_colWidths[i] = width;
+ m_colRights[i] = total;
+
+ if ( colHeader )
+ colHeader->UpdateColumn(i);
+ }
+ }
+ else if ( colHeader )
+ {
+ for ( int i = 0; i < m_numCols; ++i )
+ {
+ colHeader->UpdateColumn(i);
+ }
+ }
+
+ InvalidateBestSize();
+
+ CalcDimensions();
+
+ event.Skip();
+}
+
void wxGrid::OnKeyDown( wxKeyEvent& event )
{
if ( m_inOnKeyDown )
@@ -5563,15 +5521,80 @@ void wxGrid::OnKeyDown( wxKeyEvent& event )
break;
case WXK_HOME:
- GoToCell(event.ControlDown() ? 0
- : m_currentCellCoords.GetRow(),
- 0);
- break;
-
case WXK_END:
- GoToCell(event.ControlDown() ? m_numRows - 1
- : m_currentCellCoords.GetRow(),
- m_numCols - 1);
+ if ( m_currentCellCoords != wxGridNoCellCoords )
+ {
+ const bool goToBeginning = event.GetKeyCode() == WXK_HOME;
+
+ // Find the first or last visible row if we need to go to it
+ // (without Control, we keep the current row).
+ int row;
+ if ( event.ControlDown() )
+ {
+ if ( goToBeginning )
+ {
+ for ( row = 0; row < m_numRows; ++row )
+ {
+ if ( IsRowShown(row) )
+ break;
+ }
+ }
+ else
+ {
+ for ( row = m_numRows - 1; row >= 0; --row )
+ {
+ if ( IsRowShown(row) )
+ break;
+ }
+ }
+ }
+ else
+ {
+ // If we're selecting, continue in the same row, which
+ // may well be different from the one in which we
+ // started selecting.
+ if ( event.ShiftDown() &&
+ m_selectedBlockCorner != wxGridNoCellCoords )
+ {
+ row = m_selectedBlockCorner.GetRow();
+ }
+ else // Just use the current row.
+ {
+ row = m_currentCellCoords.GetRow();
+ }
+ }
+
+ // Also find the last or first visible column in any case.
+ int col;
+ if ( goToBeginning )
+ {
+ for ( col = 0; col < m_numCols; ++col )
+ {
+ if ( IsColShown(GetColAt(col)) )
+ break;
+ }
+ }
+ else
+ {
+ for ( col = m_numCols - 1; col >= 0; --col )
+ {
+ if ( IsColShown(GetColAt(col)) )
+ break;
+ }
+ }
+
+ if ( event.ShiftDown() )
+ {
+ UpdateBlockBeingSelected(m_currentCellCoords,
+ wxGridCellCoords(row, col));
+ MakeCellVisible(row, col);
+ }
+ else
+ {
+ ClearSelection();
+ GoToCell(row, GetColAt(col));
+ }
+ }
break;
case WXK_PAGEUP:
@@ -5654,8 +5677,8 @@ void wxGrid::OnChar( wxKeyEvent& event )
// yes, now check whether the cells editor accepts the key
int row = m_currentCellCoords.GetRow();
int col = m_currentCellCoords.GetCol();
- wxGridCellAttr *attr = GetCellAttr(row, col);
- wxGridCellEditor *editor = attr->GetEditor(this, row, col);
+ wxGridCellAttrPtr attr = GetCellAttrPtr(row, col);
+ wxGridCellEditorPtr editor = attr->GetEditorPtr(this, row, col);
// is special and will always start editing, for
// other keys - ask the editor itself
@@ -5677,9 +5700,6 @@ void wxGrid::OnChar( wxKeyEvent& event )
{
event.Skip();
}
-
- editor->DecRef();
- attr->DecRef();
}
else
{
@@ -5687,10 +5707,6 @@ void wxGrid::OnChar( wxKeyEvent& event )
}
}
-void wxGrid::OnEraseBackground(wxEraseEvent&)
-{
-}
-
void wxGrid::DoGridProcessTab(wxKeyboardState& kbdState)
{
const bool isForwardTab = !kbdState.ShiftDown();
@@ -5808,13 +5824,12 @@ bool wxGrid::SetCurrentCell( const wxGridCellCoords& coords )
m_currentCellCoords = coords;
#if !defined(__WXMAC__)
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
{
- wxGridCellAttr *attr = GetCellAttr( coords );
+ wxGridCellAttrPtr attr = GetCellAttrPtr( coords );
wxClientDC dc( currentGridWindow );
PrepareDCFor(dc, currentGridWindow);
- DrawCellHighlight( dc, attr );
- attr->DecRef();
+ DrawCellHighlight( dc, attr.get() );
}
#endif
@@ -5822,11 +5837,16 @@ bool wxGrid::SetCurrentCell( const wxGridCellCoords& coords )
}
void
-wxGrid::UpdateBlockBeingSelected(int topRow, int leftCol,
- int bottomRow, int rightCol)
+wxGrid::UpdateBlockBeingSelected(int blockStartRow, int blockStartCol,
+ int blockEndRow, int blockEndCol)
{
+ m_selectedBlockCorner = wxGridCellCoords(blockEndRow, blockEndCol);
MakeCellVisible(m_selectedBlockCorner);
- m_selectedBlockCorner = wxGridCellCoords(bottomRow, rightCol);
+
+ int topRow = wxMin(blockStartRow, blockEndRow);
+ int leftCol = wxMin(blockStartCol, blockEndCol);
+ int bottomRow = wxMax(blockStartRow, blockEndRow);
+ int rightCol = wxMax(blockStartCol, blockEndCol);
if ( m_selection )
{
@@ -5864,9 +5884,6 @@ wxGrid::UpdateBlockBeingSelected(int topRow, int leftCol,
}
}
- EnsureFirstLessThanSecond(topRow, bottomRow);
- EnsureFirstLessThanSecond(leftCol, rightCol);
-
wxGridCellCoords updateTopLeft = wxGridCellCoords(topRow, leftCol),
updateBottomRight = wxGridCellCoords(bottomRow, rightCol);
@@ -6009,7 +6026,7 @@ void wxGrid::DrawGridCellArea( wxDC& dc, const wxGridCellCoordsArray& cells )
{
if (!m_table->IsEmptyCell(row + l, j))
{
- if (GetCellOverflow(row + l, j))
+ if ( GetCellAttrPtr(row + l, j)->CanOverflow() )
{
wxGridCellCoords cell(row + l, j);
bool marked = false;
@@ -6096,7 +6113,7 @@ void wxGrid::DrawCell( wxDC& dc, const wxGridCellCoords& coords )
return;
// we draw the cell border ourselves
- wxGridCellAttr* attr = GetCellAttr(row, col);
+ wxGridCellAttrPtr attr = GetCellAttrPtr(row, col);
bool isCurrent = coords == m_currentCellCoords;
@@ -6106,25 +6123,14 @@ void wxGrid::DrawCell( wxDC& dc, const wxGridCellCoords& coords )
// Note: However, only if it is really _shown_, i.e. not hidden!
if ( isCurrent && IsCellEditControlShown() )
{
- // NB: this "#if..." is temporary and fixes a problem where the
- // edit control is erased by this code after being rendered.
- // On wxMac (QD build only), the cell editor is a wxTextCntl and is rendered
- // implicitly, causing this out-of order render.
-#if !defined(__WXMAC__)
- wxGridCellEditor *editor = attr->GetEditor(this, row, col);
- editor->PaintBackground(dc, rect, *attr);
- editor->DecRef();
-#endif
+ attr->GetEditorPtr(this, row, col)->PaintBackground(dc, rect, *attr);
}
else
{
// but all the rest is drawn by the cell renderer and hence may be customized
- wxGridCellRenderer *renderer = attr->GetRenderer(this, row, col);
- renderer->Draw(*this, *attr, dc, rect, row, col, IsInSelection(coords));
- renderer->DecRef();
+ attr->GetRendererPtr(this, row, col)
+ ->Draw(*this, *attr, dc, rect, row, col, IsInSelection(coords));
}
-
- attr->DecRef();
}
void wxGrid::DrawCellHighlight( wxDC& dc, const wxGridCellAttr *attr )
@@ -6251,9 +6257,8 @@ void wxGrid::DrawHighlight(wxDC& dc, const wxGridCellCoordsArray& cells)
if ( cell == m_currentCellCoords )
{
- wxGridCellAttr* attr = GetCellAttr(m_currentCellCoords);
- DrawCellHighlight(dc, attr);
- attr->DecRef();
+ wxGridCellAttrPtr attr = GetCellAttrPtr(m_currentCellCoords);
+ DrawCellHighlight(dc, attr.get());
break;
}
@@ -6586,8 +6591,15 @@ bool wxGrid::UseNativeColHeader(bool native)
CreateColumnWindow();
if ( m_useNativeHeader )
+ {
SetNativeHeaderColCount();
+ wxHeaderCtrl* const colHeader = GetGridColHeader();
+ colHeader->SetBackgroundColour( GetLabelBackgroundColour() );
+ colHeader->SetForegroundColour( GetLabelTextColour() );
+ colHeader->SetFont( GetLabelFont() );
+ }
+
CalcWindowSizes();
return true;
@@ -6747,9 +6759,9 @@ void wxGrid::DrawTextRectangle(wxDC& dc,
{
case wxALIGN_BOTTOM:
if ( textOrientation == wxHORIZONTAL )
- y = rect.y + (rect.height - textHeight - 1);
+ y = rect.y + (rect.height - textHeight - GRID_TEXT_MARGIN);
else
- x = rect.x + rect.width - textWidth;
+ x = rect.x + (rect.width - textWidth - GRID_TEXT_MARGIN);
break;
case wxALIGN_CENTRE:
@@ -6762,9 +6774,9 @@ void wxGrid::DrawTextRectangle(wxDC& dc,
case wxALIGN_TOP:
default:
if ( textOrientation == wxHORIZONTAL )
- y = rect.y + 1;
+ y = rect.y + GRID_TEXT_MARGIN;
else
- x = rect.x + 1;
+ x = rect.x + GRID_TEXT_MARGIN;
break;
}
@@ -6788,9 +6800,9 @@ void wxGrid::DrawTextRectangle(wxDC& dc,
{
case wxALIGN_RIGHT:
if ( textOrientation == wxHORIZONTAL )
- x = rect.x + (rect.width - lineWidth - 1);
+ x = rect.x + (rect.width - lineWidth - GRID_TEXT_MARGIN);
else
- y = rect.y + lineWidth + 1;
+ y = rect.y + lineWidth + GRID_TEXT_MARGIN;
break;
case wxALIGN_CENTRE:
@@ -6803,9 +6815,9 @@ void wxGrid::DrawTextRectangle(wxDC& dc,
case wxALIGN_LEFT:
default:
if ( textOrientation == wxHORIZONTAL )
- x = rect.x + 1;
+ x = rect.x + GRID_TEXT_MARGIN;
else
- y = rect.y + rect.height - 1;
+ y = rect.y + rect.height - GRID_TEXT_MARGIN;
break;
}
@@ -6837,7 +6849,7 @@ void wxGrid::DrawTextRectangle(wxDC& dc,
text,
dc,
attr.GetFitMode().GetEllipsizeMode(),
- rect.GetWidth(),
+ rect.GetWidth() - 2 * GRID_TEXT_MARGIN,
wxELLIPSIZE_FLAGS_NONE
);
@@ -6995,12 +7007,8 @@ void wxGrid::EnableCellEditControl( bool enable )
bool wxGrid::IsCurrentCellReadOnly() const
{
- wxGridCellAttr*
- attr = const_cast(this)->GetCellAttr(m_currentCellCoords);
- bool readonly = attr->IsReadOnly();
- attr->DecRef();
-
- return readonly;
+ return const_cast(this)->
+ GetCellAttrPtr(m_currentCellCoords)->IsReadOnly();
}
bool wxGrid::CanEnableCellControl() const
@@ -7024,18 +7032,13 @@ bool wxGrid::IsCellEditControlShown() const
{
int row = m_currentCellCoords.GetRow();
int col = m_currentCellCoords.GetCol();
- wxGridCellAttr* attr = GetCellAttr(row, col);
- wxGridCellEditor* editor = attr->GetEditor((wxGrid*) this, row, col);
- attr->DecRef();
-
+ wxGridCellEditorPtr editor = GetCellAttrPtr(row, col)->GetEditorPtr(this, row, col);
if ( editor )
{
if ( editor->IsCreated() )
{
isShown = editor->GetWindow()->IsShown();
}
-
- editor->DecRef();
}
}
@@ -7074,7 +7077,7 @@ void wxGrid::ShowCellEditControl()
// might not cover the entire cell
wxClientDC dc( gridWindow );
PrepareDCFor(dc, gridWindow);
- wxGridCellAttr* attr = GetCellAttr(row, col);
+ wxGridCellAttrPtr attr = GetCellAttrPtr(row, col);
dc.SetBrush(wxBrush(attr->GetBackgroundColour()));
dc.SetPen(*wxTRANSPARENT_PEN);
dc.DrawRectangle(rect);
@@ -7095,11 +7098,11 @@ void wxGrid::ShowCellEditControl()
rect.Deflate(1, 1);
#endif
- wxGridCellEditor* editor = attr->GetEditor(this, row, col);
+ wxGridCellEditorPtr editor = attr->GetEditorPtr(this, row, col);
if ( !editor->IsCreated() )
{
editor->Create(gridWindow, wxID_ANY,
- new wxGridCellEditorEvtHandler(this, editor));
+ new wxGridCellEditorEvtHandler(this, editor.get()));
// Ensure the editor window has wxWANTS_CHARS flag, so that it
// gets Tab, Enter and Esc keys, which need to be processed
@@ -7163,13 +7166,13 @@ void wxGrid::ShowCellEditControl()
rect.SetRight( client_right - 1 );
}
- editor->SetCellAttr( attr );
+ editor->SetCellAttr( attr.get() );
editor->SetSize( rect );
if (nXMove != 0)
editor->GetWindow()->Move(
editor->GetWindow()->GetPosition().x + nXMove,
editor->GetWindow()->GetPosition().y );
- editor->Show( true, attr );
+ editor->Show( true, attr.get() );
// recalc dimensions in case we need to
// expand the scrolled window to account for editor
@@ -7177,9 +7180,6 @@ void wxGrid::ShowCellEditControl()
editor->BeginEdit(row, col, this);
editor->SetCellAttr(NULL);
-
- editor->DecRef();
- attr->DecRef();
}
}
}
@@ -7191,16 +7191,14 @@ void wxGrid::HideCellEditControl()
int row = m_currentCellCoords.GetRow();
int col = m_currentCellCoords.GetCol();
- wxGridCellAttr *attr = GetCellAttr(row, col);
- wxGridCellEditor *editor = attr->GetEditor(this, row, col);
+ wxGridCellAttrPtr attr = GetCellAttrPtr(row, col);
+ wxGridCellEditorPtr editor = attr->GetEditorPtr(this, row, col);
const bool editorHadFocus = editor->GetWindow()->IsDescendant(FindFocus());
if ( editor->GetWindow()->GetParent() != m_gridWin )
editor->GetWindow()->Reparent(m_gridWin);
editor->Show( false );
- editor->DecRef();
- attr->DecRef();
wxGridWindow *gridWindow = CellToGridWindow(row, col);
// return the focus to the grid itself if the editor had it
@@ -7255,8 +7253,8 @@ void wxGrid::DoSaveEditControlValue()
wxString oldval = GetCellValue(row, col);
- wxGridCellAttr* attr = GetCellAttr(row, col);
- wxGridCellEditor* editor = attr->GetEditor(this, row, col);
+ wxGridCellAttrPtr attr = GetCellAttrPtr(row, col);
+ wxGridCellEditorPtr editor = attr->GetEditorPtr(this, row, col);
wxString newval;
bool changed = editor->EndEdit(row, col, this, oldval, &newval);
@@ -7274,9 +7272,6 @@ void wxGrid::DoSaveEditControlValue()
SetCellValue(row, col, oldval);
}
}
-
- editor->DecRef();
- attr->DecRef();
}
void wxGrid::OnHideEditor(wxCommandEvent& WXUNUSED(event))
@@ -7413,15 +7408,15 @@ int wxGrid::PosToEdgeOfLine(int pos, const wxGridOperations& oper) const
if ( line == wxNOT_FOUND )
return -1;
- if ( oper.GetLineSize(this, line) > WXGRID_LABEL_EDGE_ZONE )
+ const int edge = FromDIP(WXGRID_LABEL_EDGE_ZONE);
+
+ if ( oper.GetLineSize(this, line) > edge )
{
// We know that we are in this line, test whether we are close enough
// to start or end border, respectively.
- if ( abs(oper.GetLineEndPos(this, line) - pos) < WXGRID_LABEL_EDGE_ZONE )
+ if ( abs(oper.GetLineEndPos(this, line) - pos) < edge )
return line;
- else if ( line > 0 &&
- pos - oper.GetLineStartPos(this,
- line) < WXGRID_LABEL_EDGE_ZONE )
+ else if ( line > 0 && pos - oper.GetLineStartPos(this, line) < edge )
{
// We need to find the previous visible line, so skip all the
// hidden (of size 0) ones.
@@ -8065,7 +8060,7 @@ void wxGrid::SetLabelBackgroundColour( const wxColour& colour )
if ( m_frozenCornerGridWin )
m_frozenCornerGridWin->SetBackgroundColour( colour );
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
{
m_rowLabelWin->Refresh();
m_colLabelWin->Refresh();
@@ -8086,7 +8081,11 @@ void wxGrid::SetLabelTextColour( const wxColour& colour )
if ( m_labelTextColour != colour )
{
m_labelTextColour = colour;
- if ( !GetBatchCount() )
+
+ if ( IsUsingNativeHeader() )
+ GetGridColHeader()->SetForegroundColour( colour );
+
+ if ( ShouldRefresh() )
{
m_rowLabelWin->Refresh();
m_colLabelWin->Refresh();
@@ -8097,7 +8096,11 @@ void wxGrid::SetLabelTextColour( const wxColour& colour )
void wxGrid::SetLabelFont( const wxFont& font )
{
m_labelFont = font;
- if ( !GetBatchCount() )
+
+ if ( IsUsingNativeHeader() )
+ GetGridColHeader()->SetFont( font );
+
+ if ( ShouldRefresh() )
{
m_rowLabelWin->Refresh();
m_colLabelWin->Refresh();
@@ -8131,7 +8134,7 @@ void wxGrid::SetRowLabelAlignment( int horiz, int vert )
m_rowLabelVertAlign = vert;
}
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
{
m_rowLabelWin->Refresh();
}
@@ -8164,7 +8167,7 @@ void wxGrid::SetColLabelAlignment( int horiz, int vert )
m_colLabelVertAlign = vert;
}
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
{
m_colLabelWin->Refresh();
}
@@ -8197,7 +8200,7 @@ void wxGrid::SetCornerLabelAlignment( int horiz, int vert )
m_cornerLabelVertAlign = vert;
}
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
{
m_cornerLabelWin->Refresh();
}
@@ -8215,7 +8218,7 @@ void wxGrid::SetColLabelTextOrientation( int textOrientation )
if ( textOrientation == wxHORIZONTAL || textOrientation == wxVERTICAL )
m_colLabelTextOrientation = textOrientation;
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
m_colLabelWin->Refresh();
}
@@ -8224,7 +8227,7 @@ void wxGrid::SetCornerLabelTextOrientation( int textOrientation )
if ( textOrientation == wxHORIZONTAL || textOrientation == wxVERTICAL )
m_cornerLabelTextOrientation = textOrientation;
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
m_cornerLabelWin->Refresh();
}
@@ -8233,7 +8236,7 @@ void wxGrid::SetRowLabelValue( int row, const wxString& s )
if ( m_table )
{
m_table->SetRowLabelValue( row, s );
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
{
wxRect rect = CellToRect( row, 0 );
if ( rect.height > 0 )
@@ -8252,7 +8255,7 @@ void wxGrid::SetColLabelValue( int col, const wxString& s )
if ( m_table )
{
m_table->SetColLabelValue( col, s );
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
{
if ( m_useNativeHeader )
{
@@ -8278,7 +8281,7 @@ void wxGrid::SetCornerLabelValue( const wxString& s )
if ( m_table )
{
m_table->SetCornerLabelValue( s );
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
{
wxRect rect = m_cornerLabelWin->GetRect();
m_cornerLabelWin->Refresh(true, &rect);
@@ -8308,9 +8311,8 @@ void wxGrid::SetCellHighlightColour( const wxColour& colour )
wxClientDC dc( gridWindow );
PrepareDCFor( dc, gridWindow );
- wxGridCellAttr* attr = GetCellAttr(m_currentCellCoords);
- DrawCellHighlight(dc, attr);
- attr->DecRef();
+ wxGridCellAttrPtr attr = GetCellAttrPtr(m_currentCellCoords);
+ DrawCellHighlight(dc, attr.get());
}
}
@@ -8359,7 +8361,7 @@ void wxGrid::SetGridFrozenBorderColour(const wxColour &colour)
{
m_gridFrozenBorderColour = colour;
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
{
if ( m_frozenRowGridWin )
m_frozenRowGridWin->Refresh();
@@ -8375,7 +8377,7 @@ void wxGrid::SetGridFrozenBorderPenWidth(int width)
{
m_gridFrozenBorderPenWidth = width;
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
{
if ( m_frozenRowGridWin )
m_frozenRowGridWin->Refresh();
@@ -8387,8 +8389,8 @@ void wxGrid::SetGridFrozenBorderPenWidth(int width)
void wxGrid::RedrawGridLines()
{
- // the lines will be redrawn when the window is thawn
- if ( GetBatchCount() )
+ // the lines will be redrawn when the window is thawed or shown
+ if ( !ShouldRefresh() )
return;
if ( GridLinesEnabled() )
@@ -8554,53 +8556,33 @@ wxGridCellEditor *wxGrid::GetDefaultEditor() const
wxColour wxGrid::GetCellBackgroundColour(int row, int col) const
{
- wxGridCellAttr *attr = GetCellAttr(row, col);
- wxColour colour = attr->GetBackgroundColour();
- attr->DecRef();
-
- return colour;
+ return GetCellAttrPtr(row, col)->GetBackgroundColour();
}
wxColour wxGrid::GetCellTextColour( int row, int col ) const
{
- wxGridCellAttr *attr = GetCellAttr(row, col);
- wxColour colour = attr->GetTextColour();
- attr->DecRef();
-
- return colour;
+ return GetCellAttrPtr(row, col)->GetTextColour();
}
wxFont wxGrid::GetCellFont( int row, int col ) const
{
- wxGridCellAttr *attr = GetCellAttr(row, col);
- wxFont font = attr->GetFont();
- attr->DecRef();
-
- return font;
+ return GetCellAttrPtr(row, col)->GetFont();
}
void wxGrid::GetCellAlignment( int row, int col, int *horiz, int *vert ) const
{
- wxGridCellAttr *attr = GetCellAttr(row, col);
- attr->GetAlignment(horiz, vert);
- attr->DecRef();
+ return GetCellAttrPtr(row, col)->GetAlignment(horiz, vert);
}
wxGridFitMode wxGrid::GetCellFitMode( int row, int col ) const
{
- wxGridCellAttr *attr = GetCellAttr(row, col);
- wxGridFitMode fitMode = attr->GetFitMode();
- attr->DecRef();
-
- return fitMode;
+ return GetCellAttrPtr(row, col)->GetFitMode();
}
wxGrid::CellSpan
wxGrid::GetCellSize( int row, int col, int *num_rows, int *num_cols ) const
{
- wxGridCellAttr *attr = GetCellAttr(row, col);
- attr->GetSize( num_rows, num_cols );
- attr->DecRef();
+ GetCellAttrPtr(row, col)->GetSize( num_rows, num_cols );
if ( *num_rows == 1 && *num_cols == 1 )
return CellSpan_None; // just a normal cell
@@ -8614,29 +8596,17 @@ wxGrid::GetCellSize( int row, int col, int *num_rows, int *num_cols ) const
wxGridCellRenderer* wxGrid::GetCellRenderer(int row, int col) const
{
- wxGridCellAttr* attr = GetCellAttr(row, col);
- wxGridCellRenderer* renderer = attr->GetRenderer(this, row, col);
- attr->DecRef();
-
- return renderer;
+ return GetCellAttrPtr(row, col)->GetRenderer(this, row, col);
}
wxGridCellEditor* wxGrid::GetCellEditor(int row, int col) const
{
- wxGridCellAttr* attr = GetCellAttr(row, col);
- wxGridCellEditor* editor = attr->GetEditor(this, row, col);
- attr->DecRef();
-
- return editor;
+ return GetCellAttrPtr(row, col)->GetEditor(this, row, col);
}
bool wxGrid::IsReadOnly(int row, int col) const
{
- wxGridCellAttr* attr = GetCellAttr(row, col);
- bool isReadOnly = attr->IsReadOnly();
- attr->DecRef();
-
- return isReadOnly;
+ return GetCellAttrPtr(row, col)->IsReadOnly();
}
// ----------------------------------------------------------------------------
@@ -8743,7 +8713,7 @@ wxGridCellAttr *wxGrid::GetCellAttr(int row, int col) const
wxGridCellAttr *wxGrid::GetOrCreateCellAttr(int row, int col) const
{
wxGridCellAttr *attr = NULL;
- bool canHave = ((wxGrid*)this)->CanHaveAttributes();
+ const bool canHave = CanHaveAttributes();
wxCHECK_MSG( canHave, attr, wxT("Cell attributes not allowed"));
wxCHECK_MSG( m_table, attr, wxT("must have a table") );
@@ -8857,9 +8827,7 @@ void wxGrid::SetCellBackgroundColour( int row, int col, const wxColour& colour )
{
if ( CanHaveAttributes() )
{
- wxGridCellAttr *attr = GetOrCreateCellAttr(row, col);
- attr->SetBackgroundColour(colour);
- attr->DecRef();
+ GetOrCreateCellAttrPtr(row, col)->SetBackgroundColour(colour);
}
}
@@ -8867,9 +8835,7 @@ void wxGrid::SetCellTextColour( int row, int col, const wxColour& colour )
{
if ( CanHaveAttributes() )
{
- wxGridCellAttr *attr = GetOrCreateCellAttr(row, col);
- attr->SetTextColour(colour);
- attr->DecRef();
+ GetOrCreateCellAttrPtr(row, col)->SetTextColour(colour);
}
}
@@ -8877,9 +8843,7 @@ void wxGrid::SetCellFont( int row, int col, const wxFont& font )
{
if ( CanHaveAttributes() )
{
- wxGridCellAttr *attr = GetOrCreateCellAttr(row, col);
- attr->SetFont(font);
- attr->DecRef();
+ GetOrCreateCellAttrPtr(row, col)->SetFont(font);
}
}
@@ -8887,9 +8851,7 @@ void wxGrid::SetCellAlignment( int row, int col, int horiz, int vert )
{
if ( CanHaveAttributes() )
{
- wxGridCellAttr *attr = GetOrCreateCellAttr(row, col);
- attr->SetAlignment(horiz, vert);
- attr->DecRef();
+ GetOrCreateCellAttrPtr(row, col)->SetAlignment(horiz, vert);
}
}
@@ -8897,9 +8859,7 @@ void wxGrid::SetCellFitMode( int row, int col, wxGridFitMode fitMode )
{
if ( CanHaveAttributes() )
{
- wxGridCellAttr *attr = GetOrCreateCellAttr(row, col);
- attr->SetFitMode(fitMode);
- attr->DecRef();
+ GetOrCreateCellAttrPtr(row, col)->SetFitMode(fitMode);
}
}
@@ -8909,10 +8869,9 @@ void wxGrid::SetCellSize( int row, int col, int num_rows, int num_cols )
{
int cell_rows, cell_cols;
- wxGridCellAttr *attr = GetOrCreateCellAttr(row, col);
+ wxGridCellAttrPtr attr = GetOrCreateCellAttrPtr(row, col);
attr->GetSize(&cell_rows, &cell_cols);
attr->SetSize(num_rows, num_cols);
- attr->DecRef();
// Cannot set the size of a cell to 0 or negative values
// While it is perfectly legal to do that, this function cannot
@@ -8933,9 +8892,7 @@ void wxGrid::SetCellSize( int row, int col, int num_rows, int num_cols )
{
if ((i != col) || (j != row))
{
- wxGridCellAttr *attr_stub = GetOrCreateCellAttr(j, i);
- attr_stub->SetSize( 1, 1 );
- attr_stub->DecRef();
+ GetOrCreateCellAttrPtr(j, i)->SetSize( 1, 1 );
}
}
}
@@ -8952,9 +8909,7 @@ void wxGrid::SetCellSize( int row, int col, int num_rows, int num_cols )
{
if ((i != col) || (j != row))
{
- wxGridCellAttr *attr_stub = GetOrCreateCellAttr(j, i);
- attr_stub->SetSize( row - j, col - i );
- attr_stub->DecRef();
+ GetOrCreateCellAttrPtr(j, i)->SetSize( row - j, col - i );
}
}
}
@@ -8966,9 +8921,7 @@ void wxGrid::SetCellRenderer(int row, int col, wxGridCellRenderer *renderer)
{
if ( CanHaveAttributes() )
{
- wxGridCellAttr *attr = GetOrCreateCellAttr(row, col);
- attr->SetRenderer(renderer);
- attr->DecRef();
+ GetOrCreateCellAttrPtr(row, col)->SetRenderer(renderer);
}
}
@@ -8976,9 +8929,7 @@ void wxGrid::SetCellEditor(int row, int col, wxGridCellEditor* editor)
{
if ( CanHaveAttributes() )
{
- wxGridCellAttr *attr = GetOrCreateCellAttr(row, col);
- attr->SetEditor(editor);
- attr->DecRef();
+ GetOrCreateCellAttrPtr(row, col)->SetEditor(editor);
}
}
@@ -8986,9 +8937,7 @@ void wxGrid::SetReadOnly(int row, int col, bool isReadOnly)
{
if ( CanHaveAttributes() )
{
- wxGridCellAttr *attr = GetOrCreateCellAttr(row, col);
- attr->SetReadOnly(isReadOnly);
- attr->DecRef();
+ GetOrCreateCellAttrPtr(row, col)->SetReadOnly(isReadOnly);
}
}
@@ -9100,8 +9049,7 @@ void wxGrid::SetDefaultRowSize( int height, bool resizeExistingRows )
// some speed optimisations)
m_rowHeights.Empty();
m_rowBottoms.Empty();
- if ( !GetBatchCount() )
- CalcDimensions();
+ CalcDimensions();
}
}
@@ -9208,10 +9156,89 @@ void wxGrid::DoSetRowSize( int row, int height )
InvalidateBestSize();
- if ( !GetBatchCount() )
+ CalcDimensions();
+
+ if ( ShouldRefresh() )
{
- CalcDimensions();
- Refresh();
+ // We need to check the size of all the currently visible cells and
+ // decrease the row to cover the start of the multirow cells, if any,
+ // because we need to refresh such cells entirely when resizing.
+ int topRow = row;
+
+ // Note that we don't care about the cells in frozen windows here as
+ // they can't have multiple rows currently.
+ const wxRect rect = m_gridWin->GetRect();
+ int left, right;
+ CalcUnscrolledPosition(rect.GetLeft(), 0, &left, NULL);
+ CalcUnscrolledPosition(rect.GetRight(), 0, &right, NULL);
+
+ const int posLeft = XToPos(left, m_gridWin);
+ const int posRight = XToPos(right, m_gridWin);
+ for ( int pos = posLeft; pos <= posRight; ++pos )
+ {
+ int col = GetColAt(pos);
+
+ int numRows, numCols;
+ if ( GetCellSize(row, col, &numRows, &numCols) == CellSpan_Inside )
+ {
+ // Notice that numRows here is negative.
+ if ( row + numRows < topRow )
+ topRow = row + numRows;
+ }
+ }
+
+ // Helper object to refresh part of the window below the given position
+ // (in physical coordinates).
+ class LowerWindowPartRefresher
+ {
+ public:
+ explicit LowerWindowPartRefresher(int top)
+ : m_top(top)
+ {
+ }
+
+ void operator()(wxWindow* w) const
+ {
+ wxSize size = w->GetClientSize();
+ size.y -= m_top;
+ w->RefreshRect(wxRect(wxPoint(0, m_top), size));
+ }
+
+ private:
+ const int m_top;
+ };
+
+ int y;
+ CalcScrolledPosition(0, GetRowTop(topRow), NULL, &y);
+
+ if ( topRow < m_numFrozenRows )
+ {
+ // This row is frozen, refresh the frozen windows.
+ LowerWindowPartRefresher refreshLowerPart(y);
+
+ refreshLowerPart(m_rowFrozenLabelWin);
+ refreshLowerPart(m_frozenRowGridWin);
+
+ // If there are any frozen columns as well, there is one more
+ // window to refresh.
+ if ( m_frozenCornerGridWin )
+ refreshLowerPart(m_frozenCornerGridWin);
+ }
+ else // This row is not frozen.
+ {
+ // If we have any frozen rows, all the windows we're refreshing
+ // here are offset by their height.
+ if ( m_rowFrozenLabelWin )
+ y -= m_rowFrozenLabelWin->GetSize().y;
+
+ LowerWindowPartRefresher refreshLowerPart(y);
+
+ refreshLowerPart(m_rowLabelWin);
+ refreshLowerPart(m_gridWin);
+
+ if ( m_frozenColGridWin )
+ refreshLowerPart(m_frozenColGridWin);
+ }
}
}
@@ -9228,8 +9255,8 @@ void wxGrid::SetDefaultColSize( int width, bool resizeExistingCols )
// some speed optimisations)
m_colWidths.Empty();
m_colRights.Empty();
- if ( !GetBatchCount() )
- CalcDimensions();
+
+ CalcDimensions();
}
}
@@ -9306,10 +9333,81 @@ void wxGrid::DoSetColSize( int col, int width )
InvalidateBestSize();
- if ( !GetBatchCount() )
+ CalcDimensions();
+
+ if ( ShouldRefresh() )
{
- CalcDimensions();
- Refresh();
+ // This code is symmetric with DoSetRowSize(), see there for more
+ // comments.
+
+ int leftCol = col;
+
+ const wxRect rect = m_gridWin->GetRect();
+ int top, bottom;
+ CalcUnscrolledPosition(0, rect.GetTop(), NULL, &top);
+ CalcUnscrolledPosition(0, rect.GetBottom(), NULL, &bottom);
+
+ const int rowTop = YToRow(top, m_gridWin);
+ const int rowBottom = YToRow(bottom, m_gridWin);
+ for ( int row = rowTop; row <= rowBottom; ++row )
+ {
+ int numRows, numCols;
+ if ( GetCellSize(row, col, &numRows, &numCols) == CellSpan_Inside )
+ {
+ if ( col + numCols < leftCol )
+ leftCol = col + numCols;
+ }
+ }
+
+ // This is supposed to be the equivalent of LowerWindowPartRefresher
+ // for the rows, but there is no real counterpart to "lower" in
+ // horizontal direction, so use the clumsy "further" as the least bad
+ // alternative.
+ class FurtherWindowPartRefresher
+ {
+ public:
+ explicit FurtherWindowPartRefresher(int left)
+ : m_left(left)
+ {
+ }
+
+ void operator()(wxWindow* w) const
+ {
+ wxSize size = w->GetClientSize();
+ size.x -= m_left;
+ w->RefreshRect(wxRect(wxPoint(m_left, 0), size));
+ }
+
+ private:
+ const int m_left;
+ };
+
+ int x;
+ CalcScrolledPosition(GetColLeft(leftCol), 0, &x, NULL);
+
+ if ( leftCol < m_numFrozenCols )
+ {
+ FurtherWindowPartRefresher refreshFurtherPart(x);
+
+ refreshFurtherPart(m_colFrozenLabelWin);
+ refreshFurtherPart(m_frozenColGridWin);
+
+ if ( m_frozenCornerGridWin )
+ refreshFurtherPart(m_frozenCornerGridWin);
+ }
+ else
+ {
+ if ( m_colFrozenLabelWin )
+ x -= m_colFrozenLabelWin->GetSize().x;
+
+ FurtherWindowPartRefresher refreshFurtherPart(x);
+
+ refreshFurtherPart(m_colLabelWin);
+ refreshFurtherPart(m_gridWin);
+
+ if ( m_frozenRowGridWin )
+ refreshFurtherPart(m_frozenRowGridWin);
+ }
}
}
@@ -9473,8 +9571,8 @@ wxGrid::AutoSizeColOrRow(int colOrRow, bool setAsMin, wxGridDirection direction)
}
// get cell ( main cell if CellSpan_Inside ) renderer best size
- wxGridCellAttr *attr = GetCellAttr(row, col);
- wxGridCellRenderer *renderer = attr->GetRenderer(this, row, col);
+ wxGridCellAttrPtr attr = GetCellAttrPtr(row, col);
+ wxGridCellRendererPtr renderer = attr->GetRendererPtr(this, row, col);
if ( renderer )
{
extent = column
@@ -9497,11 +9595,7 @@ wxGrid::AutoSizeColOrRow(int colOrRow, bool setAsMin, wxGridDirection direction)
if ( extent > extentMax )
extentMax = extent;
-
- renderer->DecRef();
}
-
- attr->DecRef();
}
// now also compare with the column label extent
@@ -9575,7 +9669,7 @@ wxGrid::AutoSizeColOrRow(int colOrRow, bool setAsMin, wxGridDirection direction)
extentMax = wxMax(extentMax, GetColMinimalWidth(colOrRow));
SetColSize( colOrRow, extentMax );
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
{
if ( m_useNativeHeader )
{
@@ -9603,7 +9697,7 @@ wxGrid::AutoSizeColOrRow(int colOrRow, bool setAsMin, wxGridDirection direction)
extentMax = wxMax(extentMax, GetRowMinimalHeight(colOrRow));
SetRowSize(colOrRow, extentMax);
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
{
int cw, ch, dummy;
m_gridWin->GetClientSize( &cw, &ch );
@@ -9809,7 +9903,7 @@ void wxGrid::SetCellValue( int row, int col, const wxString& s )
if ( m_table )
{
m_table->SetValue( row, col, s );
- if ( !GetBatchCount() )
+ if ( ShouldRefresh() )
{
int dummy;
wxRect rect( CellToRect( row, col ) );
@@ -10397,15 +10491,11 @@ int wxGridTypeRegistry::FindOrCloneDataType(const wxString& typeName)
return wxNOT_FOUND;
}
- wxGridCellRenderer *renderer = GetRenderer(index);
- wxGridCellRenderer *rendererOld = renderer;
- renderer = renderer->Clone();
- rendererOld->DecRef();
+ wxGridCellRenderer* const
+ renderer = wxGridCellRendererPtr(GetRenderer(index))->Clone();
- wxGridCellEditor *editor = GetEditor(index);
- wxGridCellEditor *editorOld = editor;
- editor = editor->Clone();
- editorOld->DecRef();
+ wxGridCellEditor* const
+ editor = wxGridCellEditorPtr(GetEditor(index))->Clone();
// do it even if there are no parameters to reset them to defaults
wxString params = typeName.AfterFirst(wxT(':'));
diff --git a/src/generic/gridctrl.cpp b/src/generic/gridctrl.cpp
index 9a3a728696..baf5937796 100644
--- a/src/generic/gridctrl.cpp
+++ b/src/generic/gridctrl.cpp
@@ -32,6 +32,7 @@
#include "wx/renderer.h"
#include "wx/generic/private/grid.h"
+#include "wx/private/window.h"
// ----------------------------------------------------------------------------
// wxGridCellRenderer
@@ -591,7 +592,7 @@ void wxGridCellStringRenderer::Draw(wxGrid& grid,
// erase only this cells background, overflow cells should have been erased
wxGridCellRenderer::Draw(grid, attr, dc, rectCell, row, col, isSelected);
- if (attr.GetOverflow())
+ if ( attr.CanOverflow() )
{
int hAlign, vAlign;
attr.GetAlignment(&hAlign, &vAlign);
@@ -650,6 +651,10 @@ void wxGridCellStringRenderer::Draw(wxGrid& grid,
col_end = grid.GetNumberCols() - 1;
for (int i = col + cell_cols; i <= col_end; i++)
{
+ // redraw the cell to update the background
+ wxGridCellCoords coords(row, i);
+ grid.DrawCell(dc, coords);
+
clip.width = grid.GetColSize(i) - 1;
wxDCClipper clipper(dc, clip);
@@ -916,22 +921,25 @@ void wxGridCellFloatRenderer::SetParameters(const wxString& params)
// wxGridCellBoolRenderer
// ----------------------------------------------------------------------------
-wxSize wxGridCellBoolRenderer::ms_sizeCheckMark;
-
wxSize wxGridCellBoolRenderer::GetBestSize(wxGrid& grid,
wxGridCellAttr& WXUNUSED(attr),
wxDC& WXUNUSED(dc),
int WXUNUSED(row),
int WXUNUSED(col))
{
- // compute it only once (no locks for MT safeness in GUI thread...)
- if ( !ms_sizeCheckMark.x )
+ static wxPrivate::DpiDependentValue s_sizeCheckMark;
+
+ // Get the check mark size in pixels if it hadn't been done yet or if the
+ // DPI has changed.
+ if ( s_sizeCheckMark.HasChanged(&grid) )
{
- ms_sizeCheckMark =
- wxRendererNative::Get().GetCheckBoxSize(&grid, wxCONTROL_CELL);
+ s_sizeCheckMark.SetAtNewDPI
+ (
+ wxRendererNative::Get().GetCheckBoxSize(&grid, wxCONTROL_CELL)
+ );
}
- return ms_sizeCheckMark;
+ return s_sizeCheckMark.Get();
}
void wxGridCellBoolRenderer::Draw(wxGrid& grid,
diff --git a/src/generic/gridsel.cpp b/src/generic/gridsel.cpp
index 8497a17af6..0bda0caa44 100644
--- a/src/generic/gridsel.cpp
+++ b/src/generic/gridsel.cpp
@@ -257,7 +257,7 @@ void wxGridSelection::SelectRow(int row, const wxKeyboardState& kbd)
}
// Update View:
- if ( !m_grid->GetBatchCount() )
+ if ( !m_grid->GetBatchCount() && m_grid->GetNumberCols() != 0 )
{
m_grid->RefreshBlock(row, 0, row, m_grid->GetNumberCols() - 1);
}
@@ -349,7 +349,7 @@ void wxGridSelection::SelectCol(int col, const wxKeyboardState& kbd)
}
// Update View:
- if ( !m_grid->GetBatchCount() )
+ if ( !m_grid->GetBatchCount() && m_grid->GetNumberRows() != 0 )
{
m_grid->RefreshBlock(0, col, m_grid->GetNumberRows() - 1, col);
}
diff --git a/src/generic/hyperlinkg.cpp b/src/generic/hyperlinkg.cpp
index 133a9371d6..9788fc2422 100644
--- a/src/generic/hyperlinkg.cpp
+++ b/src/generic/hyperlinkg.cpp
@@ -125,7 +125,7 @@ void wxGenericHyperlinkCtrl::ConnectMenuHandlers()
wxSize wxGenericHyperlinkCtrl::DoGetBestClientSize() const
{
- wxClientDC dc((wxWindow *)this);
+ wxClientDC dc(const_cast(this));
return dc.GetTextExtent(GetLabel());
}
diff --git a/src/generic/icon.cpp b/src/generic/icon.cpp
index 53b1c80fee..f7aebe6654 100644
--- a/src/generic/icon.cpp
+++ b/src/generic/icon.cpp
@@ -41,6 +41,6 @@ wxIcon::wxIcon() : wxBitmap()
void wxIcon::CopyFromBitmap(const wxBitmap& bmp)
{
- wxIcon *icon = (wxIcon*)(&bmp);
+ const wxIcon* icon = static_cast(&bmp);
*this = *icon;
}
diff --git a/src/generic/listctrl.cpp b/src/generic/listctrl.cpp
index e4ce5b2672..141531cc75 100644
--- a/src/generic/listctrl.cpp
+++ b/src/generic/listctrl.cpp
@@ -3279,8 +3279,6 @@ void wxListMainWindow::SetColumnWidth( int col, int width )
wxListHeaderData *column = node->GetData();
- size_t count = GetItemCount();
-
if ( width == wxLIST_AUTOSIZE_USEHEADER || width == wxLIST_AUTOSIZE )
{
wxListCtrlMaxWidthCalculator calculator(this, col);
@@ -3297,7 +3295,8 @@ void wxListMainWindow::SetColumnWidth( int col, int width )
size_t first_visible, last_visible;
GetVisibleLinesRange(&first_visible, &last_visible);
- calculator.ComputeBestColumnWidth(count, first_visible, last_visible);
+ calculator.ComputeBestColumnWidth(GetItemCount(),
+ first_visible, last_visible);
pWidthInfo->nMaxWidth = calculator.GetMaxWidth();
pWidthInfo->bNeedsUpdate = false;
}
@@ -3306,17 +3305,26 @@ void wxListMainWindow::SetColumnWidth( int col, int width )
calculator.UpdateWithWidth(pWidthInfo->nMaxWidth);
}
- // expand the last column to fit the client size
- // only for AUTOSIZE_USEHEADER to mimic MSW behaviour
- int margin = 0;
- if ( (width == wxLIST_AUTOSIZE_USEHEADER) && (col == GetColumnCount() - 1) )
+ width = calculator.GetMaxWidth() + AUTOSIZE_COL_MARGIN;
+
+ if ( col == 0 && HasCheckBoxes() )
{
- margin = GetClientSize().GetX();
- for ( int i = 0; i < col && margin > 0; ++i )
- margin -= m_columns.Item(i)->GetData()->GetWidth();
+ // also account for the space needed by the checkbox
+ width += wxRendererNative::Get().GetCheckBoxSize(this).x
+ + 2*MARGIN_AROUND_CHECKBOX;
}
- width = wxMax(margin, calculator.GetMaxWidth() + AUTOSIZE_COL_MARGIN);
+ // expand the last column to fit the client size
+ // only for AUTOSIZE_USEHEADER to mimic MSW behaviour
+ if ( (width == wxLIST_AUTOSIZE_USEHEADER) && (col == GetColumnCount() - 1) )
+ {
+ int margin = GetClientSize().GetX();
+ for ( int i = 0; i < col && margin > 0; ++i )
+ margin -= m_columns.Item(i)->GetData()->GetWidth();
+
+ if ( margin > width )
+ width = margin;
+ }
}
column->SetWidth( width );
diff --git a/src/generic/printps.cpp b/src/generic/printps.cpp
index efcdb879b6..d7284268d9 100644
--- a/src/generic/printps.cpp
+++ b/src/generic/printps.cpp
@@ -100,7 +100,7 @@ bool wxPostScriptPrinter::Print(wxWindow *parent, wxPrintout *printout, bool pro
// May have pressed cancel.
if (!dc || !dc->IsOk())
{
- if (dc) delete dc;
+ delete dc;
sm_lastError = wxPRINTER_ERROR;
return false;
}
diff --git a/src/generic/treectlg.cpp b/src/generic/treectlg.cpp
index 0109bf016d..383140a210 100644
--- a/src/generic/treectlg.cpp
+++ b/src/generic/treectlg.cpp
@@ -2194,7 +2194,8 @@ void wxGenericTreeCtrl::DoSelectItem(const wxTreeItemId& itemId,
// This can cause idle processing to select the root
// if no item is selected, so it must be after the
// selection is set
- EnsureVisible( itemId );
+ if (is_single)
+ EnsureVisible( itemId );
event.SetEventType(wxEVT_TREE_SEL_CHANGED);
GetEventHandler()->ProcessEvent( event );
@@ -2854,8 +2855,8 @@ wxGenericTreeCtrl::PaintLevel(wxGenericTreeItem *item,
}
else // no custom buttons
{
- static const int wImage = 9;
- static const int hImage = 9;
+ const int wImage = FromDIP(9);
+ const int hImage = FromDIP(9);
int flag = 0;
if (item->IsExpanded())
@@ -3080,8 +3081,8 @@ void wxGenericTreeCtrl::OnChar( wxKeyEvent &event )
// ' ' | return : activate
// up : go up (not last children!)
// down : go down
- // left : go to parent
- // right : open if parent and go next
+ // left : collapse or go to parent
+ // right : expand or go to first child
// home : go to root
// end : go to last item without opening parents
// alnum : start or continue searching for the item with this prefix
@@ -3209,28 +3210,57 @@ void wxGenericTreeCtrl::OnChar( wxKeyEvent &event )
}
break;
- // left arrow goes to the parent
+ // left arrow collapses or goes to the parent if it's not expanded
case WXK_LEFT:
{
- wxTreeItemId prev = GetItemParent( m_current );
- if ((prev == GetRootItem()) && HasFlag(wxTR_HIDE_ROOT))
+ if (m_current == GetRootItem().m_pItem && HasFlag(wxTR_HIDE_ROOT))
{
- // don't go to root if it is hidden
- prev = GetPrevSibling( m_current );
+ // don't try to collapse hidden root item
+ // (which can be the current one when the tree is empty)
+ break;
}
- if (prev)
+ if (IsExpanded(m_current))
{
- DoSelectItem( prev, unselect_others, extended_select );
+ Collapse(m_current);
+ }
+ else
+ {
+ // select parent unless it's the hidden root
+ wxTreeItemId parent = GetItemParent(m_current);
+ if (parent && (parent != GetRootItem() || !HasFlag(wxTR_HIDE_ROOT)))
+ {
+ DoSelectItem(parent, unselect_others, extended_select);
+ }
}
}
break;
+ // right arrow expands or goes to first child if it's already expanded
case WXK_RIGHT:
- // right arrow just expand the item will be fine
- if (m_current != GetRootItem().m_pItem || !HasFlag(wxTR_HIDE_ROOT))
- Expand(m_current);
- //else: don't try to expand hidden root item (which can be the
- // current one when the tree is empty)
+ {
+ if (m_current == GetRootItem().m_pItem && HasFlag(wxTR_HIDE_ROOT))
+ {
+ // don't try to expand hidden root item
+ // (which can be the current one when the tree is empty)
+ break;
+ }
+ if (HasChildren(m_current))
+ {
+ if (IsExpanded(m_current))
+ {
+ wxTreeItemIdValue cookie;
+ wxTreeItemId child = GetFirstChild(m_current, cookie);
+ if (child)
+ {
+ DoSelectItem(child, unselect_others, extended_select);
+ }
+ }
+ else
+ {
+ Expand(m_current);
+ }
+ }
+ }
break;
case WXK_DOWN:
@@ -3788,18 +3818,19 @@ void wxGenericTreeCtrl::OnMouse( wxMouseEvent &event )
GetEventHandler()->ProcessEvent(nevent);
}
- // this facilitates multiple-item drag-and-drop
-
- if ( /* item && */ HasFlag(wxTR_MULTIPLE))
+ // Don't deselect anything if we're just collapsing or expanding
+ // the item.
+ if ( !(flags & wxTREE_HITTEST_ONITEMBUTTON) )
{
- wxArrayTreeItemIds selections;
- size_t count = GetSelections(selections);
-
- if (count > 1 &&
- !event.CmdDown() &&
- !event.ShiftDown())
+ // this facilitates multiple-item drag-and-drop
+ if ( HasFlag(wxTR_MULTIPLE) &&
+ !(event.CmdDown() || event.ShiftDown()) )
{
- DoSelectItem(item, true, false);
+ wxArrayTreeItemIds selections;
+ if ( GetSelections(selections) > 1 )
+ {
+ DoSelectItem(item, true, false);
+ }
}
}
diff --git a/src/gtk/animate.cpp b/src/gtk/animate.cpp
index 1bf80687e1..bb52a72a54 100644
--- a/src/gtk/animate.cpp
+++ b/src/gtk/animate.cpp
@@ -11,9 +11,10 @@
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
-#if wxUSE_ANIMATIONCTRL && !defined(__WXUNIVERSAL__)
-
+#if wxUSE_ANIMATIONCTRL
#include "wx/animate.h"
+#include "wx/gtk/private/animate.h"
+#include "wx/generic/private/animate.h"
#ifndef WX_PRECOMP
#include "wx/image.h"
@@ -32,12 +33,12 @@
extern "C" {
static
-void gdk_pixbuf_area_updated(GdkPixbufLoader *loader,
- gint WXUNUSED(x),
- gint WXUNUSED(y),
- gint WXUNUSED(width),
- gint WXUNUSED(height),
- wxAnimation *anim)
+void gdk_pixbuf_area_updated(GdkPixbufLoader *loader,
+ gint WXUNUSED(x),
+ gint WXUNUSED(y),
+ gint WXUNUSED(width),
+ gint WXUNUSED(height),
+ wxAnimationGTKImpl *anim)
{
if (anim && anim->GetPixbuf() == NULL)
{
@@ -49,47 +50,32 @@ void gdk_pixbuf_area_updated(GdkPixbufLoader *loader,
}
//-----------------------------------------------------------------------------
-// wxAnimation
+// wxAnimationGTKImpl
//-----------------------------------------------------------------------------
-wxIMPLEMENT_DYNAMIC_CLASS(wxAnimation, wxAnimationBase);
+#ifdef wxHAS_NATIVE_ANIMATIONCTRL
-wxAnimation::wxAnimation(const wxAnimation& that)
- : base_type(that)
+/* static */
+wxAnimationImpl *wxAnimationImpl::CreateDefault()
{
- m_pixbuf = that.m_pixbuf;
- if (m_pixbuf)
- g_object_ref(m_pixbuf);
+ return new wxAnimationGTKImpl();
}
-wxAnimation::wxAnimation(GdkPixbufAnimation *p)
+#endif // wxHAS_NATIVE_ANIMATIONCTRL
+
+bool wxAnimationGTKImpl::IsCompatibleWith(wxClassInfo* ci) const
{
- m_pixbuf = p;
- if ( m_pixbuf )
- g_object_ref(m_pixbuf);
+ return ci->IsKindOf(&wxAnimationCtrl::ms_classInfo);
}
-wxAnimation& wxAnimation::operator=(const wxAnimation& that)
-{
- if (this != &that)
- {
- base_type::operator=(that);
- UnRef();
- m_pixbuf = that.m_pixbuf;
- if (m_pixbuf)
- g_object_ref(m_pixbuf);
- }
- return *this;
-}
-
-bool wxAnimation::LoadFile(const wxString &name, wxAnimationType WXUNUSED(type))
+bool wxAnimationGTKImpl::LoadFile(const wxString &name, wxAnimationType WXUNUSED(type))
{
UnRef();
m_pixbuf = gdk_pixbuf_animation_new_from_file(wxGTK_CONV_FN(name), NULL);
return IsOk();
}
-bool wxAnimation::Load(wxInputStream &stream, wxAnimationType type)
+bool wxAnimationGTKImpl::Load(wxInputStream &stream, wxAnimationType type)
{
UnRef();
@@ -176,25 +162,25 @@ bool wxAnimation::Load(wxInputStream &stream, wxAnimationType type)
return data_written;
}
-wxImage wxAnimation::GetFrame(unsigned int WXUNUSED(frame)) const
+wxImage wxAnimationGTKImpl::GetFrame(unsigned int WXUNUSED(frame)) const
{
return wxNullImage;
}
-wxSize wxAnimation::GetSize() const
+wxSize wxAnimationGTKImpl::GetSize() const
{
return wxSize(gdk_pixbuf_animation_get_width(m_pixbuf),
gdk_pixbuf_animation_get_height(m_pixbuf));
}
-void wxAnimation::UnRef()
+void wxAnimationGTKImpl::UnRef()
{
if (m_pixbuf)
g_object_unref(m_pixbuf);
m_pixbuf = NULL;
}
-void wxAnimation::SetPixbuf(GdkPixbufAnimation* p)
+void wxAnimationGTKImpl::SetPixbuf(GdkPixbufAnimation* p)
{
UnRef();
m_pixbuf = p;
@@ -206,7 +192,8 @@ void wxAnimation::SetPixbuf(GdkPixbufAnimation* p)
// wxAnimationCtrl
//-----------------------------------------------------------------------------
-wxIMPLEMENT_DYNAMIC_CLASS(wxAnimationCtrl, wxAnimationCtrlBase);
+wxIMPLEMENT_DYNAMIC_CLASS(wxAnimationCtrl, wxControl);
+
wxBEGIN_EVENT_TABLE(wxAnimationCtrl, wxAnimationCtrlBase)
EVT_TIMER(wxID_ANY, wxAnimationCtrl::OnTimer)
wxEND_EVENT_TABLE()
@@ -254,6 +241,8 @@ bool wxAnimationCtrl::Create( wxWindow *parent, wxWindowID id,
wxAnimationCtrl::~wxAnimationCtrl()
{
+ if (IsPlaying())
+ Stop();
ResetAnim();
ResetIter();
}
@@ -268,7 +257,7 @@ bool wxAnimationCtrl::LoadFile(const wxString &filename, wxAnimationType type)
bool wxAnimationCtrl::Load(wxInputStream& stream, wxAnimationType type)
{
- wxAnimation anim;
+ wxAnimation anim(CreateAnimation());
if ( !anim.Load(stream, type) || !anim.IsOk() )
return false;
@@ -276,6 +265,16 @@ bool wxAnimationCtrl::Load(wxInputStream& stream, wxAnimationType type)
return true;
}
+wxAnimation wxAnimationCtrl::CreateCompatibleAnimation()
+{
+ return MakeAnimFromImpl(new wxAnimationGTKImpl());
+}
+
+wxAnimationImpl* wxAnimationCtrl::DoCreateAnimationImpl() const
+{
+ return new wxAnimationGTKImpl();
+}
+
void wxAnimationCtrl::SetAnimation(const wxAnimation &anim)
{
if (IsPlaying())
@@ -284,8 +283,19 @@ void wxAnimationCtrl::SetAnimation(const wxAnimation &anim)
ResetAnim();
ResetIter();
+ m_animation = anim;
+ if (!m_animation.IsOk())
+ {
+ m_anim = NULL;
+ DisplayStaticImage();
+ return;
+ }
+
+ wxCHECK_RET(anim.IsCompatibleWith(GetClassInfo()),
+ wxT("incompatible animation") );
+
// copy underlying GdkPixbuf object
- m_anim = anim.GetPixbuf();
+ m_anim = AnimationImplGetPixbuf();
// m_anim may be null in case wxNullAnimation has been passed
if (m_anim)
@@ -466,4 +476,20 @@ void wxAnimationCtrl::OnTimer(wxTimerEvent& WXUNUSED(ev))
}
}
+
+// helpers to safely access wxAnimationGTKImpl methods
+#define ANIMATION (static_cast(GetAnimImpl()))
+
+GdkPixbufAnimation* wxAnimationCtrl::AnimationImplGetPixbuf() const
+{
+ wxCHECK_MSG( m_animation.IsOk(), NULL, wxT("invalid animation") );
+ return ANIMATION->GetPixbuf();
+}
+
+void wxAnimationCtrl::AnimationImplSetPixbuf(GdkPixbufAnimation* p)
+{
+ wxCHECK_RET( m_animation.IsOk(), wxT("invalid animation") );
+ ANIMATION->SetPixbuf(p);
+}
+
#endif // wxUSE_ANIMATIONCTRL
diff --git a/src/gtk/app.cpp b/src/gtk/app.cpp
index 4721bcd85b..a13b90f959 100644
--- a/src/gtk/app.cpp
+++ b/src/gtk/app.cpp
@@ -356,7 +356,15 @@ bool wxApp::Initialize(int& argc_, wxChar **argv_)
// Prevent gtk_init_check() from changing the locale automatically for
// consistency with the other ports that don't do it. If necessary,
// wxApp::SetCLocale() may be explicitly called.
- gtk_disable_setlocale();
+ //
+ // Note that this function generates a warning if it's called more than
+ // once, so avoid them.
+ static bool s_gtkLocalDisabled = false;
+ if ( !s_gtkLocalDisabled )
+ {
+ s_gtkLocalDisabled = true;
+ gtk_disable_setlocale();
+ }
#ifdef __WXGPE__
init_result = true; // is there a _check() version of this?
diff --git a/src/gtk/assertdlg_gtk.cpp b/src/gtk/assertdlg_gtk.cpp
index b7d90a5f93..a2dbadca85 100644
--- a/src/gtk/assertdlg_gtk.cpp
+++ b/src/gtk/assertdlg_gtk.cpp
@@ -711,7 +711,7 @@ static void gtk_assert_dialog_init(GTypeInstance* instance, void*)
/* icon */
wxGCC_WARNING_SUPPRESS(deprecated-declarations)
- image = gtk_image_new_from_stock (GTK_STOCK_DIALOG_ERROR, GTK_ICON_SIZE_DIALOG);
+ image = gtk_image_new_from_stock("gtk-dialog-error", GTK_ICON_SIZE_DIALOG);
wxGCC_WARNING_RESTORE()
gtk_box_pack_start (GTK_BOX(hbox), image, FALSE, FALSE, 12);
@@ -768,15 +768,11 @@ static void gtk_assert_dialog_init(GTypeInstance* instance, void*)
gtk_button_box_set_layout (GTK_BUTTON_BOX(hbox), GTK_BUTTONBOX_END);
/* add the buttons */
- wxGCC_WARNING_SUPPRESS(deprecated-declarations)
- button = gtk_assert_dialog_add_button_to (GTK_BOX(hbox), "Save to _file", GTK_STOCK_SAVE);
- wxGCC_WARNING_RESTORE()
+ button = gtk_assert_dialog_add_button_to(GTK_BOX(hbox), "Save to _file", "gtk-save");
g_signal_connect (button, "clicked",
G_CALLBACK(gtk_assert_dialog_save_backtrace_callback), dlg);
- wxGCC_WARNING_SUPPRESS(deprecated-declarations)
- button = gtk_assert_dialog_add_button_to (GTK_BOX(hbox), "Copy to clip_board", GTK_STOCK_COPY);
- wxGCC_WARNING_RESTORE()
+ button = gtk_assert_dialog_add_button_to(GTK_BOX(hbox), "Copy to clip_board", "gtk-copy");
g_signal_connect (button, "clicked", G_CALLBACK(gtk_assert_dialog_copy_callback), dlg);
}
#endif // wxUSE_STACKWALKER
@@ -789,14 +785,10 @@ static void gtk_assert_dialog_init(GTypeInstance* instance, void*)
wxGCC_WARNING_RESTORE()
/* add the stop button */
- wxGCC_WARNING_SUPPRESS(deprecated-declarations)
- gtk_assert_dialog_add_button (dlg, "_Stop", GTK_STOCK_QUIT, GTK_ASSERT_DIALOG_STOP);
- wxGCC_WARNING_RESTORE()
+ gtk_assert_dialog_add_button(dlg, "_Stop", "gtk-quit", GTK_ASSERT_DIALOG_STOP);
/* add the continue button */
- wxGCC_WARNING_SUPPRESS(deprecated-declarations)
- continuebtn = gtk_assert_dialog_add_button (dlg, "_Continue", GTK_STOCK_YES, GTK_ASSERT_DIALOG_CONTINUE);
- wxGCC_WARNING_RESTORE()
+ continuebtn = gtk_assert_dialog_add_button(dlg, "_Continue", "gtk-yes", GTK_ASSERT_DIALOG_CONTINUE);
gtk_dialog_set_default_response (GTK_DIALOG (dlg), GTK_ASSERT_DIALOG_CONTINUE);
g_signal_connect (continuebtn, "clicked", G_CALLBACK(gtk_assert_dialog_continue_callback), dlg);
diff --git a/src/gtk/brush.cpp b/src/gtk/brush.cpp
index a903929e4d..d4fe907597 100644
--- a/src/gtk/brush.cpp
+++ b/src/gtk/brush.cpp
@@ -87,7 +87,7 @@ wxGDIRefData *wxBrush::CreateGDIRefData() const
wxGDIRefData *wxBrush::CloneGDIRefData(const wxGDIRefData *data) const
{
- return new wxBrushRefData(*(wxBrushRefData *)data);
+ return new wxBrushRefData(*static_cast(data));
}
bool wxBrush::operator==(const wxBrush& brush) const
diff --git a/src/gtk/button.cpp b/src/gtk/button.cpp
index 012aa24b44..f97c90da2a 100644
--- a/src/gtk/button.cpp
+++ b/src/gtk/button.cpp
@@ -135,6 +135,15 @@ bool wxButton::Create(wxWindow *parent,
if (style & wxNO_BORDER)
gtk_button_set_relief( GTK_BUTTON(m_widget), GTK_RELIEF_NONE );
+ if ( useLabel && (style & wxBU_EXACTFIT) )
+ {
+#ifdef __WXGTK3__
+ GTKApplyCssStyle("* { padding:0 }");
+#else
+ GTKApplyWidgetStyle(true); // To enforce call to DoApplyWidgetStyle()
+#endif // __WXGTK3__ / !__WXGTK3__
+ }
+
g_signal_connect_after (m_widget, "clicked",
G_CALLBACK (wxgtk_button_clicked_callback),
this);
@@ -184,7 +193,7 @@ wxSize wxButtonBase::GetDefaultSize(wxWindow* WXUNUSED(win))
GtkWidget *btn = gtk_button_new_with_mnemonic(labelGTK.utf8_str());
#else
wxGCC_WARNING_SUPPRESS(deprecated-declarations)
- GtkWidget *btn = gtk_button_new_from_stock(GTK_STOCK_CANCEL);
+ GtkWidget* btn = gtk_button_new_from_stock("gtk-cancel");
wxGCC_WARNING_RESTORE()
#endif
gtk_container_add(GTK_CONTAINER(box), btn);
@@ -302,6 +311,11 @@ GtkLabel *wxButton::GTKGetLabel() const
void wxButton::DoApplyWidgetStyle(GtkRcStyle *style)
{
+ if ( style && HasFlag(wxBU_EXACTFIT) )
+ {
+ style->xthickness = 0;
+ style->ythickness = 0;
+ }
GTKApplyStyle(m_widget, style);
GtkWidget* child = gtk_bin_get_child(GTK_BIN(m_widget));
GTKApplyStyle(child, style);
@@ -365,5 +379,4 @@ wxButton::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant))
{
return GetDefaultAttributesFromGTKWidget(gtk_button_new());
}
-
#endif // wxUSE_BUTTON
diff --git a/src/gtk/clipbrd.cpp b/src/gtk/clipbrd.cpp
index b1daebc085..6d6aad79f6 100644
--- a/src/gtk/clipbrd.cpp
+++ b/src/gtk/clipbrd.cpp
@@ -160,7 +160,7 @@ targets_selection_received( GtkWidget *WXUNUSED(widget),
clip.GetId().c_str() );
// the atoms we received, holding a list of targets (= formats)
- const GdkAtom* const atoms = (GdkAtom*)gtk_selection_data_get_data(selection_data);
+ const GdkAtom* const atoms = reinterpret_cast(gtk_selection_data_get_data(selection_data));
for (size_t i = 0; i < selection_data_length / sizeof(GdkAtom); i++)
{
const wxDataFormat format(atoms[i]);
@@ -406,7 +406,7 @@ async_targets_selection_received( GtkWidget *WXUNUSED(widget),
clip.GetId().c_str() );
// the atoms we received, holding a list of targets (= formats)
- const GdkAtom* const atoms = (GdkAtom*)gtk_selection_data_get_data(selection_data);
+ const GdkAtom* const atoms = reinterpret_cast(gtk_selection_data_get_data(selection_data));
for (size_t i = 0; i < selection_data_length / sizeof(GdkAtom); i++)
{
const wxDataFormat format(atoms[i]);
diff --git a/src/gtk/dcclient.cpp b/src/gtk/dcclient.cpp
index d879b2f9e0..fed357b468 100644
--- a/src/gtk/dcclient.cpp
+++ b/src/gtk/dcclient.cpp
@@ -745,7 +745,7 @@ void wxWindowDCImpl::DoDrawLines( int n, const wxPoint points[], wxCoord xoffset
}
if (m_gdkwindow)
- gdk_draw_lines( m_gdkwindow, m_penGC, (GdkPoint*) gpts, n);
+ gdk_draw_lines(m_gdkwindow, m_penGC, const_cast(gpts), n);
delete[] gpts_alloc;
}
@@ -791,7 +791,7 @@ void wxWindowDCImpl::DoDrawPolygon( int n, const wxPoint points[],
bool originChanged;
DrawingSetup(gc, originChanged);
- gdk_draw_polygon(m_gdkwindow, gc, true, (GdkPoint*) gdkpoints, n);
+ gdk_draw_polygon(m_gdkwindow, gc, true, const_cast(gdkpoints), n);
if (originChanged)
gdk_gc_set_ts_origin(gc, 0, 0);
@@ -809,7 +809,7 @@ void wxWindowDCImpl::DoDrawPolygon( int n, const wxPoint points[],
gdkpoints[(i+1)%n].y);
}
*/
- gdk_draw_polygon( m_gdkwindow, m_penGC, FALSE, (GdkPoint*) gdkpoints, n );
+ gdk_draw_polygon(m_gdkwindow, m_penGC, false, const_cast(gdkpoints), n);
}
}
diff --git a/src/gtk/descrip.mms b/src/gtk/descrip.mms
index 80c76bf19f..8c44f51a22 100644
--- a/src/gtk/descrip.mms
+++ b/src/gtk/descrip.mms
@@ -2,27 +2,27 @@
# *
# Make file for VMS *
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
-# Date : 13 June 2016 *
+# Date : 4 March 2020 *
# *
#*****************************************************************************
.first
define wx [--.include.wx]
.ifdef __WXUNIVERSAL__
-CXX_DEFINE = /define=(__WXGTK__=1,__WXUNIVERSAL__==1)/float=ieee\
+CXX_DEFINE = /define=(__WXGTK__=1,__WXUNIVERSAL__==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)/ieee=denorm/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXGTK__=1,__WXUNIVERSAL__==1)/float=ieee\
+CC_DEFINE = /define=(__WXGTK__=1,__WXUNIVERSAL__==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)/ieee=denorm
.else
.ifdef __WXGTK2__
-CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2==1)/float=ieee\
+CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)/ieee=denorm/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXGTK__=1,VMS_GTK2==1)/float=ieee\
+CC_DEFINE = /define=(__WXGTK__=1,VMS_GTK2==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)/ieee=denorm
.else
-CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/iee=denorm\
+CXX_DEFINE = /define=(__WXGTK__=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/iee=denorm\
/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/iee=denorm
+CC_DEFINE = /define=(__WXGTK__=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/iee=denorm
.endif
.endif
diff --git a/src/gtk/dirdlg.cpp b/src/gtk/dirdlg.cpp
index 3514cc406e..005771a54e 100644
--- a/src/gtk/dirdlg.cpp
+++ b/src/gtk/dirdlg.cpp
@@ -85,9 +85,6 @@ bool wxDirDialog::Create(wxWindow* parent,
if (parent)
gtk_parent = GTK_WINDOW( gtk_widget_get_toplevel(parent->m_widget) );
-#ifndef __WXGTK4__
- wxGCC_WARNING_SUPPRESS(deprecated-declarations)
-#endif
m_widget = gtk_file_chooser_dialog_new(
wxGTK_CONV(m_message),
gtk_parent,
@@ -95,19 +92,17 @@ bool wxDirDialog::Create(wxWindow* parent,
#ifdef __WXGTK4__
static_cast(wxGTK_CONV(wxConvertMnemonicsToGTK(wxGetStockLabel(wxID_CANCEL)))),
#else
- GTK_STOCK_CANCEL,
+ "gtk-cancel",
#endif
GTK_RESPONSE_CANCEL,
#ifdef __WXGTK4__
static_cast(wxGTK_CONV(wxConvertMnemonicsToGTK(wxGetStockLabel(wxID_OPEN)))),
#else
- GTK_STOCK_OPEN,
+ "gtk-open",
#endif
GTK_RESPONSE_ACCEPT,
NULL);
-#ifndef __WXGTK4__
- wxGCC_WARNING_RESTORE()
-#endif
+
g_object_ref(m_widget);
gtk_dialog_set_default_response(GTK_DIALOG(m_widget), GTK_RESPONSE_ACCEPT);
diff --git a/src/gtk/filedlg.cpp b/src/gtk/filedlg.cpp
index 9f5ae2beb9..9439f4b58a 100644
--- a/src/gtk/filedlg.cpp
+++ b/src/gtk/filedlg.cpp
@@ -213,9 +213,6 @@ bool wxFileDialog::Create(wxWindow *parent, const wxString& message,
if (parent)
gtk_parent = GTK_WINDOW( gtk_widget_get_toplevel(parent->m_widget) );
-#ifndef __WXGTK4__
- wxGCC_WARNING_SUPPRESS(deprecated-declarations)
-#endif
wxString ok_btn_stock;
if ( style & wxFD_SAVE )
{
@@ -223,7 +220,7 @@ bool wxFileDialog::Create(wxWindow *parent, const wxString& message,
#ifdef __WXGTK4__
ok_btn_stock = wxConvertMnemonicsToGTK(wxGetStockLabel(wxID_SAVE));
#else
- ok_btn_stock = GTK_STOCK_SAVE;
+ ok_btn_stock = "gtk-save";
#endif
}
else
@@ -232,7 +229,7 @@ bool wxFileDialog::Create(wxWindow *parent, const wxString& message,
#ifdef __WXGTK4__
ok_btn_stock = wxConvertMnemonicsToGTK(wxGetStockLabel(wxID_OPEN));
#else
- ok_btn_stock = GTK_STOCK_OPEN;
+ ok_btn_stock = "gtk-open";
#endif
}
@@ -243,14 +240,12 @@ bool wxFileDialog::Create(wxWindow *parent, const wxString& message,
#ifdef __WXGTK4__
static_cast(wxGTK_CONV(wxConvertMnemonicsToGTK(wxGetStockLabel(wxID_CANCEL)))),
#else
- GTK_STOCK_CANCEL,
+ "gtk-cancel",
#endif
GTK_RESPONSE_CANCEL,
static_cast(wxGTK_CONV(ok_btn_stock)), GTK_RESPONSE_ACCEPT,
NULL);
-#ifndef __WXGTK4__
- wxGCC_WARNING_RESTORE()
-#endif
+
g_object_ref(m_widget);
GtkFileChooser* file_chooser = GTK_FILE_CHOOSER(m_widget);
diff --git a/src/gtk/menu.cpp b/src/gtk/menu.cpp
index fc7ebaa6ba..7fa4a4eee9 100644
--- a/src/gtk/menu.cpp
+++ b/src/gtk/menu.cpp
@@ -1349,6 +1349,7 @@ wxGetGtkAccel(const wxMenuItem* item, guint* accel_key, GdkModifierType* accel_m
#ifndef __WXGTK4__
wxGCC_WARNING_SUPPRESS(deprecated-declarations)
+wxGCC_WARNING_SUPPRESS(cast-qual)
const char *wxGetStockGtkID(wxWindowID id)
{
#define STOCKITEM(wx,gtk) \
@@ -1451,6 +1452,7 @@ const char *wxGetStockGtkID(wxWindowID id)
return NULL;
}
+wxGCC_WARNING_RESTORE(cast-qual)
wxGCC_WARNING_RESTORE()
#endif // !__WXGTK4__
diff --git a/src/gtk/minifram.cpp b/src/gtk/minifram.cpp
index 3ee0306293..9ec9628b29 100644
--- a/src/gtk/minifram.cpp
+++ b/src/gtk/minifram.cpp
@@ -125,8 +125,8 @@ gtk_window_button_press_callback(GtkWidget* widget, GdkEventButton* gdk_event, w
{
if (gdk_event->window != gtk_widget_get_window(widget))
return false;
- if (g_blockEventsOnDrag) return TRUE;
- if (g_blockEventsOnScroll) return TRUE;
+ if (win->m_isDragMove || g_blockEventsOnDrag || g_blockEventsOnScroll)
+ return true;
int style = win->GetWindowStyle();
@@ -159,15 +159,73 @@ gtk_window_button_press_callback(GtkWidget* widget, GdkEventButton* gdk_event, w
gdk_window_raise(gtk_widget_get_window(win->m_widget));
- gtk_window_begin_move_drag(GTK_WINDOW(win->m_widget),
- gdk_event->button,
- int(gdk_event->x_root), int(gdk_event->y_root),
- gdk_event->time);
+#ifdef __WXGTK3__
+#ifndef __WXGTK4__
+ GdkDisplay* display = gdk_window_get_display(gdk_event->window);
+ if (strcmp("GdkWaylandDisplay", g_type_name(G_TYPE_FROM_INSTANCE(display))) == 0)
+#endif
+ {
+ gtk_window_begin_move_drag(GTK_WINDOW(win->m_widget),
+ gdk_event->button,
+ int(gdk_event->x_root), int(gdk_event->y_root),
+ gdk_event->time);
+
+ return true;
+ }
+#endif
+#ifndef __WXGTK4__
+ const GdkEventMask mask = GdkEventMask(
+ GDK_BUTTON_PRESS_MASK |
+ GDK_BUTTON_RELEASE_MASK |
+ GDK_POINTER_MOTION_MASK |
+ GDK_BUTTON_MOTION_MASK);
+#ifdef __WXGTK3__
+ wxGCC_WARNING_SUPPRESS(deprecated-declarations)
+ gdk_device_grab(
+ gdk_event->device, gdk_event->window, GDK_OWNERSHIP_NONE,
+ false, mask, NULL, gdk_event->time);
+ wxGCC_WARNING_RESTORE()
+#else
+ gdk_pointer_grab(gdk_event->window, false, mask, NULL, NULL, gdk_event->time);
+#endif
+
+ win->m_dragOffset.Set(int(gdk_event->x), int(gdk_event->y));
+ win->m_isDragMove = true;
return TRUE;
+#endif // !__WXGTK4__
}
}
+#ifndef __WXGTK4__
+//-----------------------------------------------------------------------------
+// "button-release-event"
+//-----------------------------------------------------------------------------
+
+extern "C" {
+static gboolean
+button_release_event(GtkWidget* widget, GdkEventButton* gdk_event, wxMiniFrame* win)
+{
+ if (gdk_event->window != gtk_widget_get_window(widget))
+ return false;
+ if (!win->m_isDragMove || g_blockEventsOnDrag || g_blockEventsOnScroll)
+ return true;
+
+ win->m_isDragMove = false;
+
+#ifdef __WXGTK3__
+ wxGCC_WARNING_SUPPRESS(deprecated-declarations)
+ gdk_device_ungrab(gdk_event->device, gdk_event->time);
+ wxGCC_WARNING_RESTORE()
+#else
+ gdk_pointer_ungrab(gdk_event->time);
+#endif
+
+ return true;
+}
+}
+#endif // !__WXGTK4__
+
//-----------------------------------------------------------------------------
// "leave_notify_event" of m_mainWidget
//-----------------------------------------------------------------------------
@@ -201,12 +259,22 @@ gtk_window_motion_notify_callback( GtkWidget *widget, GdkEventMotion *gdk_event,
if (g_blockEventsOnDrag) return TRUE;
if (g_blockEventsOnScroll) return TRUE;
- int x = int(gdk_event->x);
- int y = int(gdk_event->y);
+#ifndef __WXGTK4__
+ if (win->m_isDragMove)
+ {
+ gtk_window_move(GTK_WINDOW(win->m_widget),
+ int(gdk_event->x_root) - win->m_dragOffset.x,
+ int(gdk_event->y_root) - win->m_dragOffset.y);
+ return true;
+ }
+#endif
{
if (win->GetWindowStyle() & wxRESIZE_BORDER)
{
+ const int x = int(gdk_event->x);
+ const int y = int(gdk_event->y);
+
GdkCursor* cursor = NULL;
GdkWindow* window = gtk_widget_get_window(widget);
if ((x > win->m_width-14) && (y > win->m_height-14))
@@ -255,6 +323,7 @@ bool wxMiniFrame::Create( wxWindow *parent, wxWindowID id, const wxString &title
const wxPoint &pos, const wxSize &size,
long style, const wxString &name )
{
+ m_isDragMove = false;
m_miniTitle = 0;
if (style & wxCAPTION)
m_miniTitle = 16;
@@ -333,6 +402,10 @@ bool wxMiniFrame::Create( wxWindow *parent, wxWindowID id, const wxString &title
/* these are required for dragging the mini frame around */
g_signal_connect (eventbox, "button_press_event",
G_CALLBACK (gtk_window_button_press_callback), this);
+#ifndef __WXGTK4__
+ g_signal_connect(eventbox, "button-release-event",
+ G_CALLBACK(button_release_event), this);
+#endif
g_signal_connect (eventbox, "motion_notify_event",
G_CALLBACK (gtk_window_motion_notify_callback), this);
g_signal_connect (eventbox, "leave_notify_event",
diff --git a/src/gtk/msgdlg.cpp b/src/gtk/msgdlg.cpp
index 25d67009f8..033f857e35 100644
--- a/src/gtk/msgdlg.cpp
+++ b/src/gtk/msgdlg.cpp
@@ -52,9 +52,7 @@ wxString wxMessageDialog::GetDefaultYesLabel() const
#ifdef __WXGTK4__
return wxConvertMnemonicsToGTK(wxGetStockLabel(wxID_YES));
#else
- wxGCC_WARNING_SUPPRESS(deprecated-declarations)
- return GTK_STOCK_YES;
- wxGCC_WARNING_RESTORE()
+ return "gtk-yes";
#endif
}
@@ -63,9 +61,7 @@ wxString wxMessageDialog::GetDefaultNoLabel() const
#ifdef __WXGTK4__
return wxConvertMnemonicsToGTK(wxGetStockLabel(wxID_NO));
#else
- wxGCC_WARNING_SUPPRESS(deprecated-declarations)
- return GTK_STOCK_NO;
- wxGCC_WARNING_RESTORE()
+ return "gtk-no";
#endif
}
@@ -74,9 +70,7 @@ wxString wxMessageDialog::GetDefaultOKLabel() const
#ifdef __WXGTK4__
return wxConvertMnemonicsToGTK(wxGetStockLabel(wxID_OK));
#else
- wxGCC_WARNING_SUPPRESS(deprecated-declarations)
- return GTK_STOCK_OK;
- wxGCC_WARNING_RESTORE()
+ return "gtk-ok";
#endif
}
@@ -85,9 +79,7 @@ wxString wxMessageDialog::GetDefaultCancelLabel() const
#ifdef __WXGTK4__
return wxConvertMnemonicsToGTK(wxGetStockLabel(wxID_CANCEL));
#else
- wxGCC_WARNING_SUPPRESS(deprecated-declarations)
- return GTK_STOCK_CANCEL;
- wxGCC_WARNING_RESTORE()
+ return "gtk-cancel";
#endif
}
@@ -96,9 +88,7 @@ wxString wxMessageDialog::GetDefaultHelpLabel() const
#ifdef __WXGTK4__
return wxConvertMnemonicsToGTK(wxGetStockLabel(wxID_HELP));
#else
- wxGCC_WARNING_SUPPRESS(deprecated-declarations)
- return GTK_STOCK_HELP;
- wxGCC_WARNING_RESTORE()
+ return "gtk-help";
#endif
}
diff --git a/src/gtk/pen.cpp b/src/gtk/pen.cpp
index e47aa44818..1fe4c90fe1 100644
--- a/src/gtk/pen.cpp
+++ b/src/gtk/pen.cpp
@@ -127,7 +127,7 @@ wxGDIRefData *wxPen::CreateGDIRefData() const
wxGDIRefData *wxPen::CloneGDIRefData(const wxGDIRefData *data) const
{
- return new wxPenRefData(*(wxPenRefData *)data);
+ return new wxPenRefData(*static_cast(data));
}
bool wxPen::operator == ( const wxPen& pen ) const
@@ -193,7 +193,7 @@ int wxPen::GetDashes( wxDash **ptr ) const
{
wxCHECK_MSG( IsOk(), -1, wxT("invalid pen") );
- *ptr = (wxDash*)M_PENDATA->m_dash;
+ *ptr = const_cast(M_PENDATA->m_dash);
return M_PENDATA->m_countDashes;
}
@@ -208,7 +208,7 @@ wxDash* wxPen::GetDash() const
{
wxCHECK_MSG( IsOk(), NULL, wxT("invalid pen") );
- return (wxDash*)M_PENDATA->m_dash;
+ return const_cast(M_PENDATA->m_dash);
}
wxPenCap wxPen::GetCap() const
diff --git a/src/gtk/scrolbar.cpp b/src/gtk/scrolbar.cpp
index 3838510e77..f9fc488838 100644
--- a/src/gtk/scrolbar.cpp
+++ b/src/gtk/scrolbar.cpp
@@ -201,12 +201,15 @@ void wxScrollBar::SetThumbPosition( int viewStart )
void wxScrollBar::SetScrollbar(int position, int thumbSize, int range, int pageSize, bool)
{
- if (range == 0)
+ if (range <= 0)
{
// GtkRange requires upper > lower
range =
+ pageSize =
thumbSize = 1;
}
+ else if (pageSize <= 0)
+ pageSize = 1;
g_signal_handlers_block_by_func(m_widget, (void*)gtk_value_changed, this);
GtkRange* widget = GTK_RANGE(m_widget);
GtkAdjustment* adj = gtk_range_get_adjustment(widget);
diff --git a/src/gtk/scrolwin.cpp b/src/gtk/scrolwin.cpp
index 95765bf0c7..54ed62a9c6 100644
--- a/src/gtk/scrolwin.cpp
+++ b/src/gtk/scrolwin.cpp
@@ -54,6 +54,8 @@ void wxScrollHelper::DoAdjustScrollbar(GtkRange* range,
{
upper = (virtSize + pixelsPerLine - 1) / pixelsPerLine;
page_size = winSize / pixelsPerLine;
+ if (page_size == 0)
+ page_size = 1;
*lines = upper;
*linesPerPage = page_size;
}
diff --git a/src/gtk/spinbutt.cpp b/src/gtk/spinbutt.cpp
index 56f86fb1f0..266d8ea585 100644
--- a/src/gtk/spinbutt.cpp
+++ b/src/gtk/spinbutt.cpp
@@ -38,19 +38,35 @@ gtk_value_changed(GtkSpinButton* spinbutton, wxSpinButton* win)
return;
}
- int inc = pos - oldPos;
- // Adjust for wrap arounds
- // (Doesn't work for degenerated cases, like [0..1] range.)
+ // Normally we can determine which way we're going by just comparing the
+ // old and the new values.
+ bool up = pos > oldPos;
+
+ // However we need to account for the possibility of wrapping around.
if ( win->HasFlag(wxSP_WRAP) )
{
- if ( inc > 1 )
- inc = -1;
- else if ( inc < -1 )
- inc = 1;
- }
- wxASSERT( inc == 1 || inc == -1 );
+ // We have no way of distinguishing between wraparound and normal
+ // change when the range is just 1, as pressing either arrow results in
+ // the same change, so don't even try doing it in this case.
+ const int spinMin = win->GetMin();
+ const int spinMax = win->GetMax();
- wxSpinEvent event(inc > 0 ? wxEVT_SCROLL_LINEUP : wxEVT_SCROLL_LINEDOWN, win->GetId());
+ if ( spinMax - spinMin > 1 )
+ {
+ if ( up )
+ {
+ if ( oldPos == spinMin && pos == spinMax )
+ up = false;
+ }
+ else // down
+ {
+ if ( oldPos == spinMax && pos == spinMin )
+ up = true;
+ }
+ }
+ }
+
+ wxSpinEvent event(up ? wxEVT_SCROLL_LINEUP : wxEVT_SCROLL_LINEDOWN, win->GetId());
event.SetPosition(pos);
event.SetEventObject(win);
@@ -188,13 +204,13 @@ void wxSpinButton::DoEnable(bool enable)
void wxSpinButton::GtkDisableEvents() const
{
g_signal_handlers_block_by_func(m_widget,
- (gpointer)gtk_value_changed, (void*) this);
+ (void*)gtk_value_changed, const_cast(this));
}
void wxSpinButton::GtkEnableEvents() const
{
g_signal_handlers_unblock_by_func(m_widget,
- (gpointer)gtk_value_changed, (void*) this);
+ (void*)gtk_value_changed, const_cast(this));
}
GdkWindow *wxSpinButton::GTKGetWindow(wxArrayGdkWindows& WXUNUSED_IN_GTK2(windows)) const
diff --git a/src/gtk/spinctrl.cpp b/src/gtk/spinctrl.cpp
index a341b79752..150a6284ec 100644
--- a/src/gtk/spinctrl.cpp
+++ b/src/gtk/spinctrl.cpp
@@ -291,22 +291,16 @@ void wxSpinCtrlGTKBase::DoSetIncrement(double inc)
gtk_spin_button_set_increments( GTK_SPIN_BUTTON(m_widget), inc, page);
}
-void wxSpinCtrlGTKBase::GtkDisableEvents() const
+void wxSpinCtrlGTKBase::GtkDisableEvents()
{
- g_signal_handlers_block_by_func( m_widget,
- (gpointer)gtk_value_changed, (void*) this);
-
- g_signal_handlers_block_by_func(m_widget,
- (gpointer)gtk_changed, (void*) this);
+ g_signal_handlers_block_by_func(m_widget, (void*)gtk_value_changed, this);
+ g_signal_handlers_block_by_func(m_widget, (void*)gtk_changed, this);
}
-void wxSpinCtrlGTKBase::GtkEnableEvents() const
+void wxSpinCtrlGTKBase::GtkEnableEvents()
{
- g_signal_handlers_unblock_by_func(m_widget,
- (gpointer)gtk_value_changed, (void*) this);
-
- g_signal_handlers_unblock_by_func(m_widget,
- (gpointer)gtk_changed, (void*) this);
+ g_signal_handlers_unblock_by_func(m_widget, (void*)gtk_value_changed, this);
+ g_signal_handlers_unblock_by_func(m_widget, (void*)gtk_changed, this);
}
void wxSpinCtrlGTKBase::OnChar( wxKeyEvent &event )
diff --git a/src/gtk/textctrl.cpp b/src/gtk/textctrl.cpp
index 675d597a42..a5494c269b 100644
--- a/src/gtk/textctrl.cpp
+++ b/src/gtk/textctrl.cpp
@@ -66,7 +66,7 @@ wxGtkTextRemoveTagsWithPrefix(GtkTextBuffer *text_buffer,
text_buffer,
"remove_tag",
G_CALLBACK(wxGtkOnRemoveTag),
- gpointer(prefix)
+ const_cast(static_cast(prefix))
);
gtk_text_buffer_remove_all_tags(text_buffer, start, end);
g_signal_handler_disconnect(text_buffer, remove_handler_id);
@@ -816,7 +816,7 @@ bool wxTextCtrl::Create( wxWindow *parent,
if (!value.empty())
{
- SetValue( value );
+ ChangeValue(value);
InvalidateBestSize();
}
diff --git a/src/gtk/textentry.cpp b/src/gtk/textentry.cpp
index ccb8b1c663..320c782f6e 100644
--- a/src/gtk/textentry.cpp
+++ b/src/gtk/textentry.cpp
@@ -1003,14 +1003,21 @@ int wxTextEntry::GTKEntryIMFilterKeypress(GdkEventKey* event) const
void wxTextEntry::EnableTextChangedEvents(bool enable)
{
+ // Check that we have the associated text, as it may happen (for e.g.
+ // read-only wxBitmapComboBox) and shouldn't result in any errors, we just
+ // don't have any events to enable or disable in this case.
+ void* const entry = GetTextObject();
+ if ( !entry )
+ return;
+
if ( enable )
{
- g_signal_handlers_unblock_by_func(GetTextObject(),
+ g_signal_handlers_unblock_by_func(entry,
(gpointer)wx_gtk_text_changed_callback, this);
}
else // disable events
{
- g_signal_handlers_block_by_func(GetTextObject(),
+ g_signal_handlers_block_by_func(entry,
(gpointer)wx_gtk_text_changed_callback, this);
}
}
diff --git a/src/gtk/window.cpp b/src/gtk/window.cpp
index ee6e7db6d6..215c3ad625 100644
--- a/src/gtk/window.cpp
+++ b/src/gtk/window.cpp
@@ -2997,6 +2997,7 @@ enum TrackedGestures
vertical_pan = 0x0008
};
+extern "C" {
static void
pan_gesture_begin_callback(GtkGesture* WXUNUSED(gesture), GdkEventSequence* WXUNUSED(sequence), wxWindowGTK* WXUNUSED(win))
{
@@ -3005,7 +3006,9 @@ pan_gesture_begin_callback(GtkGesture* WXUNUSED(gesture), GdkEventSequence* WXUN
// Set it to 0, as this will be used to calculate the deltas for new pan gesture
gs_lastOffset = 0;
}
+}
+extern "C" {
static void
horizontal_pan_gesture_end_callback(GtkGesture* gesture, GdkEventSequence* sequence, wxWindow* win)
{
@@ -3036,7 +3039,9 @@ horizontal_pan_gesture_end_callback(GtkGesture* gesture, GdkEventSequence* seque
win->GTKProcessEvent(event);
}
+}
+extern "C" {
static void
vertical_pan_gesture_end_callback(GtkGesture* gesture, GdkEventSequence* sequence, wxWindow* win)
{
@@ -3067,7 +3072,9 @@ vertical_pan_gesture_end_callback(GtkGesture* gesture, GdkEventSequence* sequenc
win->GTKProcessEvent(event);
}
+}
+extern "C" {
static void
pan_gesture_callback(GtkGesture* gesture, GtkPanDirection direction, gdouble offset, wxWindow* win)
{
@@ -3139,7 +3146,9 @@ pan_gesture_callback(GtkGesture* gesture, GtkPanDirection direction, gdouble off
win->GTKProcessEvent(event);
}
+}
+extern "C" {
static void
zoom_gesture_callback(GtkGesture* gesture, gdouble scale, wxWindow* win)
{
@@ -3174,7 +3183,9 @@ zoom_gesture_callback(GtkGesture* gesture, gdouble scale, wxWindow* win)
win->GTKProcessEvent(event);
}
+}
+extern "C" {
static void
zoom_gesture_begin_callback(GtkGesture* gesture, GdkEventSequence* WXUNUSED(sequence), wxWindowGTK* win)
{
@@ -3199,7 +3210,9 @@ zoom_gesture_begin_callback(GtkGesture* gesture, GdkEventSequence* WXUNUSED(sequ
win->GTKProcessEvent(event);
}
+}
+extern "C" {
static void
zoom_gesture_end_callback(GtkGesture* WXUNUSED(gesture), GdkEventSequence* WXUNUSED(sequence), wxWindowGTK* win)
{
@@ -3212,7 +3225,9 @@ zoom_gesture_end_callback(GtkGesture* WXUNUSED(gesture), GdkEventSequence* WXUNU
win->GTKProcessEvent(event);
}
+}
+extern "C" {
static void
rotate_gesture_begin_callback(GtkGesture* gesture, GdkEventSequence* WXUNUSED(sequence), wxWindowGTK* win)
{
@@ -3235,7 +3250,9 @@ rotate_gesture_begin_callback(GtkGesture* gesture, GdkEventSequence* WXUNUSED(se
win->GTKProcessEvent(event);
}
+}
+extern "C" {
static void
rotate_gesture_callback(GtkGesture* gesture, gdouble WXUNUSED(angle_delta), gdouble angle, wxWindowGTK* win)
{
@@ -3262,7 +3279,9 @@ rotate_gesture_callback(GtkGesture* gesture, gdouble WXUNUSED(angle_delta), gdou
win->GTKProcessEvent(event);
}
+}
+extern "C" {
static void
rotate_gesture_end_callback(GtkGesture* WXUNUSED(gesture), GdkEventSequence* WXUNUSED(sequence), wxWindowGTK* win)
{
@@ -3275,7 +3294,9 @@ rotate_gesture_end_callback(GtkGesture* WXUNUSED(gesture), GdkEventSequence* WXU
win->GTKProcessEvent(event);
}
+}
+extern "C" {
static void
long_press_gesture_callback(GtkGesture* WXUNUSED(gesture), gdouble x, gdouble y, wxWindowGTK* win)
{
@@ -3288,6 +3309,7 @@ long_press_gesture_callback(GtkGesture* WXUNUSED(gesture), gdouble x, gdouble y,
win->GTKProcessEvent(event);
}
+}
static void
wxEmitTwoFingerTapEvent(GdkEventTouch* gdk_event, wxWindow* win)
@@ -3356,6 +3378,7 @@ wxEmitPressAndTapEvent(GdkEventTouch* gdk_event, wxWindow* win)
win->GTKProcessEvent(event);
}
+extern "C" {
static void
touch_callback(GtkWidget* WXUNUSED(widget), GdkEventTouch* gdk_event, wxWindow* win)
{
@@ -3455,6 +3478,7 @@ touch_callback(GtkWidget* WXUNUSED(widget), GdkEventTouch* gdk_event, wxWindow*
break;
}
}
+}
void wxWindowGesturesData::Reinit(wxWindowGTK* win,
GtkWidget *widget,
@@ -5182,7 +5206,7 @@ void wxWindowGTK::GTKSendPaintEvents(const GdkRegion* region)
GTK_SHADOW_NONE,
&rect,
parent->m_widget,
- (char *)"base",
+ const_cast("base"),
0, 0, w, h);
#endif // !__WXGTK3__
}
@@ -5205,12 +5229,10 @@ void wxWindowGTK::GTKSendPaintEvents(const GdkRegion* region)
wxFAIL_MSG( "unsupported background style" );
}
- wxNcPaintEvent nc_paint_event( GetId() );
- nc_paint_event.SetEventObject( this );
+ wxNcPaintEvent nc_paint_event( this );
HandleWindowEvent( nc_paint_event );
- wxPaintEvent paint_event( GetId() );
- paint_event.SetEventObject( this );
+ wxPaintEvent paint_event( this );
HandleWindowEvent( paint_event );
#if wxGTK_HAS_COMPOSITING_SUPPORT
@@ -5535,6 +5557,18 @@ void wxWindowGTK::GTKApplyWidgetStyle(bool forceStyle)
g_string_append_printf(css, "%s{color:%s;background:%s}", s,
wxGtkString(gdk_rgba_to_string(fg_sel)).c_str(),
wxGtkString(gdk_rgba_to_string(bg_sel)).c_str());
+
+ if (isFg)
+ {
+ g_string_append_printf(css, "*{caret-color:%s}",
+ wxGtkString(gdk_rgba_to_string(fg)).c_str());
+ }
+ if (isBg)
+ {
+ // make "undershoot" node background transparent,
+ // keeps expected look of GtkEntry with default theme
+ g_string_append(css, "* undershoot{background:transparent}");
+ }
}
if (m_styleProvider == NULL && (isFg || isBg || isFont))
@@ -5777,7 +5811,7 @@ void wxWindowGTK::SetDropTarget( wxDropTarget *dropTarget )
if (m_dropTarget) m_dropTarget->GtkUnregisterWidget( dnd_widget );
- if (m_dropTarget) delete m_dropTarget;
+ delete m_dropTarget;
m_dropTarget = dropTarget;
if (m_dropTarget) m_dropTarget->GtkRegisterWidget( dnd_widget );
@@ -6006,6 +6040,8 @@ void wxWindowGTK::SetScrollbar(int orient,
range =
thumbVisible = 1;
}
+ else if (thumbVisible <= 0)
+ thumbVisible = 1;
g_signal_handlers_block_by_func(
sb, (void*)gtk_scrollbar_value_changed, this);
diff --git a/src/gtk1/descrip.mms b/src/gtk1/descrip.mms
index bf5008ad1f..0fc19cf8b5 100644
--- a/src/gtk1/descrip.mms
+++ b/src/gtk1/descrip.mms
@@ -2,21 +2,21 @@
# *
# Make file for VMS *
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
-# Date : 27 September 2011 *
+# Date : 4 March 2020 *
# *
#*****************************************************************************
.first
define wx [--.include.wx]
.ifdef __WXUNIVERSAL__
-CXX_DEFINE = /define=(__WXGTK__=1,__WXUNIVERSAL__==1)/float=ieee\
+CXX_DEFINE = /define=(__WXGTK__=1,__WXUNIVERSAL__==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)/ieee=denorm/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXGTK__=1,__WXUNIVERSAL__==1)/float=ieee\
+CC_DEFINE = /define=(__WXGTK__=1,__WXUNIVERSAL__==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)/ieee=denorm
.else
-CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/iee=denorm\
+CXX_DEFINE = /define=(__WXGTK__=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/iee=denorm\
/assume=(nostdnew,noglobal_array_new)/list/show=all
-CC_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/iee=denorm
+CC_DEFINE = /define=(__WXGTK__=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/iee=denorm
.endif
.suffixes : .cpp
diff --git a/src/gtk1/glcanvas.cpp b/src/gtk1/glcanvas.cpp
index b75b3766d8..17ab11450f 100644
--- a/src/gtk1/glcanvas.cpp
+++ b/src/gtk1/glcanvas.cpp
@@ -65,8 +65,7 @@ extern "C" {
static gint
gtk_glwindow_map_callback( GtkWidget * WXUNUSED(widget), wxGLCanvas *win )
{
- wxPaintEvent event( win->GetId() );
- event.SetEventObject( win );
+ wxPaintEvent event( win );
win->HandleWindowEvent( event );
win->GetUpdateRegion().Clear();
@@ -302,8 +301,7 @@ void wxGLCanvas::OnInternalIdle()
{
if (!m_updateRegion.IsEmpty())
{
- wxPaintEvent event( GetId() );
- event.SetEventObject( this );
+ wxPaintEvent event( this );
HandleWindowEvent( event );
GetUpdateRegion().Clear();
diff --git a/src/gtk1/window.cpp b/src/gtk1/window.cpp
index 98224b25fb..55a266b9f5 100644
--- a/src/gtk1/window.cpp
+++ b/src/gtk1/window.cpp
@@ -3599,12 +3599,10 @@ void wxWindowGTK::GtkSendPaintEvents()
m_clearRegion.Clear();
}
- wxNcPaintEvent nc_paint_event( GetId() );
- nc_paint_event.SetEventObject( this );
+ wxNcPaintEvent nc_paint_event( this );
HandleWindowEvent( nc_paint_event );
- wxPaintEvent paint_event( GetId() );
- paint_event.SetEventObject( this );
+ wxPaintEvent paint_event( this );
HandleWindowEvent( paint_event );
m_clipPaintRegion = false;
diff --git a/src/html/descrip.mms b/src/html/descrip.mms
index dd354525dc..09920bb7db 100644
--- a/src/html/descrip.mms
+++ b/src/html/descrip.mms
@@ -2,31 +2,31 @@
# *
# Make file for VMS *
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
-# Date : 14 December 2010 *
+# Date : 4 March 2020 *
# *
#*****************************************************************************
.first
define wx [--.include.wx]
.ifdef __WXMOTIF__
-CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
+CXX_DEFINE = /define=(__WXMOTIF__=1,WXBUILDING=1)/name=(as_is,short)\
/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)
+CC_DEFINE = /define=(__WXMOTIF__=1,WXBUILDING=1)/name=(as_is,short)
.else
.ifdef __WXGTK__
-CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
+CXX_DEFINE = /define=(__WXGTK__=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/ieee=denorm\
/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm
+CC_DEFINE = /define=(__WXGTK__=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/ieee=denorm
.else
.ifdef __WXGTK2__
-CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm\
+CXX_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/ieee=denorm\
/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1)/float=ieee/name=(as_is,short)/ieee=denorm
+CC_DEFINE = /define=(__WXGTK__=1,VMS_GTK2=1,WXBUILDING=1)/float=ieee/name=(as_is,short)/ieee=denorm
.else
.ifdef __WXX11__
-CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
+CXX_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1)/float=ieee\
+CC_DEFINE = /define=(__WXX11__=1,__WXUNIVERSAL__==1,WXBUILDING=1)/float=ieee\
/name=(as_is,short)
.else
CXX_DEFINE =
diff --git a/src/html/helpwnd.cpp b/src/html/helpwnd.cpp
index aa1d9d8ed7..d03c710764 100644
--- a/src/html/helpwnd.cpp
+++ b/src/html/helpwnd.cpp
@@ -605,15 +605,15 @@ wxHtmlHelpWindow::~wxHtmlHelpWindow()
// PopEventHandler(); // wxhtmlhelpcontroller (not any more!)
if (m_DataCreated)
delete m_Data;
- if (m_NormalFonts) delete m_NormalFonts;
- if (m_FixedFonts) delete m_FixedFonts;
+ delete m_NormalFonts;
+ delete m_FixedFonts;
if (m_PagesHash)
{
WX_CLEAR_HASH_TABLE(*m_PagesHash);
delete m_PagesHash;
}
#if wxUSE_PRINTING_ARCHITECTURE
- if (m_Printer) delete m_Printer;
+ delete m_Printer;
#endif
}
@@ -877,7 +877,7 @@ bool wxHtmlHelpWindow::KeywordSearch(const wxString& keyword,
#if wxUSE_PROGRESSDLG
progress.Update(status.GetCurIndex(), foundstr);
#endif
- m_SearchList->Append(status.GetName(), (void*)status.GetCurItem());
+ m_SearchList->Append(status.GetName(), const_cast(status.GetCurItem()));
}
}
diff --git a/src/html/htmlpars.cpp b/src/html/htmlpars.cpp
index ac04fcd7b6..84b5971a6b 100644
--- a/src/html/htmlpars.cpp
+++ b/src/html/htmlpars.cpp
@@ -543,9 +543,9 @@ extern "C" {
static int LINKAGEMODE wxHtmlEntityCompare(const void *key, const void *item)
{
#if wxUSE_UNICODE_UTF8
- return strcmp((char*)key, ((wxHtmlEntityInfo*)item)->name);
+ return strcmp(static_cast(key), static_cast(item)->name);
#else
- return wxStrcmp((wxChar*)key, ((wxHtmlEntityInfo*)item)->name);
+ return wxStrcmp(static_cast(key), static_cast(item)->name);
#endif
}
}
diff --git a/src/html/htmltag.cpp b/src/html/htmltag.cpp
index 3d17acfee9..6c5fc0b02d 100644
--- a/src/html/htmltag.cpp
+++ b/src/html/htmltag.cpp
@@ -662,7 +662,7 @@ wxHtmlTag *wxHtmlTag::GetFirstSibling() const
return m_Parent->m_FirstChild;
else
{
- wxHtmlTag *cur = (wxHtmlTag*)this;
+ wxHtmlTag* cur = const_cast(this);
while (cur->m_Prev)
cur = cur->m_Prev;
return cur;
@@ -675,7 +675,7 @@ wxHtmlTag *wxHtmlTag::GetLastSibling() const
return m_Parent->m_LastChild;
else
{
- wxHtmlTag *cur = (wxHtmlTag*)this;
+ wxHtmlTag* cur = const_cast(this);
while (cur->m_Next)
cur = cur->m_Next;
return cur;
diff --git a/src/html/m_image.cpp b/src/html/m_image.cpp
index 2685a80cd4..edef506fd1 100644
--- a/src/html/m_image.cpp
+++ b/src/html/m_image.cpp
@@ -269,7 +269,7 @@ const wxHtmlCell *wxHtmlImageMapCell::Find( int cond, const void *param ) const
{
if (cond == wxHTML_COND_ISIMAGEMAP)
{
- if (m_Name == *((wxString*)(param)))
+ if (m_Name == *static_cast(param))
return this;
}
return wxHtmlCell::Find(cond, param);
@@ -331,8 +331,8 @@ private:
size_t m_nCurrFrame;
#endif
double m_scale;
- wxHtmlImageMapCell *m_imageMap;
- wxString m_mapName;
+ mutable const wxHtmlImageMapCell* m_imageMap;
+ mutable wxString m_mapName;
wxString m_alt;
wxDECLARE_NO_COPY_CLASS(wxHtmlImageCell);
@@ -655,18 +655,14 @@ wxHtmlLinkInfo *wxHtmlImageCell::GetLink( int x, int y ) const
p = p->GetParent();
}
p = op;
- wxHtmlCell *cell = (wxHtmlCell*)p->Find(wxHTML_COND_ISIMAGEMAP,
+ const wxHtmlCell* cell = p->Find(wxHTML_COND_ISIMAGEMAP,
(const void*)(&m_mapName));
if (!cell)
{
- ((wxString&)m_mapName).Clear();
+ m_mapName.Clear();
return wxHtmlCell::GetLink( x, y );
}
- { // dirty hack, ask Joel why he fills m_ImageMap in this place
- // THE problem is that we're in const method and we can't modify m_ImageMap
- wxHtmlImageMapCell **cx = (wxHtmlImageMapCell**)(&m_imageMap);
- *cx = (wxHtmlImageMapCell*)cell;
- }
+ m_imageMap = static_cast(cell);
}
return m_imageMap->GetLink(x, y);
}
@@ -761,8 +757,7 @@ TAG_HANDLER_BEGIN(IMG, "IMG,MAP,AREA")
cel->SetId(tag.GetParam(wxT("id"))); // may be empty
cel->SetAlt(tag.GetParam(wxT("alt")));
m_WParser->GetContainer()->InsertCell(cel);
- if (str)
- delete str;
+ delete str;
}
}
if (tag.GetName() == wxT("MAP"))
diff --git a/src/jpeg b/src/jpeg
index e951f6ed63..8524936115 160000
--- a/src/jpeg
+++ b/src/jpeg
@@ -1 +1 @@
-Subproject commit e951f6ed6373d3c8d550755e4ec00adadc878aca
+Subproject commit 852493611506076fd9ad931d35bf1c3cc5b5a9c3
diff --git a/src/motif/descrip.mms b/src/motif/descrip.mms
index d6bd8367d1..e1ac39b0f3 100644
--- a/src/motif/descrip.mms
+++ b/src/motif/descrip.mms
@@ -2,16 +2,16 @@
# *
# Make file for VMS *
# Author : J.Jansen (joukj@hrem.nano.tudelft.nl) *
-# Date : 21 August 2013 *
+# Date : 4 March 2020 *
# *
#*****************************************************************************
.first
define wx [--.include.wx]
.ifdef __WXMOTIF__
-CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
+CXX_DEFINE = /define=(__WXMOTIF__=1,WXBUILDING=1)/name=(as_is,short)\
/assume=(nostdnew,noglobal_array_new)
-CC_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)
+CC_DEFINE = /define=(__WXMOTIF__=1,WXBUILDING=1)/name=(as_is,short)
.else
CXX_DEFINE =
.endif
diff --git a/src/motif/window.cpp b/src/motif/window.cpp
index a3bb7b274f..023770f093 100644
--- a/src/motif/window.cpp
+++ b/src/motif/window.cpp
@@ -1621,8 +1621,7 @@ void wxWindow::DoPaint()
eraseEvent.SetEventObject(this);
HandleWindowEvent(eraseEvent);
- wxPaintEvent event(GetId());
- event.SetEventObject(this);
+ wxPaintEvent event(this);
HandleWindowEvent(event);
m_needsRefresh = false;
diff --git a/src/msw/dc.cpp b/src/msw/dc.cpp
index 85be5b4877..6e9209baa1 100644
--- a/src/msw/dc.cpp
+++ b/src/msw/dc.cpp
@@ -989,7 +989,7 @@ void wxMSWDCImpl::DoDrawPolygon(int n,
CalcBoundingBox(points[i].x, points[i].y);
int prev = SetPolyFillMode(GetHdc(),fillStyle==wxODDEVEN_RULE?ALTERNATE:WINDING);
- (void)Polygon(GetHdc(), (POINT*) points, n);
+ Polygon(GetHdc(), reinterpret_cast(points), n);
SetPolyFillMode(GetHdc(),prev);
}
}
@@ -1029,7 +1029,7 @@ wxMSWDCImpl::DoDrawPolyPolygon(int n,
CalcBoundingBox(points[i].x, points[i].y);
int prev = SetPolyFillMode(GetHdc(),fillStyle==wxODDEVEN_RULE?ALTERNATE:WINDING);
- (void)PolyPolygon(GetHdc(), (POINT*) points, count, n);
+ PolyPolygon(GetHdc(), reinterpret_cast(points), count, n);
SetPolyFillMode(GetHdc(),prev);
}
}
@@ -1057,7 +1057,7 @@ void wxMSWDCImpl::DoDrawLines(int n, const wxPoint points[], wxCoord xoffset, wx
for (i = 0; i < n; i++)
CalcBoundingBox(points[i].x, points[i].y);
- (void)Polyline(GetHdc(), (POINT*) points, n);
+ Polyline(GetHdc(), reinterpret_cast(points), n);
}
}
diff --git a/src/msw/dcclient.cpp b/src/msw/dcclient.cpp
index ed6fcf3e9e..d178e0e7ed 100644
--- a/src/msw/dcclient.cpp
+++ b/src/msw/dcclient.cpp
@@ -36,6 +36,7 @@
#include "wx/stack.h"
#include "wx/msw/private.h"
+#include "wx/msw/private/paint.h"
// ----------------------------------------------------------------------------
// local data structures
@@ -138,18 +139,6 @@ PaintDCInfos gs_PaintDCInfos;
} // anonymous namespace
-// ----------------------------------------------------------------------------
-// global variables
-// ----------------------------------------------------------------------------
-
-#ifdef wxHAS_PAINT_DEBUG
- // a global variable which we check to verify that wxPaintDC are only
- // created in response to WM_PAINT message - doing this from elsewhere is a
- // common programming error among wxWidgets programmers and might lead to
- // very subtle and difficult to debug refresh/repaint bugs.
- int g_isPainting = 0;
-#endif // wxHAS_PAINT_DEBUG
-
// ===========================================================================
// implementation
// ===========================================================================
@@ -269,20 +258,13 @@ wxPaintDCImpl::wxPaintDCImpl( wxDC *owner, wxWindow *window ) :
{
wxCHECK_RET( window, wxT("NULL canvas in wxPaintDCImpl ctor") );
-#ifdef wxHAS_PAINT_DEBUG
- if ( g_isPainting <= 0 )
- {
- wxFAIL_MSG( wxT("wxPaintDCImpl may be created only in EVT_PAINT handler!") );
-
- return;
- }
-#endif // wxHAS_PAINT_DEBUG
-
- // see comments in src/msw/window.cpp where this is defined
- extern wxStack wxDidCreatePaintDC;
-
- wxDidCreatePaintDC.top() = true;
+ using namespace wxMSWImpl;
+ wxCHECK_RET( !paintStack.empty(),
+ "wxPaintDC can't be created outside wxEVT_PAINT handler" );
+ wxCHECK_RET( paintStack.top().window == window,
+ "wxPaintDC must be associated with the window being repainted" );
+ paintStack.top().createdPaintDC = true;
m_window = window;
diff --git a/src/msw/dde.cpp b/src/msw/dde.cpp
index 0b5cc4b287..9382b4c2ce 100644
--- a/src/msw/dde.cpp
+++ b/src/msw/dde.cpp
@@ -565,7 +565,7 @@ wxDDEConnection::DoExecute(const void *data, size_t size, wxIPCFormat format)
}
else // no conversion necessary for wxIPC_UNICODETEXT
{
- realData = (LPBYTE)data;
+ realData = const_cast