X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6f5f3ca0fef2c0982d9b38483321f9e67ff9f516..35c9d9582be4ebea40251378e95fdbbfe6b8ce73:/utils/ogl/src/ogldiag.h diff --git a/utils/ogl/src/ogldiag.h b/utils/ogl/src/ogldiag.h index 1654831f8e..e06e1248f4 100644 --- a/utils/ogl/src/ogldiag.h +++ b/utils/ogl/src/ogldiag.h @@ -56,15 +56,18 @@ public: virtual void DeleteAllShapes(); virtual void ShowAll(bool show); + // Find a shape by its id + wxShape* FindShape(long id) const; + inline void SetMouseTolerance(int tol) { m_mouseTolerance = tol; } inline int GetMouseTolerance() const { return m_mouseTolerance; } inline wxList *GetShapeList() const { return m_shapeList; } + inline int GetCount() const { return m_shapeList->Number(); } // Make sure all text that should be centred, is centred. void RecentreAll(wxDC& dc); #ifdef PROLOGIO - // Prolog database stuff virtual bool SaveFile(const wxString& filename); virtual bool LoadFile(const wxString& filename); @@ -90,5 +93,32 @@ protected: wxList* m_shapeList; }; +class wxLineCrossing: public wxObject +{ +public: + wxLineCrossing() { m_lineShape1 = NULL; m_lineShape2 = NULL; } + wxRealPoint m_pt1; // First line + wxRealPoint m_pt2; + wxRealPoint m_pt3; // Second line + wxRealPoint m_pt4; + wxRealPoint m_intersect; + wxLineShape* m_lineShape1; + wxLineShape* m_lineShape2; +}; + +class wxLineCrossings: public wxObject +{ +public: + wxLineCrossings(); + ~wxLineCrossings(); + + void FindCrossings(wxDiagram& diagram); + void DrawCrossings(wxDiagram& diagram, wxDC& dc); + void ClearCrossings(); + +public: + wxList m_crossings; +}; + #endif // _OGL_OGLDIAG_H_