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:
@@ -1,21 +1,11 @@
|
|||||||
#
|
# Purpose: makefile for dragimag example (UNIX).
|
||||||
# File: makefile.unx
|
# Created: 2000-03-15
|
||||||
# Author: Julian Smart
|
|
||||||
# Created: 1998
|
|
||||||
# Updated:
|
|
||||||
# Copyright: (c) 1998 Julian Smart
|
|
||||||
#
|
|
||||||
# "%W% %G%"
|
|
||||||
#
|
|
||||||
# Makefile for dragimag example (UNIX).
|
|
||||||
|
|
||||||
top_srcdir = @top_srcdir@/..
|
top_srcdir = @top_srcdir@/..
|
||||||
top_builddir = ../..
|
top_builddir = ../..
|
||||||
program_dir = samples/dragimag
|
program_dir = samples/dragimag
|
||||||
|
|
||||||
PROGRAM=test
|
PROGRAM=dragimag
|
||||||
|
|
||||||
DATAFILES = backgrnd.png shape01.png shape02.png shape03.png
|
|
||||||
|
|
||||||
OBJECTS=$(PROGRAM).o
|
OBJECTS=$(PROGRAM).o
|
||||||
|
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: test.cpp
|
// Name: dragimag.cpp
|
||||||
// Purpose: wxDragImage sample
|
// Purpose: wxDragImage sample
|
||||||
// Author: Julian Smart
|
// Author: Julian Smart
|
||||||
// Modified by:
|
// Modified by:
|
||||||
@@ -17,10 +17,10 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef WX_PRECOMP
|
#ifndef WX_PRECOMP
|
||||||
#include <wx/wx.h>
|
#include "wx/wx.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <wx/image.h>
|
#include "wx/image.h"
|
||||||
|
|
||||||
// Under Windows, change this to 1
|
// Under Windows, change this to 1
|
||||||
// to use wxGenericDragImage
|
// to use wxGenericDragImage
|
||||||
@@ -28,13 +28,13 @@
|
|||||||
#define wxUSE_GENERIC_DRAGIMAGE 0
|
#define wxUSE_GENERIC_DRAGIMAGE 0
|
||||||
|
|
||||||
#if wxUSE_GENERIC_DRAGIMAGE
|
#if wxUSE_GENERIC_DRAGIMAGE
|
||||||
#include <wx/generic/dragimgg.h>
|
#include "wx/generic/dragimgg.h"
|
||||||
#define wxDragImage wxGenericDragImage
|
#define wxDragImage wxGenericDragImage
|
||||||
#else
|
#else
|
||||||
#include <wx/dragimag.h>
|
#include "wx/dragimag.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "test.h"
|
#include "dragimag.h"
|
||||||
|
|
||||||
#if defined(__WXGTK__) || defined(__WXMOTIF__)
|
#if defined(__WXGTK__) || defined(__WXMOTIF__)
|
||||||
#include "mondrian.xpm"
|
#include "mondrian.xpm"
|
@@ -1,5 +1,5 @@
|
|||||||
NAME Minimal
|
NAME Dragimag
|
||||||
DESCRIPTION 'Minimal wxWindows application'
|
DESCRIPTION 'wxWindows dragimag sample'
|
||||||
EXETYPE WINDOWS
|
EXETYPE WINDOWS
|
||||||
CODE PRELOAD MOVEABLE DISCARDABLE
|
CODE PRELOAD MOVEABLE DISCARDABLE
|
||||||
DATA PRELOAD MOVEABLE MULTIPLE
|
DATA PRELOAD MOVEABLE MULTIPLE
|
@@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
// Name: test.h
|
// Name: dragimag.h
|
||||||
// Purpose: wxDragImage sample
|
// Purpose: wxDragImage sample
|
||||||
// Author: Julian Smart
|
// Author: Julian Smart
|
||||||
// Modified by:
|
// Modified by:
|
@@ -1,15 +1,9 @@
|
|||||||
#
|
# Purpose: makefile for dragimag 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=dragimag
|
||||||
OBJECTS = $(TARGET).obj
|
OBJECTS = $(TARGET).obj
|
||||||
|
|
||||||
!include $(WXDIR)\src\makeprog.b32
|
!include $(WXDIR)\src\makeprog.b32
|
||||||
|
@@ -1,10 +1,5 @@
|
|||||||
#
|
# Purpose: makefile for dragimag 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=dragimag
|
||||||
OBJECTS=$(TARGET).obj
|
OBJECTS=$(TARGET).obj
|
||||||
|
|
||||||
!include $(WXDIR)\src\makeprog.bcc
|
!include $(WXDIR)\src\makeprog.bcc
|
||||||
|
@@ -1,16 +1,9 @@
|
|||||||
#
|
# Purpose: makefile for dragimag 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=dragimag
|
||||||
OBJECTS=$(TARGET).obj
|
OBJECTS=$(TARGET).obj
|
||||||
|
|
||||||
!include $(WXDIR)\src\makeprog.msc
|
!include $(WXDIR)\src\makeprog.msc
|
||||||
|
@@ -1,16 +1,10 @@
|
|||||||
#
|
# Purpose: makefile for dragimag 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=dragimag
|
||||||
OBJECTS = $(TARGET).o
|
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)
|
WXDIR = $(WXWIN)
|
||||||
WXLIB = $(WXDIR)\lib\wx.lib
|
WXLIB = $(WXDIR)\lib\wx.lib
|
||||||
INCDIR = $(WXDIR)\include
|
INCDIR = $(WXDIR)\include
|
||||||
INCLUDE=$(INCDIR)
|
INCLUDE=$(INCDIR)
|
||||||
TARGET=test
|
TARGET=dragimag
|
||||||
|
|
||||||
include $(WXDIR)\src\makesc.env
|
include $(WXDIR)\src\makesc.env
|
||||||
|
|
||||||
test.exe: test.obj $(DEFFILE) test.res
|
dragimag.exe: dragimag.obj $(DEFFILE) dragimag.res
|
||||||
*$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
|
*$(CC) $(LDFLAGS) -o$@ $** $(LIBS)
|
||||||
*$(RC) -k test.res
|
*$(RC) -k dragimag.res
|
||||||
|
|
||||||
sc32.def:
|
sc32.def:
|
||||||
echo EXETYPE NT > sc32.def
|
echo EXETYPE NT > sc32.def
|
||||||
|
@@ -1,11 +1,7 @@
|
|||||||
#
|
# Purpose: makefile for dragimag example (Salford C++)
|
||||||
# File: makefile.sl
|
# Created: 2000-03-15
|
||||||
# Author: Julian Smart
|
|
||||||
# Created: 1998
|
|
||||||
#
|
|
||||||
# Makefile : Builds a wxWindows sample for Salford C++, WIN32
|
|
||||||
|
|
||||||
PROGRAM = test
|
PROGRAM = dragimag
|
||||||
OBJECTS = $(PROGRAM).obj
|
OBJECTS = $(PROGRAM).obj
|
||||||
|
|
||||||
include ..\..\src\makeprog.sl
|
include ..\..\src\makeprog.sl
|
||||||
@@ -14,5 +10,5 @@ all: wx $(TARGET)
|
|||||||
|
|
||||||
wx:
|
wx:
|
||||||
cd $(WXDIR)\src\msw ^ mk32 -f makefile.sl all
|
cd $(WXDIR)\src\msw ^ mk32 -f makefile.sl all
|
||||||
cd $(WXDIR)\samples\test
|
cd $(WXDIR)\samples\dragimag
|
||||||
|
|
||||||
|
@@ -1,13 +1,5 @@
|
|||||||
#
|
# Purpose: makefile for dragimag example (TWIN)
|
||||||
# File: makefile.unx
|
# Created: 2000-03-15
|
||||||
# Author: Julian Smart
|
|
||||||
# Created: 1993
|
|
||||||
# Updated:
|
|
||||||
# Copyright: (c) 1993, AIAI, University of Edinburgh
|
|
||||||
#
|
|
||||||
# "%W% %G%"
|
|
||||||
#
|
|
||||||
# Makefile for test example (UNIX).
|
|
||||||
|
|
||||||
WXDIR = ../..
|
WXDIR = ../..
|
||||||
|
|
||||||
@@ -15,29 +7,29 @@ WXDIR = ../..
|
|||||||
# this central makefile.
|
# this central makefile.
|
||||||
include $(WXDIR)/src/maketwin.env
|
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:
|
wx:
|
||||||
|
|
||||||
$(OBJDIR):
|
$(OBJDIR):
|
||||||
mkdir $(OBJDIR)
|
mkdir $(OBJDIR)
|
||||||
|
|
||||||
test$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
|
dragimag$(GUISUFFIX)$(EXESUFF): $(OBJECTS) $(WXLIB)
|
||||||
$(CC) $(LDFLAGS) -o test$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
|
$(CC) $(LDFLAGS) -o dragimag$(GUISUFFIX)$(EXESUFF) $(OBJECTS) $(LDLIBS)
|
||||||
|
|
||||||
$(OBJDIR)/test.$(OBJSUFF): test.$(SRCSUFF)
|
$(OBJDIR)/dragimag.$(OBJSUFF): dragimag.$(SRCSUFF)
|
||||||
$(CC) -c $(CPPFLAGS) -o $@ test.$(SRCSUFF)
|
$(CC) -c $(CPPFLAGS) -o $@ dragimag.$(SRCSUFF)
|
||||||
|
|
||||||
test_resources.c: test.rc
|
dragimag.c: dragimag.rc
|
||||||
$(RESCOMP) $(RCINPUTSWITCH) test.rc $(RCOUTPUTSWITCH) test_resources.c $(RESFLAGS)
|
$(RESCOMP) $(RCINPUTSWITCH) dragimag.rc $(RCOUTPUTSWITCH) dragimag.c $(RESFLAGS)
|
||||||
|
|
||||||
$(OBJDIR)/test_resources.$(OBJSUFF): test_resources.c
|
$(OBJDIR)/dragimag.$(OBJSUFF): dragimag.c
|
||||||
$(CC) -c $(CPPFLAGS) -o $@ test_resources.c
|
$(CC) -c $(CPPFLAGS) -o $@ dragimag.c
|
||||||
|
|
||||||
#$(OBJDIR)/test_resources.o: test.rc
|
#$(OBJDIR)/dragimag.o: dragimag.rc
|
||||||
# $(RESCOMP) $(RCINPUTSWITCH) test.rc $(RCOUTPUTSWITCH) $(OBJDIR)/test_resources.o $(RESFLAGS)
|
# $(RESCOMP) $(RCINPUTSWITCH) dragimag.rc $(RCOUTPUTSWITCH) $(OBJDIR)/dragimag.o $(RESFLAGS)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f $(OBJECTS) test$(GUISUFFIX).exe core *.rsc *.res
|
rm -f $(OBJECTS) dragimag$(GUISUFFIX).exe core *.rsc *.res
|
||||||
|
@@ -1,21 +1,9 @@
|
|||||||
#
|
# Purpose: makefile for dragimag example (Unix)
|
||||||
# File: Makefile for samples
|
# Created: 2000-03-15
|
||||||
# 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.
|
|
||||||
#
|
|
||||||
|
|
||||||
CC = gcc
|
CC = gcc
|
||||||
|
|
||||||
PROGRAM = test
|
PROGRAM = dragimag
|
||||||
|
|
||||||
OBJECTS = $(PROGRAM).o
|
OBJECTS = $(PROGRAM).o
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@ WXUSINGDLL=0
|
|||||||
|
|
||||||
!include $(WXDIR)\src\makeva.env
|
!include $(WXDIR)\src\makeva.env
|
||||||
|
|
||||||
PROGRAM=$D\test
|
PROGRAM=$D\dragimag
|
||||||
OBJECTS = $(PROGRAM).obj
|
OBJECTS = $(PROGRAM).obj
|
||||||
|
|
||||||
!if [md $D]
|
!if [md $D]
|
||||||
|
@@ -1,17 +1,10 @@
|
|||||||
#
|
# Purpose: makefile for dragimag 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=dragimag
|
||||||
OBJECTS = $(PROGRAM).obj
|
OBJECTS = $(PROGRAM).obj
|
||||||
|
|
||||||
!include $(WXDIR)\src\makeprog.vc
|
!include $(WXDIR)\src\makeprog.vc
|
||||||
|
@@ -1,13 +1,9 @@
|
|||||||
#
|
# Purpose: makefile for dragimag example (Watcom)
|
||||||
# Makefile for WATCOM
|
# Created: 2000-03-15
|
||||||
#
|
|
||||||
# Created by Julian Smart, January 1999
|
|
||||||
#
|
|
||||||
#
|
|
||||||
|
|
||||||
WXDIR = $(%WXWIN)
|
WXDIR = $(%WXWIN)
|
||||||
|
|
||||||
PROGRAM = test
|
PROGRAM = dragimag
|
||||||
OBJECTS = $(PROGRAM).obj
|
OBJECTS = $(PROGRAM).obj
|
||||||
|
|
||||||
!include $(WXDIR)\src\makeprog.wat
|
!include $(WXDIR)\src\makeprog.wat
|
||||||
|
Reference in New Issue
Block a user