# HG changeset patch # User pyon@macmini # Date 1308734331 -32400 # Node ID 6f59ca2622af3145c137363d61b23673d8572a99 # Parent db7bd315e52cc65027ba4dc221a27a345e8a20a9 Add files. diff -r db7bd315e52c -r 6f59ca2622af .hgignore --- a/.hgignore Tue Jun 21 21:16:31 2011 +0900 +++ b/.hgignore Wed Jun 22 18:18:51 2011 +0900 @@ -5,3 +5,4 @@ *.app/* .DS_Store *.conf +*~ diff -r db7bd315e52c -r 6f59ca2622af info.plist.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/info.plist.in Wed Jun 22 18:18:51 2011 +0900 @@ -0,0 +1,36 @@ + + + + + CFBundleInfoDictionaryVersion + 6.0 + CFBundleIdentifier + org.wxwindows.IDENTIFIER + CFBundleDevelopmentRegion + English + CFBundleExecutable + EXECUTABLE + CFBundleIconFile + wxmac.icns + CFBundleName + EXECUTABLE + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + VERSION + CFBundleShortVersionString + VERSION + CFBundleGetInfoString + EXECUTABLE version VERSION, (c) 2002-2006 wxWidgets + CFBundleLongVersionString + VERSION, (c) 2002-2006 wxWidgets + NSHumanReadableCopyright + Copyright 2002-2006 wxWidgets + LSRequiresCarbon + + CSResourcesFileMapped + + + diff -r db7bd315e52c -r 6f59ca2622af sample.ico Binary file sample.ico has changed diff -r db7bd315e52c -r 6f59ca2622af sample.rc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sample.rc Wed Jun 22 18:18:51 2011 +0900 @@ -0,0 +1,32 @@ +///////////////////////////////////////////////////////////////////////////// +// Name: samples/samples.rc +// Purpose: a standard Win32 .rc file for the wxWindows samples +// Author: Vadim Zeitlin +// Modified by: +// Created: 04.08.03 +// RCS-ID: $Id: sample.rc 22863 2003-08-14 14:08:53Z VS $ +// Copyright: (c) 2003 Vadim Zeitlin +// Licence: wxWindows licence +///////////////////////////////////////////////////////////////////////////// + +// this minimal resource file is all what is needed for most of the wxWindows +// samples + +// note that the icon used by the Explorer (i.e. the programs icon) is the +// first icon in the executable and the icons are sorted both by their order +// (Win9x) and by alphabetically (!) (NT), so put this icon first and give it +// a name starting with "a" +aaaaaaaa ICON "sample.ico" + +// this icon is used with wxFrame::SetIcon() +sample ICON "sample.ico" + +// set this to 1 if you don't want to use manifest resource (manifest resource +// is needed to enable visual styles on Windows XP - see docs/msw/winxp.txt +// for more information) +#define wxUSE_NO_MANIFEST 0 + +// this is not always needed but doesn't hurt (except making the executable +// very slightly larger): this file contains the standard icons, cursors, ... +#include "wx/msw/wx.rc" + diff -r db7bd315e52c -r 6f59ca2622af wxmac.icns Binary file wxmac.icns has changed