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:
@@ -714,6 +714,7 @@ if test $DEBUG_CONFIGURE = 1; then
|
|||||||
DEFAULT_wxUSE_LISTBOX=no
|
DEFAULT_wxUSE_LISTBOX=no
|
||||||
DEFAULT_wxUSE_LISTCTRL=no
|
DEFAULT_wxUSE_LISTCTRL=no
|
||||||
DEFAULT_wxUSE_NOTEBOOK=no
|
DEFAULT_wxUSE_NOTEBOOK=no
|
||||||
|
DEFAULT_wxUSE_PLOT=no
|
||||||
DEFAULT_wxUSE_RADIOBOX=no
|
DEFAULT_wxUSE_RADIOBOX=no
|
||||||
DEFAULT_wxUSE_RADIOBTN=no
|
DEFAULT_wxUSE_RADIOBTN=no
|
||||||
DEFAULT_wxUSE_SASH=no
|
DEFAULT_wxUSE_SASH=no
|
||||||
@@ -830,6 +831,7 @@ else
|
|||||||
DEFAULT_wxUSE_LISTBOX=yes
|
DEFAULT_wxUSE_LISTBOX=yes
|
||||||
DEFAULT_wxUSE_LISTCTRL=yes
|
DEFAULT_wxUSE_LISTCTRL=yes
|
||||||
DEFAULT_wxUSE_NOTEBOOK=yes
|
DEFAULT_wxUSE_NOTEBOOK=yes
|
||||||
|
DEFAULT_wxUSE_PLOT=yes
|
||||||
DEFAULT_wxUSE_RADIOBOX=yes
|
DEFAULT_wxUSE_RADIOBOX=yes
|
||||||
DEFAULT_wxUSE_RADIOBTN=yes
|
DEFAULT_wxUSE_RADIOBTN=yes
|
||||||
DEFAULT_wxUSE_SASH=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(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(validators, [ --enable-validators use wxValidator and derived classes], wxUSE_VALIDATORS)
|
||||||
WX_ARG_ENABLE(busyinfo, [ --enable-busyinfo use wxBusyInfo], wxUSE_BUSYINFO)
|
WX_ARG_ENABLE(busyinfo, [ --enable-busyinfo use wxBusyInfo], wxUSE_BUSYINFO)
|
||||||
|
WX_ARG_ENABLE(plot, [ --enable-plot use wxPlot], wxUSE_PLOT)
|
||||||
|
|
||||||
dnl ---------------------------------------------------------------------------
|
dnl ---------------------------------------------------------------------------
|
||||||
dnl support for image formats that do not rely on external library
|
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)
|
AC_DEFINE(wxUSE_LONGLONG)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if test "$wxUSE_PLOT" = "yes"; then
|
||||||
|
AC_DEFINE(wxUSE_PLOT)
|
||||||
|
fi
|
||||||
|
|
||||||
if test "$wxUSE_DIALUP_MANAGER" = "yes" ; then
|
if test "$wxUSE_DIALUP_MANAGER" = "yes" ; then
|
||||||
AC_DEFINE(wxUSE_DIALUP_MANAGER)
|
AC_DEFINE(wxUSE_DIALUP_MANAGER)
|
||||||
SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dialup"
|
SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dialup"
|
||||||
|
@@ -16,6 +16,10 @@
|
|||||||
#pragma interface "plot.h"
|
#pragma interface "plot.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "wx/defs.h"
|
||||||
|
|
||||||
|
#if wxUSE_PLOT
|
||||||
|
|
||||||
#include "wx/scrolwin.h"
|
#include "wx/scrolwin.h"
|
||||||
#include "wx/event.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_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 },
|
#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
|
#endif
|
||||||
// _WX_PLOT_H_
|
// _WX_PLOT_H_
|
||||||
|
@@ -257,6 +257,10 @@
|
|||||||
* Use this control
|
* Use this control
|
||||||
*/
|
*/
|
||||||
#define wxUSE_NOTEBOOK 0
|
#define wxUSE_NOTEBOOK 0
|
||||||
|
/*
|
||||||
|
* Use wxPlot class
|
||||||
|
*/
|
||||||
|
#define wxUSE_PLOT 0
|
||||||
/*
|
/*
|
||||||
* Use this control
|
* Use this control
|
||||||
*/
|
*/
|
||||||
|
@@ -20,6 +20,8 @@
|
|||||||
#pragma hdrstop
|
#pragma hdrstop
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if wxUSE_PLOT
|
||||||
|
|
||||||
#ifndef WX_PRECOMP
|
#ifndef WX_PRECOMP
|
||||||
#include "wx/object.h"
|
#include "wx/object.h"
|
||||||
#include "wx/font.h"
|
#include "wx/font.h"
|
||||||
@@ -953,3 +955,5 @@ static wxBitmap *GetDownBitmap()
|
|||||||
|
|
||||||
return s_bitmap;
|
return s_bitmap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif // wxUSE_PLOT
|
||||||
|
Reference in New Issue
Block a user