renamed proplist sample

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6703 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ron Lee
2000-03-14 18:20:11 +00:00
parent 9ce2171eed
commit 30b641919c
11 changed files with 28 additions and 71 deletions

View File

@@ -1,19 +1,11 @@
# # Purpose: makefile for proplist example (UNIX).
# File: makefile.unx # Created: 2000-03-15
# Author: Julian Smart
# Created: 1998
# Updated:
# Copyright: (c) 1998 Julian Smart
#
# "%W% %G%"
#
# Makefile for proplist example (UNIX).
top_srcdir = @top_srcdir@/.. top_srcdir = @top_srcdir@/..
top_builddir = ../.. top_builddir = ../..
program_dir = samples/proplist program_dir = samples/proplist
PROGRAM=test PROGRAM=proplist
OBJECTS=$(PROGRAM).o OBJECTS=$(PROGRAM).o

View File

@@ -1,15 +1,9 @@
# # Purpose: makefile for proplist example (BC++ 32bit)
# File: makefile.b32 # Created: 2000-03-15
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright:
#
# Makefile : Builds sample for 32-bit BC++
WXDIR = $(WXWIN) WXDIR = $(WXWIN)
TARGET=test TARGET=proplist
OBJECTS = $(TARGET).obj OBJECTS = $(TARGET).obj
!include $(WXDIR)\src\makeprog.b32 !include $(WXDIR)\src\makeprog.b32

View File

@@ -1,10 +1,5 @@
# # Purpose: makefile for proplist example (BC++ 16bit)
# File: makefile.bcc # Created: 2000-03-15
# Author: Julian Smart
# Created: 1998
# Updated:
#
# Builds a BC++ 16-bit sample
!if "$(WXWIN)" == "" !if "$(WXWIN)" == ""
!error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx !error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx
@@ -12,7 +7,7 @@
WXDIR = $(WXWIN) WXDIR = $(WXWIN)
TARGET=test TARGET=proplist
OBJECTS=$(TARGET).obj OBJECTS=$(TARGET).obj
!include $(WXDIR)\src\makeprog.bcc !include $(WXDIR)\src\makeprog.bcc

View File

@@ -1,16 +1,9 @@
# # Purpose: makefile for proplist example (VC++ 1.5x)
# File: makefile.dos # Created: 2000-03-15
# Author: Julian Smart
# Created: 1998
# Updated:
#
# Makefile : Builds 16-bit sample, VC++ 1.5
# Use FINAL=1 argument to nmake to build final version with no debugging
# info
WXDIR = $(WXWIN) WXDIR = $(WXWIN)
TARGET=test TARGET=proplist
OBJECTS=$(TARGET).obj OBJECTS=$(TARGET).obj
!include $(WXDIR)\src\makeprog.msc !include $(WXDIR)\src\makeprog.msc

View File

@@ -1,16 +1,10 @@
# # Purpose: makefile for proplist example (Cygwin/Mingw32)
# File: makefile.g95 # Created: #03.01.00
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart, 1999
#
# Makefile for wxWindows sample (Cygwin/Mingw32).
WXDIR = ../.. WXDIR = ../..
TARGET=test TARGET=proplist
OBJECTS = $(TARGET).o OBJECTS = $(TARGET).o
include $(WXDIR)/src/makeprog.g95 include $(WXDIR)\src\makeprog.g95

View File

@@ -1,17 +1,10 @@
# # Purpose: makefile for proplist example (VC++ 32bit)
# File: makefile.vc # Created: 2000-03-15
# Author: Julian Smart
# Created: 1999
# Updated:
# Copyright: (c) Julian Smart
#
# Makefile : Builds sample (VC++, WIN32)
# Use FINAL=1 argument to nmake to build final version with no debug info.
# Set WXDIR for your system # Set WXDIR for your system
WXDIR = $(WXWIN) WXDIR = $(WXWIN)
PROGRAM=test PROGRAM=proplist
OBJECTS = $(PROGRAM).obj OBJECTS = $(PROGRAM).obj
!include $(WXDIR)\src\makeprog.vc !include $(WXDIR)\src\makeprog.vc

View File

@@ -1,13 +1,9 @@
# # Purpose: makefile for proplist example (Watcom)
# Makefile for WATCOM # Created: 2000-03-15
#
# Created by Julian Smart, January 1999
#
#
WXDIR = $(%WXWIN) WXDIR = $(%WXWIN)
PROGRAM = test PROGRAM = proplist
OBJECTS = $(PROGRAM).obj OBJECTS = $(PROGRAM).obj
!include $(WXDIR)\src\makeprog.wat !include $(WXDIR)\src\makeprog.wat

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: test.cpp // Name: proplist.cpp
// Purpose: Property sheet test implementation // Purpose: Property sheet test implementation
// Author: Julian Smart // Author: Julian Smart
// Modified by: // Modified by:
@@ -10,7 +10,7 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__ #ifdef __GNUG__
#pragma implementation "test.h" #pragma implementation "proplist.h"
#endif #endif
// For compilers that support precompilation, includes "wx/wx.h". // For compilers that support precompilation, includes "wx/wx.h".
@@ -24,7 +24,7 @@
#include "wx/wx.h" #include "wx/wx.h"
#endif #endif
#include "test.h" #include "proplist.h"
IMPLEMENT_APP(MyApp) IMPLEMENT_APP(MyApp)

View File

@@ -1,4 +1,4 @@
NAME TEST NAME Proplist
DESCRIPTION 'wxProperty test' DESCRIPTION 'wxProperty test'
EXETYPE WINDOWS EXETYPE WINDOWS
STUB 'WINSTUB.EXE' STUB 'WINSTUB.EXE'

View File

@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
// Name: test.h // Name: proplist.h
// Purpose: Property sheet sample // Purpose: Property sheet sample
// Author: Julian Smart // Author: Julian Smart
// Modified by: // Modified by:
@@ -10,7 +10,7 @@
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__ #ifdef __GNUG__
#pragma interface "test.h" #pragma interface "proplist.h"
#endif #endif
#ifndef _PROPTEST_H_ #ifndef _PROPTEST_H_