C/C++
wxwin.txt
Associated article: Programmer's Toolchest
Tags: C/C++
Published source code accompanying the article by Author: Vadim Zeitlin in which he examines WxWindows, a freely-available C++ cross-platform GUI framework that lets you compile programs without changing anything under supported platforms. Also see WXWIN.ZIP.
The wxWindows Cross-Platform Framework
by Vadim Zeitlin
Listing One
// vCardFrame: the main application window
// ctor: create the frame and its child controls
vCardFrame::vCardFrame()
: wxFrame(
NULL, // no parent
-1, // default id
"", // title (will be set later)
wxDefaultPosition,
wxSize(400, 250)
)
{
// ...


