annotate sample.rc @ 1:eaa27e4ed5be

add client_ui.go
author pyon@macmini
date Mon, 01 Oct 2018 23:18:29 +0900
parents d3b8cd5aeb70
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
1 /////////////////////////////////////////////////////////////////////////////
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
2 // Name: samples/samples.rc
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
3 // Purpose: a standard Win32 .rc file for the wxWindows samples
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
4 // Author: Vadim Zeitlin
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
5 // Modified by:
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
6 // Created: 04.08.03
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
7 // RCS-ID: $Id: sample.rc 22863 2003-08-14 14:08:53Z VS $
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
9 // Licence: wxWindows licence
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
10 /////////////////////////////////////////////////////////////////////////////
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
11
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
12 // this minimal resource file is all what is needed for most of the wxWindows
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
13 // samples
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
14
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
15 // note that the icon used by the Explorer (i.e. the programs icon) is the
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
16 // first icon in the executable and the icons are sorted both by their order
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
17 // (Win9x) and by alphabetically (!) (NT), so put this icon first and give it
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
18 // a name starting with "a"
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
19 aaaaaaaa ICON "sample.ico"
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
20
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
21 // this icon is used with wxFrame::SetIcon()
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
22 sample ICON "sample.ico"
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
23
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
24 // set this to 1 if you don't want to use manifest resource (manifest resource
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
25 // is needed to enable visual styles on Windows XP - see docs/msw/winxp.txt
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
26 // for more information)
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
27 #define wxUSE_NO_MANIFEST 0
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
28
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
29 // this is not always needed but doesn't hurt (except making the executable
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
30 // very slightly larger): this file contains the standard icons, cursors, ...
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
31 #include "wx/msw/wx.rc"
d3b8cd5aeb70 make repo.
pyon@macmini
parents:
diff changeset
32