wxWidgets/samples/dll
Vadim Zeitlin 99f79b4495 Revert "Run bakefile"
This reverts commit fea3d52505.
2020-03-25 02:59:07 +01:00
..
dll_vc7_my_dll.vcproj Rename manifests to use underscores 2019-12-13 21:44:26 +01:00
dll_vc7_sdk_exe.vcproj Rename manifests to use underscores 2019-12-13 21:44:26 +01:00
dll_vc7_wx_exe.vcproj Rename manifests to use underscores 2019-12-13 21:44:26 +01:00
dll_vc8_my_dll.vcproj Rename manifests to use underscores 2019-12-13 21:44:26 +01:00
dll_vc8_sdk_exe.vcproj Rename manifests to use underscores 2019-12-13 21:44:26 +01:00
dll_vc8_wx_exe.vcproj Rename manifests to use underscores 2019-12-13 21:44:26 +01:00
dll_vc9_my_dll.vcproj Rename manifests to use underscores 2019-12-13 21:44:26 +01:00
dll_vc9_sdk_exe.vcproj Rename manifests to use underscores 2019-12-13 21:44:26 +01:00
dll_vc9_wx_exe.vcproj Rename manifests to use underscores 2019-12-13 21:44:26 +01:00
dll.bkl
makefile.bcc Rebake after adding DPI awareness option 2019-11-30 22:52:48 +01:00
makefile.gcc Revert "Run bakefile" 2020-03-25 02:59:07 +01:00
Makefile.in Don't override CFLAGS etc in configure-generated makefile 2020-02-11 23:19:31 +01:00
makefile.unx
makefile.vc Rename manifests to use underscores 2019-12-13 21:44:26 +01:00
my_dll.cpp Replace Connect() with Bind() in all samples and utils too 2018-05-31 16:19:23 +02:00
my_dll.h
README.txt
sdk_exe.cpp Fix some build warnings 2018-11-25 21:29:38 +01:00
wx_exe.cpp Add more wxOVERRIDE 2018-09-22 14:44:07 +02:00

This Windows-specific sample demonstrates how to use wxWidgets-based UI from
within a foreign host application that may be written in any toolkit
(including wxWidgets).

For this to work, you have to overcome two obstacles:


(1) wx's event loop in the DLL must not conflict with the host app's loop
(2) if the host app is written in wx, its copy of wx must not conflict
    with the DLL's one


Number (1) is dealt with by running DLL's event loop in a thread of its own.
DLL's wx library will consider this thread to be the "main thread".

The simplest way to solve number (2) is to share the wxWidgets library between
the DLL and the host, in the form of wxWidgets DLLs build. But this requires
both the host and the DLL to be compiled against exactly same wx version,
which is often impractical.

So we do something else here: the DLL is compiled against *static* build of
wx. This way none of its symbols or variables will leak into the host app.
Win32 runtime conflicts are eliminated by using DLL's HINSTANCE instead of
host app's one and by using unique window class names (automatically done
since wx-2.9).