Trying to understand wxCanvas.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8812 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2000-11-24 20:19:39 +00:00
parent c8b7a961ff
commit f9032263ab
21 changed files with 1151 additions and 194 deletions

View File

@@ -17,7 +17,7 @@
#pragma hdrstop
#endif
#include "bbox.h"
#include "wx/canvas/bbox.h"
wxBoundingBox::wxBoundingBox()
{

View File

@@ -17,9 +17,9 @@
#pragma hdrstop
#endif
#include "canvas.h"
#include "polygon.h"
#include "liner.h"
#include "wx/canvas/canvas.h"
#include "wx/canvas/polygon.h"
#include "wx/canvas/liner.h"
#ifdef __WXGTK__
#include <gtk/gtk.h>

View File

@@ -12,7 +12,7 @@ Last Update 05-12-1995
#include <stdlib.h>
#include "liner.h"
#include "wx/canvas/liner.h"
wxLine::wxLine( double x1, double y1, double x2, double y2 )
{

View File

@@ -17,8 +17,8 @@
#pragma hdrstop
#endif
#include "polygon.h"
#include "liner.h"
#include "wx/canvas/polygon.h"
#include "wx/canvas/liner.h"
void ConvertSplinedPolygon(wxList* list, double Aber);
void ConvertSplinedPolyline(wxList* list,double Aber);