added wxUSE_PLOT

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6028 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-02-15 10:06:32 +00:00
parent 695237bccd
commit 9b33fe0222
5 changed files with 547 additions and 476 deletions

940
configure vendored

File diff suppressed because it is too large Load Diff

View File

@@ -714,6 +714,7 @@ if test $DEBUG_CONFIGURE = 1; then
DEFAULT_wxUSE_LISTBOX=no
DEFAULT_wxUSE_LISTCTRL=no
DEFAULT_wxUSE_NOTEBOOK=no
DEFAULT_wxUSE_PLOT=no
DEFAULT_wxUSE_RADIOBOX=no
DEFAULT_wxUSE_RADIOBTN=no
DEFAULT_wxUSE_SASH=no
@@ -830,6 +831,7 @@ else
DEFAULT_wxUSE_LISTBOX=yes
DEFAULT_wxUSE_LISTCTRL=yes
DEFAULT_wxUSE_NOTEBOOK=yes
DEFAULT_wxUSE_PLOT=yes
DEFAULT_wxUSE_RADIOBOX=yes
DEFAULT_wxUSE_RADIOBTN=yes
DEFAULT_wxUSE_SASH=yes
@@ -1147,6 +1149,7 @@ WX_ARG_ENABLE(tooltips, [ --enable-tooltips use wxToolTip class], wxUS
WX_ARG_ENABLE(splines, [ --enable-splines use spline drawing code], wxUSE_SPLINES)
WX_ARG_ENABLE(validators, [ --enable-validators use wxValidator and derived classes], wxUSE_VALIDATORS)
WX_ARG_ENABLE(busyinfo, [ --enable-busyinfo use wxBusyInfo], wxUSE_BUSYINFO)
WX_ARG_ENABLE(plot, [ --enable-plot use wxPlot], wxUSE_PLOT)
dnl ---------------------------------------------------------------------------
dnl support for image formats that do not rely on external library
@@ -2628,6 +2631,10 @@ if test "$wxUSE_LONGLONG" = "yes"; then
AC_DEFINE(wxUSE_LONGLONG)
fi
if test "$wxUSE_PLOT" = "yes"; then
AC_DEFINE(wxUSE_PLOT)
fi
if test "$wxUSE_DIALUP_MANAGER" = "yes" ; then
AC_DEFINE(wxUSE_DIALUP_MANAGER)
SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dialup"

View File

@@ -16,6 +16,10 @@
#pragma interface "plot.h"
#endif
#include "wx/defs.h"
#if wxUSE_PLOT
#include "wx/scrolwin.h"
#include "wx/event.h"
@@ -296,5 +300,7 @@ private:
#define EVT_PLOT_BEGIN_TITLE_EDIT(id, fn) { wxEVT_PLOT_BEGIN_TITLE_EDIT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
#define EVT_PLOT_END_TITLE_EDIT(id, fn) { wxEVT_PLOT_END_TITLE_EDIT, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxCommandEventFunction) & fn, (wxObject *) NULL },
#endif // wxUSE_PLOT
#endif
// _WX_PLOT_H_

View File

@@ -257,6 +257,10 @@
* Use this control
*/
#define wxUSE_NOTEBOOK 0
/*
* Use wxPlot class
*/
#define wxUSE_PLOT 0
/*
* Use this control
*/

View File

@@ -20,6 +20,8 @@
#pragma hdrstop
#endif
#if wxUSE_PLOT
#ifndef WX_PRECOMP
#include "wx/object.h"
#include "wx/font.h"
@@ -953,3 +955,5 @@ static wxBitmap *GetDownBitmap()
return s_bitmap;
}
#endif // wxUSE_PLOT