From c2a6abc077e7a2fe6aabafb4bfd406eff82d3e5d Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Sat, 19 Dec 1998 08:19:24 +0000 Subject: [PATCH] Added missing filed to sample git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1244 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/checklst/Makefile | 1 + samples/checklst/Makefile.in | 26 +++++++++++++++++++++ samples/checklst/mondrian.xpm | 44 +++++++++++++++++++++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 samples/checklst/Makefile create mode 100644 samples/checklst/Makefile.in create mode 100644 samples/checklst/mondrian.xpm diff --git a/samples/checklst/Makefile b/samples/checklst/Makefile new file mode 100644 index 0000000000..bccce53f76 --- /dev/null +++ b/samples/checklst/Makefile @@ -0,0 +1 @@ +include ../../setup/general/makeapp diff --git a/samples/checklst/Makefile.in b/samples/checklst/Makefile.in new file mode 100644 index 0000000000..3478055e39 --- /dev/null +++ b/samples/checklst/Makefile.in @@ -0,0 +1,26 @@ +# WXXT base directory +WXBASEDIR=@WXBASEDIR@ + +# set the OS type for compilation +OS=@OS@ +# compile a library only +RULE=bin + +# define library name +BIN_TARGET=test +# define library sources +BIN_SRC=\ +checklst.cpp + +#define library objects +BIN_OBJ=\ +checklst.o + +# additional things needed to link +BIN_LINK= + +# additional things needed to compile +ADD_COMPILE= + +# include the definitions now +include ../../../template.mak diff --git a/samples/checklst/mondrian.xpm b/samples/checklst/mondrian.xpm new file mode 100644 index 0000000000..409f27a843 --- /dev/null +++ b/samples/checklst/mondrian.xpm @@ -0,0 +1,44 @@ +/* XPM */ +static char *mondrian_xpm[] = { +/* columns rows colors chars-per-pixel */ +"32 32 6 1", +" c Black", +". c Blue", +"X c #00bf00", +"o c Red", +"O c Yellow", +"+ c Gray100", +/* pixels */ +" ", +" oooooo +++++++++++++++++++++++ ", +" oooooo +++++++++++++++++++++++ ", +" oooooo +++++++++++++++++++++++ ", +" oooooo +++++++++++++++++++++++ ", +" oooooo +++++++++++++++++++++++ ", +" oooooo +++++++++++++++++++++++ ", +" oooooo +++++++++++++++++++++++ ", +" ", +" ++++++ ++++++++++++++++++ .... ", +" ++++++ ++++++++++++++++++ .... ", +" ++++++ ++++++++++++++++++ .... ", +" ++++++ ++++++++++++++++++ .... ", +" ++++++ ++++++++++++++++++ .... ", +" ++++++ ++++++++++++++++++ ", +" ++++++ ++++++++++++++++++ ++++ ", +" ++++++ ++++++++++++++++++ ++++ ", +" ++++++ ++++++++++++++++++ ++++ ", +" ++++++ ++++++++++++++++++ ++++ ", +" ++++++ ++++++++++++++++++ ++++ ", +" ++++++ ++++++++++++++++++ ++++ ", +" ++++++ ++++++++++++++++++ ++++ ", +" ++++++ ++++++++++++++++++ ++++ ", +" ++++++ ++++++++++++++++++ ++++ ", +" ++++++ ++++ ", +" ++++++ OOOOOOOOOOOO XXXXX ++++ ", +" ++++++ OOOOOOOOOOOO XXXXX ++++ ", +" ++++++ OOOOOOOOOOOO XXXXX ++++ ", +" ++++++ OOOOOOOOOOOO XXXXX ++++ ", +" ++++++ OOOOOOOOOOOO XXXXX ++++ ", +" ++++++ OOOOOOOOOOOO XXXXX ++++ ", +" " +}; -- 2.45.2