renamed dragimag sample
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6715 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
c4f02b1fd8
commit
11e2dfd37d
@ -1,21 +1,11 @@
|
||||
#
|
||||
# File: makefile.unx
|
||||
# Author: Julian Smart
|
||||
# Created: 1998
|
||||
# Updated:
|
||||
# Copyright: (c) 1998 Julian Smart
|
||||
#
|
||||
# "%W% %G%"
|
||||
#
|
||||
# Makefile for dragimag example (UNIX).
|
||||
# Purpose: makefile for dragimag example (UNIX).
|
||||
# Created: 2000-03-15
|
||||
|
||||
top_srcdir = @top_srcdir@/..
|
||||
top_builddir = ../..
|
||||
program_dir = samples/dragimag
|
||||
|
||||
PROGRAM=test
|
||||
|
||||
DATAFILES = backgrnd.png shape01.png shape02.png shape03.png
|
||||
PROGRAM=dragimag
|
||||
|
||||
OBJECTS=$(PROGRAM).o
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: test.cpp
|
||||
// Name: dragimag.cpp
|
||||
// Purpose: wxDragImage sample
|
||||
// Author: Julian Smart
|
||||
// Modified by:
|
||||
@ -17,10 +17,10 @@
|
||||
#endif
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#include <wx/wx.h>
|
||||
#include "wx/wx.h"
|
||||
#endif
|
||||
|
||||
#include <wx/image.h>
|
||||
#include "wx/image.h"
|
||||
|
||||
// Under Windows, change this to 1
|
||||
// to use wxGenericDragImage
|
||||
@ -28,13 +28,13 @@
|
||||
#define wxUSE_GENERIC_DRAGIMAGE 0
|
||||
|
||||
#if wxUSE_GENERIC_DRAGIMAGE
|
||||
#include <wx/generic/dragimgg.h>
|
||||
#include "wx/generic/dragimgg.h"
|
||||
#define wxDragImage wxGenericDragImage
|
||||
#else
|
||||
#include <wx/dragimag.h>
|
||||
#include "wx/dragimag.h"
|
||||
#endif
|
||||
|
||||
#include "test.h"
|
||||
#include "dragimag.h"
|
||||
|
||||
#if defined(__WXGTK__) || defined(__WXMOTIF__)
|
||||
#include "mondrian.xpm"
|
@ -1,5 +1,5 @@
|
||||
NAME Minimal
|
||||
DESCRIPTION 'Minimal wxWindows application'
|
||||
NAME Dragimag
|
||||
DESCRIPTION 'wxWindows dragimag sample'
|
||||
EXETYPE WINDOWS
|
||||
CODE PRELOAD MOVEABLE DISCARDABLE
|
||||
DATA PRELOAD MOVEABLE MULTIPLE
|
@ -1,5 +1,5 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: test.h
|
||||
// Name: dragimag.h
|
||||
// Purpose: wxDragImage sample
|
||||
// Author: Julian Smart
|
||||
// Modified by:
|
@ -1,15 +1,9 @@
|
||||
#
|
||||
# File: makefile.b32
|
||||
# Author: Julian Smart
|
||||
# Created: 1999
|
||||
# Updated:
|
||||
# Copyright:
|
||||
#
|
||||
# Makefile : Builds sample for 32-bit BC++
|
||||
# Purpose: makefile for dragimag example (BC++ 32bit)
|
||||
# Created: 2000-03-15
|
||||
|
||||
WXDIR = $(WXWIN)
|
||||
|
||||
TARGET=test
|
||||
TARGET=dragimag
|
||||
OBJECTS = $(TARGET).obj
|
||||
|
||||
!include $(WXDIR)\src\makeprog.b32
|
||||
|
@ -1,10 +1,5 @@
|
||||
#
|
||||
# File: makefile.bcc
|
||||
# Author: Julian Smart
|
||||
# Created: 1998
|
||||
# Updated:
|
||||
#
|
||||
# Builds a BC++ 16-bit sample
|
||||
# Purpose: makefile for dragimag example (BC++ 16bit)
|
||||
# Created: 2000-03-15
|
||||
|
||||
!if "$(WXWIN)" == ""
|
||||
!error You must define the WXWIN variable in autoexec.bat, e.g. WXWIN=c:\wx
|
||||
@ -12,7 +7,7 @@
|
||||
|
||||
WXDIR = $(WXWIN)
|
||||
|
||||
TARGET=test
|
||||
TARGET=dragimag
|
||||
OBJECTS=$(TARGET).obj
|
||||
|
||||
!include $(WXDIR)\src\makeprog.bcc
|
||||
|
@ -1,16 +1,9 @@
|
||||
#
|
||||
# File: makefile.dos
|
||||
# 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
|
||||
# Purpose: makefile for dragimag example (VC++ 1.5x)
|
||||
# Created: 2000-03-15
|
||||
|
||||
WXDIR = $(WXWIN)
|
||||
|
||||
TARGET=test
|
||||
TARGET=dragimag
|
||||
OBJECTS=$(TARGET).obj
|
||||
|
||||
!include $(WXDIR)\src\makeprog.msc
|
||||
|
@ -1,16 +1,10 @@
|
||||
#
|
||||
# File: makefile.g95
|
||||
# Author: Julian Smart
|
||||
# Created: 1999
|
||||
# Updated:
|
||||
# Copyright: (c) Julian Smart, 1999
|
||||
#
|
||||
# Makefile for wxWindows sample (Cygwin/Mingw32).
|
||||
# Purpose: makefile for dragimag example (Cygwin/Mingw32)
|
||||
# Created: #03.01.00
|
||||
|
||||
WXDIR = ../..
|
||||
|
||||
TARGET=test
|
||||
TARGET=dragimag
|
||||
OBJECTS = $(TARGET).o
|
||||
|
||||
include $(WXDIR)/src/makeprog.g95
|
||||
include $(WXDIR)\src\makeprog.g95
|
||||
|
||||
|
@ -1,16 +1,17 @@
|
||||
# Symantec C++ makefile
|
||||
# Purpose: makefile for dragimag example (Symantec C++)
|
||||
# Created: 2000-03-15
|
||||
|
||||
WXDIR = $(WXWIN)
|
||||
WXLIB = $(WXDIR)\lib\wx.lib
|
||||
INCDIR = $(WXDIR)\include
|
||||
INCLUDE=$(INCDIR)
|
||||
TARGET=test
|
||||
TARGET=dragimag
|
||||
|
||||
include $(WXDIR)\src\makesc.env
|
||||
|
||||
test.exe: test.obj $(DEFFILE) test.res
|
||||
dragimag.exe: dragimag.obj $(DEFFILE) dragimag.res
|
||||
*$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
|
||||
*$(RC) -k test.res
|
||||
*$(RC) -k dragimag.res
|
||||
|
||||
sc32.def:
|
||||
echo EXETYPE NT > sc32.def
|
||||
|
@ -1,11 +1,7 @@
|
||||
#
|
||||
# File: makefile.sl
|
||||
# Author: Julian Smart
|
||||
# Created: 1998
|
||||
#
|
||||
# Makefile : Builds a wxWindows sample for Salford C++, WIN32
|
||||
# Purpose: makefile for dragimag example (Salford C++)
|
||||
# Created: 2000-03-15
|
||||
|
||||
PROGRAM = test
|
||||
PROGRAM = dragimag
|
||||
OBJECTS = $(PROGRAM).obj
|
||||
|
||||
include ..\..\src\makeprog.sl
|
||||
@ -14,5 +10,5 @@ all: wx $(TARGET)
|
||||
|
||||
wx:
|
||||
cd $(WXDIR)\src\msw ^ mk32 -f makefile.sl all
|
||||
cd $(WXDIR)\samples\test
|
||||
cd $(WXDIR)\samples\dragimag
|
||||
|
||||
|
@ -1,13 +1,5 @@
|
||||
#
|
||||
# File: makefile.unx
|
||||
# Author: Julian Smart
|
||||
# Created: 1993
|
||||
# Updated:
|
||||
# Copyright: (c) 1993, AIAI, University of Edinburgh
|
||||
#
|
||||
# "%W% %G%"
|
||||
#
|
||||
# Makefile for test example (UNIX).
|
||||
# Purpose: makefile for dragimag example (TWIN)
|
||||
# Created: 2000-03-15
|
||||
|
||||
WXDIR = ../..
|
||||
|
||||
@ -15,29 +7,29 @@ WXDIR = ../..
|
||||
# this central makefile.
|
||||
include $(WXDIR)/src/maketwin.env
|
||||
|
||||
OBJECTS = $(OBJDIR)/test.$(OBJSUFF) $(OBJDIR)/test_resources.$(OBJSUFF)
|
||||
OBJECTS = $(OBJDIR)/dragimag.$(OBJSUFF) $(OBJDIR)/dragimag.$(OBJSUFF)
|
||||
|
||||
all: $(OBJDIR) test$(GUISUFFIX)$(EXESUFF)
|
||||
all: $(OBJDIR) dragimag$(GUISUFFIX)$(EXESUFF)
|
||||
|
||||
wx:
|
||||
|
||||
$(OBJDIR):
|
||||
mkdir $(OBJDIR)
|
||||
|
||||
test$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
|
||||
$(CC) $(LDFLAGS) -o test$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
|
||||
dragimag$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
|
||||
$(CC) $(LDFLAGS) -o dragimag$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
|
||||
|
||||
$(OBJDIR)/test.$(OBJSUFF): test.$(SRCSUFF)
|
||||
$(CC) -c $(CPPFLAGS) -o $@ test.$(SRCSUFF)
|
||||
$(OBJDIR)/dragimag.$(OBJSUFF): dragimag.$(SRCSUFF)
|
||||
$(CC) -c $(CPPFLAGS) -o $@ dragimag.$(SRCSUFF)
|
||||
|
||||
test_resources.c: test.rc
|
||||
$(RESCOMP) $(RCINPUTSWITCH) test.rc $(RCOUTPUTSWITCH) test_resources.c $(RESFLAGS)
|
||||
dragimag.c: dragimag.rc
|
||||
$(RESCOMP) $(RCINPUTSWITCH) dragimag.rc $(RCOUTPUTSWITCH) dragimag.c $(RESFLAGS)
|
||||
|
||||
$(OBJDIR)/test_resources.$(OBJSUFF): test_resources.c
|
||||
$(CC) -c $(CPPFLAGS) -o $@ test_resources.c
|
||||
$(OBJDIR)/dragimag.$(OBJSUFF): dragimag.c
|
||||
$(CC) -c $(CPPFLAGS) -o $@ dragimag.c
|
||||
|
||||
#$(OBJDIR)/test_resources.o: test.rc
|
||||
# $(RESCOMP) $(RCINPUTSWITCH) test.rc $(RCOUTPUTSWITCH) $(OBJDIR)/test_resources.o $(RESFLAGS)
|
||||
#$(OBJDIR)/dragimag.o: dragimag.rc
|
||||
# $(RESCOMP) $(RCINPUTSWITCH) dragimag.rc $(RCOUTPUTSWITCH) $(OBJDIR)/dragimag.o $(RESFLAGS)
|
||||
|
||||
clean:
|
||||
rm -f $(OBJECTS) test$(GUISUFFIX).exe core *.rsc *.res
|
||||
rm -f $(OBJECTS) dragimag$(GUISUFFIX).exe core *.rsc *.res
|
||||
|
@ -1,21 +1,9 @@
|
||||
#
|
||||
# File: Makefile for samples
|
||||
# Author: Robert Roebling
|
||||
# Created: 1999
|
||||
# Updated:
|
||||
# Copyright: (c) 1998 Robert Roebling
|
||||
#
|
||||
# This makefile requires a Unix version of wxWindows
|
||||
# to be installed on your system. This is most often
|
||||
# done typing "make install" when using the complete
|
||||
# sources of wxWindows or by installing the two
|
||||
# RPM packages wxGTK.XXX.rpm and wxGTK-devel.XXX.rpm
|
||||
# under Linux.
|
||||
#
|
||||
# Purpose: makefile for dragimag example (Unix)
|
||||
# Created: 2000-03-15
|
||||
|
||||
CC = gcc
|
||||
|
||||
PROGRAM = test
|
||||
PROGRAM = dragimag
|
||||
|
||||
OBJECTS = $(PROGRAM).o
|
||||
|
||||
@ -31,5 +19,5 @@ all: $(PROGRAM)
|
||||
$(PROGRAM): $(OBJECTS)
|
||||
$(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
|
||||
|
||||
clean:
|
||||
clean:
|
||||
rm -f *.o $(PROGRAM)
|
||||
|
@ -15,7 +15,7 @@ WXUSINGDLL=0
|
||||
|
||||
!include $(WXDIR)\src\makeva.env
|
||||
|
||||
PROGRAM=$D\test
|
||||
PROGRAM=$D\dragimag
|
||||
OBJECTS = $(PROGRAM).obj
|
||||
|
||||
!if [md $D]
|
||||
|
@ -1,17 +1,10 @@
|
||||
#
|
||||
# File: makefile.vc
|
||||
# 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.
|
||||
# Purpose: makefile for dragimag example (VC++ 32bit)
|
||||
# Created: 2000-03-15
|
||||
|
||||
# Set WXDIR for your system
|
||||
WXDIR = $(WXWIN)
|
||||
|
||||
PROGRAM=test
|
||||
PROGRAM=dragimag
|
||||
OBJECTS = $(PROGRAM).obj
|
||||
|
||||
!include $(WXDIR)\src\makeprog.vc
|
||||
|
@ -1,13 +1,9 @@
|
||||
#
|
||||
# Makefile for WATCOM
|
||||
#
|
||||
# Created by Julian Smart, January 1999
|
||||
#
|
||||
#
|
||||
# Purpose: makefile for dragimag example (Watcom)
|
||||
# Created: 2000-03-15
|
||||
|
||||
WXDIR = $(%WXWIN)
|
||||
|
||||
PROGRAM = test
|
||||
PROGRAM = dragimag
|
||||
OBJECTS = $(PROGRAM).obj
|
||||
|
||||
!include $(WXDIR)\src\makeprog.wat
|
||||
|
Loading…
Reference in New Issue
Block a user