1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Basic OGL classes
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "basic.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
27 #include <wx/wxexpr.h>
43 #include <wx/ogl/basic.h>
44 #include <wx/ogl/basicp.h>
45 #include <wx/ogl/composit.h>
46 #include <wx/ogl/lines.h>
47 #include <wx/ogl/canvas.h>
48 #include <wx/ogl/divided.h>
49 #include <wx/ogl/misc.h>
51 // Control point types
52 // Rectangle and most other shapes
53 #define CONTROL_POINT_VERTICAL 1
54 #define CONTROL_POINT_HORIZONTAL 2
55 #define CONTROL_POINT_DIAGONAL 3
58 #define CONTROL_POINT_ENDPOINT_TO 4
59 #define CONTROL_POINT_ENDPOINT_FROM 5
60 #define CONTROL_POINT_LINE 6
62 IMPLEMENT_DYNAMIC_CLASS(wxShapeTextLine
, wxObject
)
63 IMPLEMENT_DYNAMIC_CLASS(wxAttachmentPoint
, wxObject
)
65 wxShapeTextLine::wxShapeTextLine(double the_x
, double the_y
, const wxString
& the_line
)
67 m_x
= the_x
; m_y
= the_y
; m_line
= the_line
;
70 wxShapeTextLine::~wxShapeTextLine()
74 IMPLEMENT_ABSTRACT_CLASS(wxShapeEvtHandler
, wxObject
)
76 wxShapeEvtHandler::wxShapeEvtHandler(wxShapeEvtHandler
*prev
, wxShape
*shape
)
78 m_previousHandler
= prev
;
79 m_handlerShape
= shape
;
82 wxShapeEvtHandler::~wxShapeEvtHandler()
86 // Creates a copy of this event handler.
87 wxShapeEvtHandler
* wxShapeEvtHandler::CreateNewCopy()
89 wxShapeEvtHandler
* newObject
= (wxShapeEvtHandler
*) GetClassInfo()->CreateObject();
91 wxASSERT( (newObject
!= NULL
) );
92 wxASSERT( (newObject
->IsKindOf(CLASSINFO(wxShapeEvtHandler
))) );
94 newObject
->m_previousHandler
= newObject
;
102 void wxShapeEvtHandler::OnDelete()
104 if (this != GetShape())
108 void wxShapeEvtHandler::OnDraw(wxDC
& dc
)
110 if (m_previousHandler
)
111 m_previousHandler
->OnDraw(dc
);
114 void wxShapeEvtHandler::OnMoveLinks(wxDC
& dc
)
116 if (m_previousHandler
)
117 m_previousHandler
->OnMoveLinks(dc
);
120 void wxShapeEvtHandler::OnMoveLink(wxDC
& dc
, bool moveControlPoints
)
122 if (m_previousHandler
)
123 m_previousHandler
->OnMoveLink(dc
, moveControlPoints
);
126 void wxShapeEvtHandler::OnDrawContents(wxDC
& dc
)
128 if (m_previousHandler
)
129 m_previousHandler
->OnDrawContents(dc
);
132 void wxShapeEvtHandler::OnDrawBranches(wxDC
& dc
, bool erase
)
134 if (m_previousHandler
)
135 m_previousHandler
->OnDrawBranches(dc
, erase
);
138 void wxShapeEvtHandler::OnSize(double x
, double y
)
140 if (m_previousHandler
)
141 m_previousHandler
->OnSize(x
, y
);
144 bool wxShapeEvtHandler::OnMovePre(wxDC
& dc
, double x
, double y
, double old_x
, double old_y
, bool display
)
146 if (m_previousHandler
)
147 return m_previousHandler
->OnMovePre(dc
, x
, y
, old_x
, old_y
, display
);
152 void wxShapeEvtHandler::OnMovePost(wxDC
& dc
, double x
, double y
, double old_x
, double old_y
, bool display
)
154 if (m_previousHandler
)
155 m_previousHandler
->OnMovePost(dc
, x
, y
, old_x
, old_y
, display
);
158 void wxShapeEvtHandler::OnErase(wxDC
& dc
)
160 if (m_previousHandler
)
161 m_previousHandler
->OnErase(dc
);
164 void wxShapeEvtHandler::OnEraseContents(wxDC
& dc
)
166 if (m_previousHandler
)
167 m_previousHandler
->OnEraseContents(dc
);
170 void wxShapeEvtHandler::OnHighlight(wxDC
& dc
)
172 if (m_previousHandler
)
173 m_previousHandler
->OnHighlight(dc
);
176 void wxShapeEvtHandler::OnLeftClick(double x
, double y
, int keys
, int attachment
)
178 if (m_previousHandler
)
179 m_previousHandler
->OnLeftClick(x
, y
, keys
, attachment
);
182 void wxShapeEvtHandler::OnLeftDoubleClick(double x
, double y
, int keys
, int attachment
)
184 if (m_previousHandler
)
185 m_previousHandler
->OnLeftDoubleClick(x
, y
, keys
, attachment
);
188 void wxShapeEvtHandler::OnRightClick(double x
, double y
, int keys
, int attachment
)
190 if (m_previousHandler
)
191 m_previousHandler
->OnRightClick(x
, y
, keys
, attachment
);
194 void wxShapeEvtHandler::OnDragLeft(bool draw
, double x
, double y
, int keys
, int attachment
)
196 if (m_previousHandler
)
197 m_previousHandler
->OnDragLeft(draw
, x
, y
, keys
, attachment
);
200 void wxShapeEvtHandler::OnBeginDragLeft(double x
, double y
, int keys
, int attachment
)
202 if (m_previousHandler
)
203 m_previousHandler
->OnBeginDragLeft(x
, y
, keys
, attachment
);
206 void wxShapeEvtHandler::OnEndDragLeft(double x
, double y
, int keys
, int attachment
)
208 if (m_previousHandler
)
209 m_previousHandler
->OnEndDragLeft(x
, y
, keys
, attachment
);
212 void wxShapeEvtHandler::OnDragRight(bool draw
, double x
, double y
, int keys
, int attachment
)
214 if (m_previousHandler
)
215 m_previousHandler
->OnDragRight(draw
, x
, y
, keys
, attachment
);
218 void wxShapeEvtHandler::OnBeginDragRight(double x
, double y
, int keys
, int attachment
)
220 if (m_previousHandler
)
221 m_previousHandler
->OnBeginDragRight(x
, y
, keys
, attachment
);
224 void wxShapeEvtHandler::OnEndDragRight(double x
, double y
, int keys
, int attachment
)
226 if (m_previousHandler
)
227 m_previousHandler
->OnEndDragRight(x
, y
, keys
, attachment
);
230 // Control points ('handles') redirect control to the actual shape, to make it easier
231 // to override sizing behaviour.
232 void wxShapeEvtHandler::OnSizingDragLeft(wxControlPoint
* pt
, bool draw
, double x
, double y
, int keys
, int attachment
)
234 if (m_previousHandler
)
235 m_previousHandler
->OnSizingDragLeft(pt
, draw
, x
, y
, keys
, attachment
);
238 void wxShapeEvtHandler::OnSizingBeginDragLeft(wxControlPoint
* pt
, double x
, double y
, int keys
, int attachment
)
240 if (m_previousHandler
)
241 m_previousHandler
->OnSizingBeginDragLeft(pt
, x
, y
, keys
, attachment
);
244 void wxShapeEvtHandler::OnSizingEndDragLeft(wxControlPoint
* pt
, double x
, double y
, int keys
, int attachment
)
246 if (m_previousHandler
)
247 m_previousHandler
->OnSizingEndDragLeft(pt
, x
, y
, keys
, attachment
);
250 void wxShapeEvtHandler::OnDrawOutline(wxDC
& dc
, double x
, double y
, double w
, double h
)
252 if (m_previousHandler
)
253 m_previousHandler
->OnDrawOutline(dc
, x
, y
, w
, h
);
256 void wxShapeEvtHandler::OnDrawControlPoints(wxDC
& dc
)
258 if (m_previousHandler
)
259 m_previousHandler
->OnDrawControlPoints(dc
);
262 void wxShapeEvtHandler::OnEraseControlPoints(wxDC
& dc
)
264 if (m_previousHandler
)
265 m_previousHandler
->OnEraseControlPoints(dc
);
268 // Can override this to prevent or intercept line reordering.
269 void wxShapeEvtHandler::OnChangeAttachment(int attachment
, wxLineShape
* line
, wxList
& ordering
)
271 if (m_previousHandler
)
272 m_previousHandler
->OnChangeAttachment(attachment
, line
, ordering
);
275 IMPLEMENT_ABSTRACT_CLASS(wxShape
, wxShapeEvtHandler
)
277 wxShape::wxShape(wxShapeCanvas
*can
)
279 m_eventHandler
= this;
284 m_xpos
= 0.0; m_ypos
= 0.0;
285 m_pen
= g_oglBlackPen
;
286 m_brush
= wxWHITE_BRUSH
;
287 m_font
= g_oglNormalFont
;
288 m_textColour
= wxBLACK
;
289 m_textColourName
= "BLACK";
293 m_attachmentMode
= ATTACHMENT_MODE_NONE
;
294 m_spaceAttachments
= TRUE
;
295 m_disableLabel
= FALSE
;
296 m_fixedWidth
= FALSE
;
297 m_fixedHeight
= FALSE
;
298 m_drawHandles
= TRUE
;
299 m_sensitivity
= OP_ALL
;
302 m_formatMode
= FORMAT_CENTRE_HORIZ
| FORMAT_CENTRE_VERT
;
303 m_shadowMode
= SHADOW_NONE
;
306 m_shadowBrush
= wxBLACK_BRUSH
;
310 m_centreResize
= TRUE
;
311 m_maintainAspectRatio
= FALSE
;
312 m_highlighted
= FALSE
;
314 m_branchNeckLength
= 10;
315 m_branchStemLength
= 10;
316 m_branchSpacing
= 10;
317 m_branchStyle
= BRANCHING_ATTACHMENT_NORMAL
;
319 // Set up a default region. Much of the above will be put into
320 // the region eventually (the duplication is for compatibility)
321 wxShapeRegion
*region
= new wxShapeRegion
;
322 m_regions
.Append(region
);
323 region
->SetName("0");
324 region
->SetFont(g_oglNormalFont
);
325 region
->SetFormatMode(FORMAT_CENTRE_HORIZ
| FORMAT_CENTRE_VERT
);
326 region
->SetColour("BLACK");
332 m_parent
->GetChildren().DeleteObject(this);
339 m_canvas
->RemoveShape(this);
346 GetEventHandler()->OnDelete();
349 void wxShape::SetHighlight(bool hi
, bool recurse
)
354 wxNode
*node
= m_children
.First();
357 wxShape
*child
= (wxShape
*)node
->Data();
358 child
->SetHighlight(hi
, recurse
);
364 void wxShape::SetSensitivityFilter(int sens
, bool recursive
)
366 if (sens
& OP_DRAG_LEFT
)
371 m_sensitivity
= sens
;
374 wxNode
*node
= m_children
.First();
377 wxShape
*obj
= (wxShape
*)node
->Data();
378 obj
->SetSensitivityFilter(sens
, TRUE
);
384 void wxShape::SetDraggable(bool drag
, bool recursive
)
388 m_sensitivity
|= OP_DRAG_LEFT
;
390 if (m_sensitivity
& OP_DRAG_LEFT
)
391 m_sensitivity
= m_sensitivity
- OP_DRAG_LEFT
;
395 wxNode
*node
= m_children
.First();
398 wxShape
*obj
= (wxShape
*)node
->Data();
399 obj
->SetDraggable(drag
, TRUE
);
405 void wxShape::SetDrawHandles(bool drawH
)
407 m_drawHandles
= drawH
;
408 wxNode
*node
= m_children
.First();
411 wxShape
*obj
= (wxShape
*)node
->Data();
412 obj
->SetDrawHandles(drawH
);
417 void wxShape::SetShadowMode(int mode
, bool redraw
)
419 if (redraw
&& GetCanvas())
421 wxClientDC
dc(GetCanvas());
422 GetCanvas()->PrepareDC(dc
);
435 void wxShape::SetCanvas(wxShapeCanvas
*theCanvas
)
437 m_canvas
= theCanvas
;
438 wxNode
*node
= m_children
.First();
441 wxShape
*child
= (wxShape
*)node
->Data();
442 child
->SetCanvas(theCanvas
);
447 void wxShape::AddToCanvas(wxShapeCanvas
*theCanvas
, wxShape
*addAfter
)
449 theCanvas
->AddShape(this, addAfter
);
450 wxNode
*node
= m_children
.First();
451 wxShape
*lastImage
= this;
454 wxShape
*object
= (wxShape
*)node
->Data();
455 object
->AddToCanvas(theCanvas
, lastImage
);
462 // Insert at front of canvas
463 void wxShape::InsertInCanvas(wxShapeCanvas
*theCanvas
)
465 theCanvas
->InsertShape(this);
466 wxNode
*node
= m_children
.First();
467 wxShape
*lastImage
= this;
470 wxShape
*object
= (wxShape
*)node
->Data();
471 object
->AddToCanvas(theCanvas
, lastImage
);
478 void wxShape::RemoveFromCanvas(wxShapeCanvas
*theCanvas
)
482 theCanvas
->RemoveShape(this);
483 wxNode
*node
= m_children
.First();
486 wxShape
*object
= (wxShape
*)node
->Data();
487 object
->RemoveFromCanvas(theCanvas
);
493 void wxShape::ClearAttachments()
495 wxNode
*node
= m_attachmentPoints
.First();
498 wxAttachmentPoint
*point
= (wxAttachmentPoint
*)node
->Data();
502 m_attachmentPoints
.Clear();
505 void wxShape::ClearText(int regionId
)
509 m_text
.DeleteContents(TRUE
);
511 m_text
.DeleteContents(FALSE
);
513 wxNode
*node
= m_regions
.Nth(regionId
);
516 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
520 void wxShape::ClearRegions()
522 wxNode
*node
= m_regions
.First();
525 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
526 wxNode
*next
= node
->Next();
533 void wxShape::AddRegion(wxShapeRegion
*region
)
535 m_regions
.Append(region
);
538 void wxShape::SetDefaultRegionSize()
540 wxNode
*node
= m_regions
.First();
542 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
544 GetBoundingBoxMin(&w
, &h
);
545 region
->SetSize(w
, h
);
548 bool wxShape::HitTest(double x
, double y
, int *attachment
, double *distance
)
553 double width
= 0.0, height
= 0.0;
554 GetBoundingBoxMin(&width
, &height
);
555 if (fabs(width
) < 4.0) width
= 4.0;
556 if (fabs(height
) < 4.0) height
= 4.0;
558 width
+= (double)4.0; height
+= (double)4.0; // Allowance for inaccurate mousing
560 double left
= (double)(m_xpos
- (width
/2.0));
561 double top
= (double)(m_ypos
- (height
/2.0));
562 double right
= (double)(m_xpos
+ (width
/2.0));
563 double bottom
= (double)(m_ypos
+ (height
/2.0));
565 int nearest_attachment
= 0;
567 // If within the bounding box, check the attachment points
568 // within the object.
570 if (x
>= left
&& x
<= right
&& y
>= top
&& y
<= bottom
)
572 int n
= GetNumberOfAttachments();
573 double nearest
= 999999.0;
575 // GetAttachmentPosition[Edge] takes a logical attachment position,
576 // i.e. if it's rotated through 90%, position 0 is East-facing.
578 for (int i
= 0; i
< n
; i
++)
581 if (GetAttachmentPositionEdge(i
, &xp
, &yp
))
583 double l
= (double)sqrt(((xp
- x
) * (xp
- x
)) +
584 ((yp
- y
) * (yp
- y
)));
589 nearest_attachment
= i
;
593 *attachment
= nearest_attachment
;
600 // Format a text string according to the region size, adding
601 // strings with positions to region text list
603 static bool GraphicsInSizeToContents
= FALSE
; // Infinite recursion elimination
604 void wxShape::FormatText(wxDC
& dc
, const wxString
& s
, int i
)
609 if (m_regions
.Number() < 1)
611 wxNode
*node
= m_regions
.Nth(i
);
615 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
617 dc
.SetFont(* region
->GetFont());
619 region
->GetSize(&w
, &h
);
621 wxStringList
*stringList
= oglFormatText(dc
, s
, (w
-5), (h
-5), region
->GetFormatMode());
622 node
= stringList
->First();
625 char *s
= (char *)node
->Data();
626 wxShapeTextLine
*line
= new wxShapeTextLine(0.0, 0.0, s
);
627 region
->GetFormattedText().Append((wxObject
*)line
);
633 // Don't try to resize an object with more than one image (this case should be dealt
634 // with by overriden handlers)
635 if ((region
->GetFormatMode() & FORMAT_SIZE_TO_CONTENTS
) &&
636 (region
->GetFormattedText().Number() > 0) &&
637 (m_regions
.Number() == 1) && !GraphicsInSizeToContents
)
639 oglGetCentredTextExtent(dc
, &(region
->GetFormattedText()), m_xpos
, m_ypos
, w
, h
, &actualW
, &actualH
);
640 if ((actualW
+m_textMarginX
!= w
) || (actualH
+m_textMarginY
!= h
))
642 // If we are a descendant of a composite, must make sure the composite gets
644 wxShape
*topAncestor
= GetTopAncestor();
646 if (topAncestor
!= this)
648 // Make sure we don't recurse infinitely
649 GraphicsInSizeToContents
= TRUE
;
651 wxCompositeShape
*composite
= (wxCompositeShape
*)topAncestor
;
652 composite
->Erase(dc
);
653 SetSize(actualW
+m_textMarginX
, actualH
+m_textMarginY
);
654 Move(dc
, m_xpos
, m_ypos
);
655 composite
->CalculateSize();
656 if (composite
->Selected())
658 composite
->DeleteControlPoints(& dc
);
659 composite
->MakeControlPoints();
660 composite
->MakeMandatoryControlPoints();
662 // Where infinite recursion might happen if we didn't stop it
665 GraphicsInSizeToContents
= FALSE
;
670 SetSize(actualW
+m_textMarginX
, actualH
+m_textMarginY
);
671 Move(dc
, m_xpos
, m_ypos
);
673 SetSize(actualW
+m_textMarginX
, actualH
+m_textMarginY
);
674 Move(dc
, m_xpos
, m_ypos
);
678 oglCentreText(dc
, &(region
->GetFormattedText()), m_xpos
, m_ypos
, actualW
, actualH
, region
->GetFormatMode());
682 void wxShape::Recentre(wxDC
& dc
)
685 GetBoundingBoxMin(&w
, &h
);
687 int noRegions
= m_regions
.Number();
688 for (int i
= 0; i
< noRegions
; i
++)
690 wxNode
*node
= m_regions
.Nth(i
);
693 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
694 oglCentreText(dc
, &(region
->GetFormattedText()), m_xpos
, m_ypos
, w
, h
, region
->GetFormatMode());
699 bool wxShape::GetPerimeterPoint(double x1
, double y1
,
700 double x2
, double y2
,
701 double *x3
, double *y3
)
706 void wxShape::SetPen(wxPen
*the_pen
)
711 void wxShape::SetBrush(wxBrush
*the_brush
)
716 // Get the top-most (non-division) ancestor, or self
717 wxShape
*wxShape::GetTopAncestor()
722 if (GetParent()->IsKindOf(CLASSINFO(wxDivisionShape
)))
724 else return GetParent()->GetTopAncestor();
731 void wxShape::SetFont(wxFont
*the_font
, int regionId
)
734 wxNode
*node
= m_regions
.Nth(regionId
);
737 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
738 region
->SetFont(the_font
);
741 wxFont
*wxShape::GetFont(int n
) const
743 wxNode
*node
= m_regions
.Nth(n
);
746 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
747 return region
->GetFont();
750 void wxShape::SetFormatMode(int mode
, int regionId
)
752 wxNode
*node
= m_regions
.Nth(regionId
);
755 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
756 region
->SetFormatMode(mode
);
759 int wxShape::GetFormatMode(int regionId
) const
761 wxNode
*node
= m_regions
.Nth(regionId
);
764 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
765 return region
->GetFormatMode();
768 void wxShape::SetTextColour(const wxString
& the_colour
, int regionId
)
770 wxColour
*wxcolour
= wxTheColourDatabase
->FindColour(the_colour
);
771 m_textColour
= wxcolour
;
772 m_textColourName
= the_colour
;
774 wxNode
*node
= m_regions
.Nth(regionId
);
777 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
778 region
->SetColour(the_colour
);
781 wxString
wxShape::GetTextColour(int regionId
) const
783 wxNode
*node
= m_regions
.Nth(regionId
);
786 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
787 return region
->GetColour();
790 void wxShape::SetRegionName(const wxString
& name
, int regionId
)
792 wxNode
*node
= m_regions
.Nth(regionId
);
795 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
796 region
->SetName(name
);
799 wxString
wxShape::GetRegionName(int regionId
)
801 wxNode
*node
= m_regions
.Nth(regionId
);
804 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
805 return region
->GetName();
808 int wxShape::GetRegionId(const wxString
& name
)
810 wxNode
*node
= m_regions
.First();
814 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
815 if (region
->GetName() == name
)
823 // Name all m_regions in all subimages recursively.
824 void wxShape::NameRegions(const wxString
& parentName
)
826 int n
= GetNumberOfTextRegions();
828 for (int i
= 0; i
< n
; i
++)
830 if (parentName
.Length() > 0)
831 sprintf(buf
, "%s.%d", (const char*) parentName
, i
);
833 sprintf(buf
, "%d", i
);
834 SetRegionName(buf
, i
);
836 wxNode
*node
= m_children
.First();
840 wxShape
*child
= (wxShape
*)node
->Data();
841 if (parentName
.Length() > 0)
842 sprintf(buf
, "%s.%d", (const char*) parentName
, j
);
844 sprintf(buf
, "%d", j
);
845 child
->NameRegions(buf
);
851 // Get a region by name, possibly looking recursively into composites.
852 wxShape
*wxShape::FindRegion(const wxString
& name
, int *regionId
)
854 int id
= GetRegionId(name
);
861 wxNode
*node
= m_children
.First();
864 wxShape
*child
= (wxShape
*)node
->Data();
865 wxShape
*actualImage
= child
->FindRegion(name
, regionId
);
873 // Finds all region names for this image (composite or simple).
874 // Supply empty string list.
875 void wxShape::FindRegionNames(wxStringList
& list
)
877 int n
= GetNumberOfTextRegions();
878 for (int i
= 0; i
< n
; i
++)
880 wxString
name(GetRegionName(i
));
881 list
.Add((const char*) name
);
884 wxNode
*node
= m_children
.First();
887 wxShape
*child
= (wxShape
*)node
->Data();
888 child
->FindRegionNames(list
);
893 void wxShape::AssignNewIds()
897 wxNode
*node
= m_children
.First();
900 wxShape
*child
= (wxShape
*)node
->Data();
901 child
->AssignNewIds();
906 void wxShape::OnDraw(wxDC
& dc
)
910 void wxShape::OnMoveLinks(wxDC
& dc
)
912 // Want to set the ends of all attached links
913 // to point to/from this object
915 wxNode
*current
= m_lines
.First();
918 wxLineShape
*line
= (wxLineShape
*)current
->Data();
919 line
->GetEventHandler()->OnMoveLink(dc
);
920 current
= current
->Next();
925 void wxShape::OnDrawContents(wxDC
& dc
)
927 double bound_x
, bound_y
;
928 GetBoundingBoxMin(&bound_x
, &bound_y
);
929 if (m_regions
.Number() < 1) return;
931 if (m_pen
) dc
.SetPen(* m_pen
);
933 wxShapeRegion
*region
= (wxShapeRegion
*)m_regions
.First()->Data();
934 if (region
->GetFont()) dc
.SetFont(* region
->GetFont());
936 dc
.SetTextForeground(* (region
->GetActualColourObject()));
937 dc
.SetBackgroundMode(wxTRANSPARENT
);
940 oglCentreText(dc
, &(region
->GetFormattedText()), m_xpos
, m_ypos
, bound_x
, bound_y
, region
->GetFormatMode());
943 if (!GetDisableLabel())
945 oglDrawFormattedText(dc
, &(region
->GetFormattedText()), m_xpos
, m_ypos
, bound_x
, bound_y
, region
->GetFormatMode());
949 void wxShape::DrawContents(wxDC
& dc
)
951 GetEventHandler()->OnDrawContents(dc
);
954 void wxShape::OnSize(double x
, double y
)
958 bool wxShape::OnMovePre(wxDC
& dc
, double x
, double y
, double old_x
, double old_y
, bool display
)
963 void wxShape::OnMovePost(wxDC
& dc
, double x
, double y
, double old_x
, double old_y
, bool display
)
967 void wxShape::OnErase(wxDC
& dc
)
973 wxNode
*current
= m_lines
.First();
976 wxLineShape
*line
= (wxLineShape
*)current
->Data();
977 line
->GetEventHandler()->OnErase(dc
);
978 current
= current
->Next();
980 GetEventHandler()->OnEraseContents(dc
);
983 void wxShape::OnEraseContents(wxDC
& dc
)
988 double maxX
, maxY
, minX
, minY
;
991 GetBoundingBoxMin(&minX
, &minY
);
992 GetBoundingBoxMax(&maxX
, &maxY
);
993 double topLeftX
= (double)(xp
- (maxX
/ 2.0) - 2.0);
994 double topLeftY
= (double)(yp
- (maxY
/ 2.0) - 2.0);
998 penWidth
= m_pen
->GetWidth();
1000 dc
.SetPen(GetBackgroundPen());
1001 dc
.SetBrush(GetBackgroundBrush());
1003 dc
.DrawRectangle(WXROUND(topLeftX
- penWidth
), WXROUND(topLeftY
- penWidth
),
1004 WXROUND(maxX
+ penWidth
*2.0 + 4.0), WXROUND(maxY
+ penWidth
*2.0 + 4.0));
1007 void wxShape::EraseLinks(wxDC
& dc
, int attachment
, bool recurse
)
1012 wxNode
*current
= m_lines
.First();
1015 wxLineShape
*line
= (wxLineShape
*)current
->Data();
1016 if (attachment
== -1 || ((line
->GetTo() == this && line
->GetAttachmentTo() == attachment
) ||
1017 (line
->GetFrom() == this && line
->GetAttachmentFrom() == attachment
)))
1018 line
->GetEventHandler()->OnErase(dc
);
1019 current
= current
->Next();
1023 wxNode
*node
= m_children
.First();
1026 wxShape
*child
= (wxShape
*)node
->Data();
1027 child
->EraseLinks(dc
, attachment
, recurse
);
1028 node
= node
->Next();
1033 void wxShape::DrawLinks(wxDC
& dc
, int attachment
, bool recurse
)
1038 wxNode
*current
= m_lines
.First();
1041 wxLineShape
*line
= (wxLineShape
*)current
->Data();
1042 if (attachment
== -1 ||
1043 (line
->GetTo() == this && line
->GetAttachmentTo() == attachment
) ||
1044 (line
->GetFrom() == this && line
->GetAttachmentFrom() == attachment
))
1046 current
= current
->Next();
1050 wxNode
*node
= m_children
.First();
1053 wxShape
*child
= (wxShape
*)node
->Data();
1054 child
->DrawLinks(dc
, attachment
, recurse
);
1055 node
= node
->Next();
1060 // Returns TRUE if pt1 <= pt2 in the sense that one point comes before another on an
1061 // edge of the shape.
1062 // attachmentPoint is the attachment point (= side) in question.
1064 // This is the default, rectangular implementation.
1065 bool wxShape::AttachmentSortTest(int attachmentPoint
, const wxRealPoint
& pt1
, const wxRealPoint
& pt2
)
1067 int physicalAttachment
= LogicalToPhysicalAttachment(attachmentPoint
);
1068 switch (physicalAttachment
)
1073 return (pt1
.x
<= pt2
.x
) ;
1079 return (pt1
.y
<= pt2
.y
) ;
1087 bool wxShape::MoveLineToNewAttachment(wxDC
& dc
, wxLineShape
*to_move
,
1090 if (GetAttachmentMode() == ATTACHMENT_MODE_NONE
)
1093 int newAttachment
, oldAttachment
;
1096 // Is (x, y) on this object? If so, find the new attachment point
1097 // the user has moved the point to
1098 bool hit
= HitTest(x
, y
, &newAttachment
, &distance
);
1104 if (to_move
->GetTo() == this)
1105 oldAttachment
= to_move
->GetAttachmentTo();
1107 oldAttachment
= to_move
->GetAttachmentFrom();
1109 // The links in a new ordering.
1112 // First, add all links to the new list.
1113 wxNode
*node
= m_lines
.First();
1116 newOrdering
.Append(node
->Data());
1117 node
= node
->Next();
1120 // Delete the line object from the list of links; we're going to move
1121 // it to another position in the list
1122 newOrdering
.DeleteObject(to_move
);
1124 double old_x
= (double) -99999.9;
1125 double old_y
= (double) -99999.9;
1127 node
= newOrdering
.First();
1130 while (!found
&& node
)
1132 wxLineShape
*line
= (wxLineShape
*)node
->Data();
1133 if ((line
->GetTo() == this && oldAttachment
== line
->GetAttachmentTo()) ||
1134 (line
->GetFrom() == this && oldAttachment
== line
->GetAttachmentFrom()))
1136 double startX
, startY
, endX
, endY
;
1138 line
->GetEnds(&startX
, &startY
, &endX
, &endY
);
1139 if (line
->GetTo() == this)
1149 wxRealPoint
thisPoint(xp
, yp
);
1150 wxRealPoint
lastPoint(old_x
, old_y
);
1151 wxRealPoint
newPoint(x
, y
);
1153 if (AttachmentSortTest(newAttachment
, newPoint
, thisPoint
) && AttachmentSortTest(newAttachment
, lastPoint
, newPoint
))
1156 newOrdering
.Insert(node
, to_move
);
1162 node
= node
->Next();
1166 newOrdering
.Append(to_move
);
1168 GetEventHandler()->OnChangeAttachment(newAttachment
, to_move
, newOrdering
);
1173 void wxShape::OnChangeAttachment(int attachment
, wxLineShape
* line
, wxList
& ordering
)
1175 if (line
->GetTo() == this)
1176 line
->SetAttachmentTo(attachment
);
1178 line
->SetAttachmentFrom(attachment
);
1180 ApplyAttachmentOrdering(ordering
);
1182 wxClientDC
dc(GetCanvas());
1183 GetCanvas()->PrepareDC(dc
);
1187 if (!GetCanvas()->GetQuickEditMode()) GetCanvas()->Redraw(dc
);
1190 // Reorders the lines according to the given list.
1191 void wxShape::ApplyAttachmentOrdering(wxList
& linesToSort
)
1193 // This is a temporary store of all the lines.
1196 wxNode
*node
= m_lines
.First();
1199 wxLineShape
*line
= (wxLineShape
*)node
->Data();
1200 linesStore
.Append(line
);
1201 node
= node
->Next();;
1206 node
= linesToSort
.First();
1209 wxLineShape
*line
= (wxLineShape
*)node
->Data();
1210 if (linesStore
.Member(line
))
1213 linesStore
.DeleteObject(line
);
1214 m_lines
.Append(line
);
1216 node
= node
->Next();
1219 // Now add any lines that haven't been listed in linesToSort.
1220 node
= linesStore
.First();
1223 wxLineShape
*line
= (wxLineShape
*)node
->Data();
1224 m_lines
.Append(line
);
1225 node
= node
->Next();
1229 // Reorders the lines coming into the node image at this attachment
1230 // position, in the order in which they appear in linesToSort.
1231 // Any remaining lines not in the list will be added to the end.
1232 void wxShape::SortLines(int attachment
, wxList
& linesToSort
)
1234 // This is a temporary store of all the lines at this attachment
1235 // point. We'll tick them off as we've processed them.
1236 wxList linesAtThisAttachment
;
1238 wxNode
*node
= m_lines
.First();
1241 wxLineShape
*line
= (wxLineShape
*)node
->Data();
1242 wxNode
*next
= node
->Next();
1243 if ((line
->GetTo() == this && line
->GetAttachmentTo() == attachment
) ||
1244 (line
->GetFrom() == this && line
->GetAttachmentFrom() == attachment
))
1246 linesAtThisAttachment
.Append(line
);
1250 else node
= node
->Next();
1253 node
= linesToSort
.First();
1256 wxLineShape
*line
= (wxLineShape
*)node
->Data();
1257 if (linesAtThisAttachment
.Member(line
))
1260 linesAtThisAttachment
.DeleteObject(line
);
1261 m_lines
.Append(line
);
1263 node
= node
->Next();
1266 // Now add any lines that haven't been listed in linesToSort.
1267 node
= linesAtThisAttachment
.First();
1270 wxLineShape
*line
= (wxLineShape
*)node
->Data();
1271 m_lines
.Append(line
);
1272 node
= node
->Next();
1276 void wxShape::OnHighlight(wxDC
& dc
)
1280 void wxShape::OnLeftClick(double x
, double y
, int keys
, int attachment
)
1282 if ((m_sensitivity
& OP_CLICK_LEFT
) != OP_CLICK_LEFT
)
1288 m_parent
->HitTest(x
, y
, &attachment
, &dist
);
1289 m_parent
->GetEventHandler()->OnLeftClick(x
, y
, keys
, attachment
);
1295 void wxShape::OnRightClick(double x
, double y
, int keys
, int attachment
)
1297 if ((m_sensitivity
& OP_CLICK_RIGHT
) != OP_CLICK_RIGHT
)
1303 m_parent
->HitTest(x
, y
, &attachment
, &dist
);
1304 m_parent
->GetEventHandler()->OnRightClick(x
, y
, keys
, attachment
);
1310 double DragOffsetX
= 0.0;
1311 double DragOffsetY
= 0.0;
1313 void wxShape::OnDragLeft(bool draw
, double x
, double y
, int keys
, int attachment
)
1315 if ((m_sensitivity
& OP_DRAG_LEFT
) != OP_DRAG_LEFT
)
1321 m_parent
->HitTest(x
, y
, &attachment
, &dist
);
1322 m_parent
->GetEventHandler()->OnDragLeft(draw
, x
, y
, keys
, attachment
);
1327 wxClientDC
dc(GetCanvas());
1328 GetCanvas()->PrepareDC(dc
);
1330 dc
.SetLogicalFunction(OGLRBLF
);
1332 wxPen
dottedPen(wxColour(0, 0, 0), 1, wxDOT
);
1333 dc
.SetPen(dottedPen
);
1334 dc
.SetBrush(* wxTRANSPARENT_BRUSH
);
1337 xx
= x
+ DragOffsetX
;
1338 yy
= y
+ DragOffsetY
;
1340 m_canvas
->Snap(&xx
, &yy
);
1341 // m_xpos = xx; m_ypos = yy;
1343 GetBoundingBoxMax(&w
, &h
);
1344 GetEventHandler()->OnDrawOutline(dc
, xx
, yy
, w
, h
);
1347 void wxShape::OnBeginDragLeft(double x
, double y
, int keys
, int attachment
)
1349 if ((m_sensitivity
& OP_DRAG_LEFT
) != OP_DRAG_LEFT
)
1355 m_parent
->HitTest(x
, y
, &attachment
, &dist
);
1356 m_parent
->GetEventHandler()->OnBeginDragLeft(x
, y
, keys
, attachment
);
1361 DragOffsetX
= m_xpos
- x
;
1362 DragOffsetY
= m_ypos
- y
;
1364 wxClientDC
dc(GetCanvas());
1365 GetCanvas()->PrepareDC(dc
);
1367 // New policy: don't erase shape until end of drag.
1371 xx
= x
+ DragOffsetX
;
1372 yy
= y
+ DragOffsetY
;
1373 m_canvas
->Snap(&xx
, &yy
);
1374 // m_xpos = xx; m_ypos = yy;
1375 dc
.SetLogicalFunction(OGLRBLF
);
1377 wxPen
dottedPen(wxColour(0, 0, 0), 1, wxDOT
);
1378 dc
.SetPen(dottedPen
);
1379 dc
.SetBrush((* wxTRANSPARENT_BRUSH
));
1382 GetBoundingBoxMax(&w
, &h
);
1383 GetEventHandler()->OnDrawOutline(dc
, xx
, yy
, w
, h
);
1384 m_canvas
->CaptureMouse();
1387 void wxShape::OnEndDragLeft(double x
, double y
, int keys
, int attachment
)
1389 m_canvas
->ReleaseMouse();
1390 if ((m_sensitivity
& OP_DRAG_LEFT
) != OP_DRAG_LEFT
)
1396 m_parent
->HitTest(x
, y
, &attachment
, &dist
);
1397 m_parent
->GetEventHandler()->OnEndDragLeft(x
, y
, keys
, attachment
);
1402 wxClientDC
dc(GetCanvas());
1403 GetCanvas()->PrepareDC(dc
);
1405 dc
.SetLogicalFunction(wxCOPY
);
1407 double xx
= x
+ DragOffsetX
;
1408 double yy
= y
+ DragOffsetY
;
1409 m_canvas
->Snap(&xx
, &yy
);
1410 // canvas->Snap(&m_xpos, &m_ypos);
1412 // New policy: erase shape at end of drag.
1416 if (m_canvas
&& !m_canvas
->GetQuickEditMode()) m_canvas
->Redraw(dc
);
1419 void wxShape::OnDragRight(bool draw
, double x
, double y
, int keys
, int attachment
)
1421 if ((m_sensitivity
& OP_DRAG_RIGHT
) != OP_DRAG_RIGHT
)
1427 m_parent
->HitTest(x
, y
, &attachment
, &dist
);
1428 m_parent
->GetEventHandler()->OnDragRight(draw
, x
, y
, keys
, attachment
);
1434 void wxShape::OnBeginDragRight(double x
, double y
, int keys
, int attachment
)
1436 if ((m_sensitivity
& OP_DRAG_RIGHT
) != OP_DRAG_RIGHT
)
1442 m_parent
->HitTest(x
, y
, &attachment
, &dist
);
1443 m_parent
->GetEventHandler()->OnBeginDragRight(x
, y
, keys
, attachment
);
1449 void wxShape::OnEndDragRight(double x
, double y
, int keys
, int attachment
)
1451 if ((m_sensitivity
& OP_DRAG_RIGHT
) != OP_DRAG_RIGHT
)
1457 m_parent
->HitTest(x
, y
, &attachment
, &dist
);
1458 m_parent
->GetEventHandler()->OnEndDragRight(x
, y
, keys
, attachment
);
1464 void wxShape::OnDrawOutline(wxDC
& dc
, double x
, double y
, double w
, double h
)
1466 double top_left_x
= (double)(x
- w
/2.0);
1467 double top_left_y
= (double)(y
- h
/2.0);
1468 double top_right_x
= (double)(top_left_x
+ w
);
1469 double top_right_y
= (double)top_left_y
;
1470 double bottom_left_x
= (double)top_left_x
;
1471 double bottom_left_y
= (double)(top_left_y
+ h
);
1472 double bottom_right_x
= (double)top_right_x
;
1473 double bottom_right_y
= (double)bottom_left_y
;
1476 points
[0].x
= WXROUND(top_left_x
); points
[0].y
= WXROUND(top_left_y
);
1477 points
[1].x
= WXROUND(top_right_x
); points
[1].y
= WXROUND(top_right_y
);
1478 points
[2].x
= WXROUND(bottom_right_x
); points
[2].y
= WXROUND(bottom_right_y
);
1479 points
[3].x
= WXROUND(bottom_left_x
); points
[3].y
= WXROUND(bottom_left_y
);
1480 points
[4].x
= WXROUND(top_left_x
); points
[4].y
= WXROUND(top_left_y
);
1482 dc
.DrawLines(5, points
);
1485 void wxShape::Attach(wxShapeCanvas
*can
)
1490 void wxShape::Detach()
1495 void wxShape::Move(wxDC
& dc
, double x
, double y
, bool display
)
1497 double old_x
= m_xpos
;
1498 double old_y
= m_ypos
;
1500 if (!GetEventHandler()->OnMovePre(dc
, x
, y
, old_x
, old_y
, display
))
1507 m_xpos
= x
; m_ypos
= y
;
1509 ResetControlPoints();
1516 GetEventHandler()->OnMovePost(dc
, x
, y
, old_x
, old_y
, display
);
1519 void wxShape::MoveLinks(wxDC
& dc
)
1521 GetEventHandler()->OnMoveLinks(dc
);
1525 void wxShape::Draw(wxDC
& dc
)
1529 GetEventHandler()->OnDraw(dc
);
1530 GetEventHandler()->OnDrawContents(dc
);
1531 GetEventHandler()->OnDrawControlPoints(dc
);
1532 GetEventHandler()->OnDrawBranches(dc
);
1536 void wxShape::Flash()
1540 wxClientDC
dc(GetCanvas());
1541 GetCanvas()->PrepareDC(dc
);
1543 dc
.SetLogicalFunction(OGLRBLF
);
1545 dc
.SetLogicalFunction(wxCOPY
);
1550 void wxShape::Show(bool show
)
1553 wxNode
*node
= m_children
.First();
1556 wxShape
*image
= (wxShape
*)node
->Data();
1558 node
= node
->Next();
1562 void wxShape::Erase(wxDC
& dc
)
1564 GetEventHandler()->OnErase(dc
);
1565 GetEventHandler()->OnEraseControlPoints(dc
);
1566 GetEventHandler()->OnDrawBranches(dc
, TRUE
);
1569 void wxShape::EraseContents(wxDC
& dc
)
1571 GetEventHandler()->OnEraseContents(dc
);
1574 void wxShape::AddText(const wxString
& string
)
1576 wxNode
*node
= m_regions
.First();
1579 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
1580 region
->ClearText();
1581 wxShapeTextLine
*new_line
=
1582 new wxShapeTextLine(0.0, 0.0, string
);
1583 region
->GetFormattedText().Append(new_line
);
1585 m_formatted
= FALSE
;
1588 void wxShape::SetSize(double x
, double y
, bool recursive
)
1590 SetAttachmentSize(x
, y
);
1591 SetDefaultRegionSize();
1594 void wxShape::SetAttachmentSize(double w
, double h
)
1598 double width
, height
;
1599 GetBoundingBoxMin(&width
, &height
);
1602 else scaleX
= w
/width
;
1605 else scaleY
= h
/height
;
1607 wxNode
*node
= m_attachmentPoints
.First();
1610 wxAttachmentPoint
*point
= (wxAttachmentPoint
*)node
->Data();
1611 point
->m_x
= (double)(point
->m_x
* scaleX
);
1612 point
->m_y
= (double)(point
->m_y
* scaleY
);
1613 node
= node
->Next();
1617 // Add line FROM this object
1618 void wxShape::AddLine(wxLineShape
*line
, wxShape
*other
,
1619 int attachFrom
, int attachTo
,
1620 // The line ordering
1621 int positionFrom
, int positionTo
)
1623 if (positionFrom
== -1)
1625 if (!m_lines
.Member(line
))
1626 m_lines
.Append(line
);
1630 // Don't preserve old ordering if we have new ordering instructions
1631 m_lines
.DeleteObject(line
);
1632 if (positionFrom
< m_lines
.Number())
1634 wxNode
* node
= m_lines
.Nth(positionFrom
);
1635 m_lines
.Insert(node
, line
);
1638 m_lines
.Append(line
);
1641 if (positionTo
== -1)
1643 if (!other
->m_lines
.Member(line
))
1644 other
->m_lines
.Append(line
);
1648 // Don't preserve old ordering if we have new ordering instructions
1649 other
->m_lines
.DeleteObject(line
);
1650 if (positionTo
< other
->m_lines
.Number())
1652 wxNode
* node
= other
->m_lines
.Nth(positionTo
);
1653 other
->m_lines
.Insert(node
, line
);
1656 other
->m_lines
.Append(line
);
1659 // Wrong: doesn't preserve ordering of shape already linked
1660 m_lines
.DeleteObject(line
);
1661 other
->m_lines
.DeleteObject(line
);
1663 if (positionFrom
== -1)
1664 m_lines
.Append(line
);
1667 if (positionFrom
< m_lines
.Number())
1669 wxNode
* node
= m_lines
.Nth(positionFrom
);
1670 m_lines
.Insert(node
, line
);
1673 m_lines
.Append(line
);
1676 if (positionTo
== -1)
1677 other
->m_lines
.Append(line
);
1680 if (positionTo
< other
->m_lines
.Number())
1682 wxNode
* node
= other
->m_lines
.Nth(positionTo
);
1683 other
->m_lines
.Insert(node
, line
);
1686 other
->m_lines
.Append(line
);
1690 line
->SetFrom(this);
1692 line
->SetAttachments(attachFrom
, attachTo
);
1695 void wxShape::RemoveLine(wxLineShape
*line
)
1697 if (line
->GetFrom() == this)
1698 line
->GetTo()->m_lines
.DeleteObject(line
);
1700 line
->GetFrom()->m_lines
.DeleteObject(line
);
1702 m_lines
.DeleteObject(line
);
1706 void wxShape::WriteAttributes(wxExpr
*clause
)
1708 clause
->AddAttributeValueString("type", GetClassInfo()->GetClassName());
1709 clause
->AddAttributeValue("id", m_id
);
1713 int penWidth
= m_pen
->GetWidth();
1714 int penStyle
= m_pen
->GetStyle();
1716 clause
->AddAttributeValue("pen_width", (long)penWidth
);
1717 if (penStyle
!= wxSOLID
)
1718 clause
->AddAttributeValue("pen_style", (long)penStyle
);
1720 wxString penColour
= wxTheColourDatabase
->FindName(m_pen
->GetColour());
1721 if (penColour
== "")
1723 wxString
hex(oglColourToHex(m_pen
->GetColour()));
1724 hex
= wxString("#") + hex
;
1725 clause
->AddAttributeValueString("pen_colour", hex
);
1727 else if (penColour
!= "BLACK")
1728 clause
->AddAttributeValueString("pen_colour", penColour
);
1733 wxString brushColour
= wxTheColourDatabase
->FindName(m_brush
->GetColour());
1735 if (brushColour
== "")
1737 wxString
hex(oglColourToHex(m_brush
->GetColour()));
1738 hex
= wxString("#") + hex
;
1739 clause
->AddAttributeValueString("brush_colour", hex
);
1741 else if (brushColour
!= "WHITE")
1742 clause
->AddAttributeValueString("brush_colour", brushColour
);
1744 if (m_brush
->GetStyle() != wxSOLID
)
1745 clause
->AddAttributeValue("brush_style", (long)m_brush
->GetStyle());
1750 int n_lines
= m_lines
.Number();
1753 wxExpr
*list
= new wxExpr(wxExprList
);
1754 wxNode
*node
= m_lines
.First();
1757 wxShape
*line
= (wxShape
*)node
->Data();
1758 wxExpr
*id_expr
= new wxExpr(line
->GetId());
1759 list
->Append(id_expr
);
1760 node
= node
->Next();
1762 clause
->AddAttributeValue("arcs", list
);
1765 // Miscellaneous members
1766 if (m_attachmentMode
!= 0)
1767 clause
->AddAttributeValue("use_attachments", (long)m_attachmentMode
);
1768 if (m_sensitivity
!= OP_ALL
)
1769 clause
->AddAttributeValue("sensitivity", (long)m_sensitivity
);
1770 if (!m_spaceAttachments
)
1771 clause
->AddAttributeValue("space_attachments", (long)m_spaceAttachments
);
1773 clause
->AddAttributeValue("fixed_width", (long)m_fixedWidth
);
1775 clause
->AddAttributeValue("fixed_height", (long)m_fixedHeight
);
1776 if (m_shadowMode
!= SHADOW_NONE
)
1777 clause
->AddAttributeValue("shadow_mode", (long)m_shadowMode
);
1778 if (m_centreResize
!= TRUE
)
1779 clause
->AddAttributeValue("centre_resize", (long)0);
1780 clause
->AddAttributeValue("maintain_aspect_ratio", (long) m_maintainAspectRatio
);
1781 if (m_highlighted
!= FALSE
)
1782 clause
->AddAttributeValue("hilite", (long)m_highlighted
);
1784 if (m_parent
) // For composite objects
1785 clause
->AddAttributeValue("parent", (long)m_parent
->GetId());
1787 if (m_rotation
!= 0.0)
1788 clause
->AddAttributeValue("rotation", m_rotation
);
1790 if (!this->IsKindOf(CLASSINFO(wxLineShape
)))
1792 clause
->AddAttributeValue("neck_length", (long) m_branchNeckLength
);
1793 clause
->AddAttributeValue("stem_length", (long) m_branchStemLength
);
1794 clause
->AddAttributeValue("branch_spacing", (long) m_branchSpacing
);
1795 clause
->AddAttributeValue("branch_style", (long) m_branchStyle
);
1798 // Write user-defined attachment points, if any
1799 if (m_attachmentPoints
.Number() > 0)
1801 wxExpr
*attachmentList
= new wxExpr(wxExprList
);
1802 wxNode
*node
= m_attachmentPoints
.First();
1805 wxAttachmentPoint
*point
= (wxAttachmentPoint
*)node
->Data();
1806 wxExpr
*pointExpr
= new wxExpr(wxExprList
);
1807 pointExpr
->Append(new wxExpr((long)point
->m_id
));
1808 pointExpr
->Append(new wxExpr(point
->m_x
));
1809 pointExpr
->Append(new wxExpr(point
->m_y
));
1810 attachmentList
->Append(pointExpr
);
1811 node
= node
->Next();
1813 clause
->AddAttributeValue("user_attachments", attachmentList
);
1816 // Write text regions
1817 WriteRegions(clause
);
1820 void wxShape::WriteRegions(wxExpr
*clause
)
1822 // Output regions as region1 = (...), region2 = (...), etc
1823 // and formatted text as text1 = (...), text2 = (...) etc.
1825 char regionNameBuf
[20];
1826 char textNameBuf
[20];
1827 wxNode
*node
= m_regions
.First();
1830 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
1831 sprintf(regionNameBuf
, "region%d", regionNo
);
1832 sprintf(textNameBuf
, "text%d", regionNo
);
1834 // Original text and region attributes:
1835 // region1 = (regionName regionText x y width height minWidth minHeight proportionX proportionY
1836 // formatMode fontSize fontFamily fontStyle fontWeight textColour)
1837 wxExpr
*regionExpr
= new wxExpr(wxExprList
);
1838 regionExpr
->Append(new wxExpr(wxExprString
, region
->m_regionName
));
1839 regionExpr
->Append(new wxExpr(wxExprString
, region
->m_regionText
));
1841 regionExpr
->Append(new wxExpr(region
->m_x
));
1842 regionExpr
->Append(new wxExpr(region
->m_y
));
1843 regionExpr
->Append(new wxExpr(region
->GetWidth()));
1844 regionExpr
->Append(new wxExpr(region
->GetHeight()));
1846 regionExpr
->Append(new wxExpr(region
->m_minWidth
));
1847 regionExpr
->Append(new wxExpr(region
->m_minHeight
));
1848 regionExpr
->Append(new wxExpr(region
->m_regionProportionX
));
1849 regionExpr
->Append(new wxExpr(region
->m_regionProportionY
));
1851 regionExpr
->Append(new wxExpr((long)region
->m_formatMode
));
1853 regionExpr
->Append(new wxExpr((long)(region
->m_font
? region
->m_font
->GetPointSize() : 10)));
1854 regionExpr
->Append(new wxExpr((long)(region
->m_font
? region
->m_font
->GetFamily() : wxDEFAULT
)));
1855 regionExpr
->Append(new wxExpr((long)(region
->m_font
? region
->m_font
->GetStyle() : wxDEFAULT
)));
1856 regionExpr
->Append(new wxExpr((long)(region
->m_font
? region
->m_font
->GetWeight() : wxNORMAL
)));
1857 regionExpr
->Append(new wxExpr(wxExprString
, region
->m_textColour
));
1859 // New members for pen colour/style
1860 regionExpr
->Append(new wxExpr(wxExprString
, region
->m_penColour
));
1861 regionExpr
->Append(new wxExpr((long)region
->m_penStyle
));
1864 // text1 = ((x y string) (x y string) ...)
1865 wxExpr
*textExpr
= new wxExpr(wxExprList
);
1867 wxNode
*textNode
= region
->m_formattedText
.First();
1870 wxShapeTextLine
*line
= (wxShapeTextLine
*)textNode
->Data();
1871 wxExpr
*list2
= new wxExpr(wxExprList
);
1872 list2
->Append(new wxExpr(line
->GetX()));
1873 list2
->Append(new wxExpr(line
->GetY()));
1874 list2
->Append(new wxExpr(wxExprString
, line
->GetText()));
1875 textExpr
->Append(list2
);
1876 textNode
= textNode
->Next();
1879 // Now add both attributes to the clause
1880 clause
->AddAttributeValue(regionNameBuf
, regionExpr
);
1881 clause
->AddAttributeValue(textNameBuf
, textExpr
);
1883 node
= node
->Next();
1888 void wxShape::ReadAttributes(wxExpr
*clause
)
1890 clause
->GetAttributeValue("id", m_id
);
1893 clause
->GetAttributeValue("x", m_xpos
);
1894 clause
->GetAttributeValue("y", m_ypos
);
1896 // Input text strings (FOR COMPATIBILITY WITH OLD FILES ONLY. SEE REGION CODE BELOW.)
1898 wxExpr
*strings
= clause
->AttributeValue("text");
1899 if (strings
&& strings
->Type() == wxExprList
)
1901 m_formatted
= TRUE
; // Assume text is formatted unless we prove otherwise
1902 wxExpr
*node
= strings
->value
.first
;
1905 wxExpr
*string_expr
= node
;
1908 wxString
the_string("");
1910 // string_expr can either be a string, or a list of
1911 // 3 elements: x, y, and string.
1912 if (string_expr
->Type() == wxExprString
)
1914 the_string
= string_expr
->StringValue();
1915 m_formatted
= FALSE
;
1917 else if (string_expr
->Type() == wxExprList
)
1919 wxExpr
*first
= string_expr
->value
.first
;
1920 wxExpr
*second
= first
? first
->next
: (wxExpr
*) NULL
;
1921 wxExpr
*third
= second
? second
->next
: (wxExpr
*) NULL
;
1923 if (first
&& second
&& third
&&
1924 (first
->Type() == wxExprReal
|| first
->Type() == wxExprInteger
) &&
1925 (second
->Type() == wxExprReal
|| second
->Type() == wxExprInteger
) &&
1926 third
->Type() == wxExprString
)
1928 if (first
->Type() == wxExprReal
)
1929 the_x
= first
->RealValue();
1930 else the_x
= (double)first
->IntegerValue();
1932 if (second
->Type() == wxExprReal
)
1933 the_y
= second
->RealValue();
1934 else the_y
= (double)second
->IntegerValue();
1936 the_string
= third
->StringValue();
1939 wxShapeTextLine
*line
=
1940 new wxShapeTextLine(the_x
, the_y
, (char*) (const char*) the_string
);
1941 m_text
.Append(line
);
1947 wxString pen_string
= "";
1948 wxString brush_string
= "";
1950 int pen_style
= wxSOLID
;
1951 int brush_style
= wxSOLID
;
1952 m_attachmentMode
= ATTACHMENT_MODE_NONE
;
1954 clause
->GetAttributeValue("pen_colour", pen_string
);
1955 clause
->GetAttributeValue("text_colour", m_textColourName
);
1957 SetTextColour(m_textColourName
);
1959 clause
->GetAttributeValue("region_name", m_regionName
);
1961 clause
->GetAttributeValue("brush_colour", brush_string
);
1962 clause
->GetAttributeValue("pen_width", pen_width
);
1963 clause
->GetAttributeValue("pen_style", pen_style
);
1964 clause
->GetAttributeValue("brush_style", brush_style
);
1966 int iVal
= (int) m_attachmentMode
;
1967 clause
->GetAttributeValue("use_attachments", iVal
);
1968 m_attachmentMode
= iVal
;
1970 clause
->GetAttributeValue("sensitivity", m_sensitivity
);
1972 iVal
= (int) m_spaceAttachments
;
1973 clause
->GetAttributeValue("space_attachments", iVal
);
1974 m_spaceAttachments
= (iVal
!= 0);
1976 iVal
= (int) m_fixedWidth
;
1977 clause
->GetAttributeValue("fixed_width", iVal
);
1978 m_fixedWidth
= (iVal
!= 0);
1980 iVal
= (int) m_fixedHeight
;
1981 clause
->GetAttributeValue("fixed_height", iVal
);
1982 m_fixedHeight
= (iVal
!= 0);
1984 clause
->GetAttributeValue("format_mode", m_formatMode
);
1985 clause
->GetAttributeValue("shadow_mode", m_shadowMode
);
1987 iVal
= m_branchNeckLength
;
1988 clause
->GetAttributeValue("neck_length", iVal
);
1989 m_branchNeckLength
= iVal
;
1991 iVal
= m_branchStemLength
;
1992 clause
->GetAttributeValue("stem_length", iVal
);
1993 m_branchStemLength
= iVal
;
1995 iVal
= m_branchSpacing
;
1996 clause
->GetAttributeValue("branch_spacing", iVal
);
1997 m_branchSpacing
= iVal
;
1999 clause
->GetAttributeValue("branch_style", m_branchStyle
);
2001 iVal
= (int) m_centreResize
;
2002 clause
->GetAttributeValue("centre_resize", iVal
);
2003 m_centreResize
= (iVal
!= 0);
2005 iVal
= (int) m_maintainAspectRatio
;
2006 clause
->GetAttributeValue("maintain_aspect_ratio", iVal
);
2007 m_maintainAspectRatio
= (iVal
!= 0);
2009 iVal
= (int) m_highlighted
;
2010 clause
->GetAttributeValue("hilite", iVal
);
2011 m_highlighted
= (iVal
!= 0);
2013 clause
->GetAttributeValue("rotation", m_rotation
);
2015 if (pen_string
== "")
2016 pen_string
= "BLACK";
2017 if (brush_string
== "")
2018 brush_string
= "WHITE";
2020 if (pen_string
.GetChar(0) == '#')
2022 wxColour
col(oglHexToColour(pen_string
.After('#')));
2023 m_pen
= wxThePenList
->FindOrCreatePen(col
, pen_width
, pen_style
);
2026 m_pen
= wxThePenList
->FindOrCreatePen(pen_string
, pen_width
, pen_style
);
2029 m_pen
= wxBLACK_PEN
;
2031 if (brush_string
.GetChar(0) == '#')
2033 wxColour
col(oglHexToColour(brush_string
.After('#')));
2034 m_brush
= wxTheBrushList
->FindOrCreateBrush(col
, brush_style
);
2037 m_brush
= wxTheBrushList
->FindOrCreateBrush(brush_string
, brush_style
);
2040 m_brush
= wxWHITE_BRUSH
;
2042 int point_size
= 10;
2043 clause
->GetAttributeValue("point_size", point_size
);
2044 SetFont(oglMatchFont(point_size
));
2046 // Read user-defined attachment points, if any
2047 wxExpr
*attachmentList
= clause
->AttributeValue("user_attachments");
2050 wxExpr
*pointExpr
= attachmentList
->GetFirst();
2053 wxExpr
*idExpr
= pointExpr
->Nth(0);
2054 wxExpr
*xExpr
= pointExpr
->Nth(1);
2055 wxExpr
*yExpr
= pointExpr
->Nth(2);
2056 if (idExpr
&& xExpr
&& yExpr
)
2058 wxAttachmentPoint
*point
= new wxAttachmentPoint
;
2059 point
->m_id
= (int)idExpr
->IntegerValue();
2060 point
->m_x
= xExpr
->RealValue();
2061 point
->m_y
= yExpr
->RealValue();
2062 m_attachmentPoints
.Append((wxObject
*)point
);
2064 pointExpr
= pointExpr
->GetNext();
2068 // Read text regions
2069 ReadRegions(clause
);
2072 void wxShape::ReadRegions(wxExpr
*clause
)
2076 // region1 = (regionName regionText x y width height minWidth minHeight proportionX proportionY
2077 // formatMode fontSize fontFamily fontStyle fontWeight textColour)
2079 char regionNameBuf
[20];
2080 char textNameBuf
[20];
2082 wxExpr
*regionExpr
= NULL
;
2083 wxExpr
*textExpr
= NULL
;
2084 sprintf(regionNameBuf
, "region%d", regionNo
);
2085 sprintf(textNameBuf
, "text%d", regionNo
);
2087 m_formatted
= TRUE
; // Assume text is formatted unless we prove otherwise
2089 while ((regionExpr
= clause
->AttributeValue(regionNameBuf
)))
2092 * Get the region information
2096 wxString
regionName("");
2097 wxString
regionText("");
2101 double height
= 0.0;
2102 double minWidth
= 5.0;
2103 double minHeight
= 5.0;
2104 double m_regionProportionX
= -1.0;
2105 double m_regionProportionY
= -1.0;
2106 int formatMode
= FORMAT_NONE
;
2108 int fontFamily
= wxSWISS
;
2109 int fontStyle
= wxNORMAL
;
2110 int fontWeight
= wxNORMAL
;
2111 wxString
regionTextColour("");
2112 wxString
penColour("");
2113 int penStyle
= wxSOLID
;
2115 if (regionExpr
->Type() == wxExprList
)
2117 wxExpr
*nameExpr
= regionExpr
->Nth(0);
2118 wxExpr
*textExpr
= regionExpr
->Nth(1);
2119 wxExpr
*xExpr
= regionExpr
->Nth(2);
2120 wxExpr
*yExpr
= regionExpr
->Nth(3);
2121 wxExpr
*widthExpr
= regionExpr
->Nth(4);
2122 wxExpr
*heightExpr
= regionExpr
->Nth(5);
2123 wxExpr
*minWidthExpr
= regionExpr
->Nth(6);
2124 wxExpr
*minHeightExpr
= regionExpr
->Nth(7);
2125 wxExpr
*propXExpr
= regionExpr
->Nth(8);
2126 wxExpr
*propYExpr
= regionExpr
->Nth(9);
2127 wxExpr
*formatExpr
= regionExpr
->Nth(10);
2128 wxExpr
*sizeExpr
= regionExpr
->Nth(11);
2129 wxExpr
*familyExpr
= regionExpr
->Nth(12);
2130 wxExpr
*styleExpr
= regionExpr
->Nth(13);
2131 wxExpr
*weightExpr
= regionExpr
->Nth(14);
2132 wxExpr
*colourExpr
= regionExpr
->Nth(15);
2133 wxExpr
*penColourExpr
= regionExpr
->Nth(16);
2134 wxExpr
*penStyleExpr
= regionExpr
->Nth(17);
2136 regionName
= nameExpr
->StringValue();
2137 regionText
= textExpr
->StringValue();
2139 x
= xExpr
->RealValue();
2140 y
= yExpr
->RealValue();
2142 width
= widthExpr
->RealValue();
2143 height
= heightExpr
->RealValue();
2145 minWidth
= minWidthExpr
->RealValue();
2146 minHeight
= minHeightExpr
->RealValue();
2148 m_regionProportionX
= propXExpr
->RealValue();
2149 m_regionProportionY
= propYExpr
->RealValue();
2151 formatMode
= (int) formatExpr
->IntegerValue();
2152 fontSize
= (int)sizeExpr
->IntegerValue();
2153 fontFamily
= (int)familyExpr
->IntegerValue();
2154 fontStyle
= (int)styleExpr
->IntegerValue();
2155 fontWeight
= (int)weightExpr
->IntegerValue();
2159 regionTextColour
= colourExpr
->StringValue();
2162 regionTextColour
= "BLACK";
2165 penColour
= penColourExpr
->StringValue();
2167 penStyle
= (int)penStyleExpr
->IntegerValue();
2169 wxFont
*font
= wxTheFontList
->FindOrCreateFont(fontSize
, fontFamily
, fontStyle
, fontWeight
);
2171 wxShapeRegion
*region
= new wxShapeRegion
;
2172 region
->SetProportions(m_regionProportionX
, m_regionProportionY
);
2173 region
->SetFont(font
);
2174 region
->SetSize(width
, height
);
2175 region
->SetPosition(x
, y
);
2176 region
->SetMinSize(minWidth
, minHeight
);
2177 region
->SetFormatMode(formatMode
);
2178 region
->SetPenStyle(penStyle
);
2179 if (penColour
!= "")
2180 region
->SetPenColour(penColour
);
2182 region
->m_textColour
= regionTextColour
;
2183 region
->m_regionText
= regionText
;
2184 region
->m_regionName
= regionName
;
2186 m_regions
.Append(region
);
2189 * Get the formatted text strings
2192 textExpr
= clause
->AttributeValue(textNameBuf
);
2193 if (textExpr
&& (textExpr
->Type() == wxExprList
))
2195 wxExpr
*node
= textExpr
->value
.first
;
2198 wxExpr
*string_expr
= node
;
2201 wxString
the_string("");
2203 // string_expr can either be a string, or a list of
2204 // 3 elements: x, y, and string.
2205 if (string_expr
->Type() == wxExprString
)
2207 the_string
= string_expr
->StringValue();
2208 m_formatted
= FALSE
;
2210 else if (string_expr
->Type() == wxExprList
)
2212 wxExpr
*first
= string_expr
->value
.first
;
2213 wxExpr
*second
= first
? first
->next
: (wxExpr
*) NULL
;
2214 wxExpr
*third
= second
? second
->next
: (wxExpr
*) NULL
;
2216 if (first
&& second
&& third
&&
2217 (first
->Type() == wxExprReal
|| first
->Type() == wxExprInteger
) &&
2218 (second
->Type() == wxExprReal
|| second
->Type() == wxExprInteger
) &&
2219 third
->Type() == wxExprString
)
2221 if (first
->Type() == wxExprReal
)
2222 the_x
= first
->RealValue();
2223 else the_x
= (double)first
->IntegerValue();
2225 if (second
->Type() == wxExprReal
)
2226 the_y
= second
->RealValue();
2227 else the_y
= (double)second
->IntegerValue();
2229 the_string
= third
->StringValue();
2234 wxShapeTextLine
*line
=
2235 new wxShapeTextLine(the_x
, the_y
, (char*) (const char*) the_string
);
2236 region
->m_formattedText
.Append(line
);
2243 sprintf(regionNameBuf
, "region%d", regionNo
);
2244 sprintf(textNameBuf
, "text%d", regionNo
);
2247 // Compatibility: check for no regions (old file).
2248 // Lines and divided rectangles must deal with this compatibility
2249 // theirselves. Composites _may_ not have any regions anyway.
2250 if ((m_regions
.Number() == 0) &&
2251 !this->IsKindOf(CLASSINFO(wxLineShape
)) && !this->IsKindOf(CLASSINFO(wxDividedShape
)) &&
2252 !this->IsKindOf(CLASSINFO(wxCompositeShape
)))
2254 wxShapeRegion
*newRegion
= new wxShapeRegion
;
2255 newRegion
->SetName("0");
2256 m_regions
.Append((wxObject
*)newRegion
);
2257 if (m_text
.Number() > 0)
2259 newRegion
->ClearText();
2260 wxNode
*node
= m_text
.First();
2263 wxShapeTextLine
*textLine
= (wxShapeTextLine
*)node
->Data();
2264 wxNode
*next
= node
->Next();
2265 newRegion
->GetFormattedText().Append((wxObject
*)textLine
);
2275 void wxShape::Copy(wxShape
& copy
)
2278 copy
.m_xpos
= m_xpos
;
2279 copy
.m_ypos
= m_ypos
;
2281 copy
.m_brush
= m_brush
;
2282 copy
.m_textColour
= m_textColour
;
2283 copy
.m_centreResize
= m_centreResize
;
2284 copy
.m_maintainAspectRatio
= m_maintainAspectRatio
;
2285 copy
.m_attachmentMode
= m_attachmentMode
;
2286 copy
.m_spaceAttachments
= m_spaceAttachments
;
2287 copy
.m_highlighted
= m_highlighted
;
2288 copy
.m_rotation
= m_rotation
;
2289 copy
.m_textColourName
= m_textColourName
;
2290 copy
.m_regionName
= m_regionName
;
2292 copy
.m_sensitivity
= m_sensitivity
;
2293 copy
.m_draggable
= m_draggable
;
2294 copy
.m_fixedWidth
= m_fixedWidth
;
2295 copy
.m_fixedHeight
= m_fixedHeight
;
2296 copy
.m_formatMode
= m_formatMode
;
2297 copy
.m_drawHandles
= m_drawHandles
;
2299 copy
.m_visible
= m_visible
;
2300 copy
.m_shadowMode
= m_shadowMode
;
2301 copy
.m_shadowOffsetX
= m_shadowOffsetX
;
2302 copy
.m_shadowOffsetY
= m_shadowOffsetY
;
2303 copy
.m_shadowBrush
= m_shadowBrush
;
2305 copy
.m_branchNeckLength
= m_branchNeckLength
;
2306 copy
.m_branchStemLength
= m_branchStemLength
;
2307 copy
.m_branchSpacing
= m_branchSpacing
;
2309 // Copy text regions
2310 copy
.ClearRegions();
2311 wxNode
*node
= m_regions
.First();
2314 wxShapeRegion
*region
= (wxShapeRegion
*)node
->Data();
2315 wxShapeRegion
*newRegion
= new wxShapeRegion(*region
);
2316 copy
.m_regions
.Append(newRegion
);
2317 node
= node
->Next();
2321 copy
.ClearAttachments();
2322 node
= m_attachmentPoints
.First();
2325 wxAttachmentPoint
*point
= (wxAttachmentPoint
*)node
->Data();
2326 wxAttachmentPoint
*newPoint
= new wxAttachmentPoint
;
2327 newPoint
->m_id
= point
->m_id
;
2328 newPoint
->m_x
= point
->m_x
;
2329 newPoint
->m_y
= point
->m_y
;
2330 copy
.m_attachmentPoints
.Append((wxObject
*)newPoint
);
2331 node
= node
->Next();
2335 copy
.m_lines
.Clear();
2336 node
= m_lines
.First();
2339 wxLineShape
* line
= (wxLineShape
*) node
->Data();
2340 copy
.m_lines
.Append(line
);
2341 node
= node
->Next();
2345 // Create and return a new, fully copied object.
2346 wxShape
*wxShape::CreateNewCopy(bool resetMapping
, bool recompute
)
2349 oglObjectCopyMapping
.Clear();
2351 wxShape
* newObject
= (wxShape
*) GetClassInfo()->CreateObject();
2353 wxASSERT( (newObject
!= NULL
) );
2354 wxASSERT( (newObject
->IsKindOf(CLASSINFO(wxShape
))) );
2358 if (GetEventHandler() != this)
2360 wxShapeEvtHandler
* newHandler
= GetEventHandler()->CreateNewCopy();
2361 newObject
->SetEventHandler(newHandler
);
2362 newObject
->SetPreviousHandler(NULL
);
2363 newHandler
->SetPreviousHandler(newObject
);
2364 newHandler
->SetShape(newObject
);
2368 newObject
->Recompute();
2372 // Does the copying for this object, including copying event
2373 // handler data if any. Calls the virtual Copy function.
2374 void wxShape::CopyWithHandler(wxShape
& copy
)
2378 if (GetEventHandler() != this)
2380 wxASSERT( copy
.GetEventHandler() != NULL
);
2381 wxASSERT( copy
.GetEventHandler() != (©
) );
2382 wxASSERT( GetEventHandler()->GetClassInfo() == copy
.GetEventHandler()->GetClassInfo() );
2383 GetEventHandler()->CopyData(* (copy
.GetEventHandler()));
2388 // Default - make 6 control points
2389 void wxShape::MakeControlPoints()
2391 double maxX
, maxY
, minX
, minY
;
2393 GetBoundingBoxMax(&maxX
, &maxY
);
2394 GetBoundingBoxMin(&minX
, &minY
);
2396 double widthMin
= (double)(minX
+ CONTROL_POINT_SIZE
+ 2);
2397 double heightMin
= (double)(minY
+ CONTROL_POINT_SIZE
+ 2);
2399 // Offsets from main object
2400 double top
= (double)(- (heightMin
/ 2.0));
2401 double bottom
= (double)(heightMin
/ 2.0 + (maxY
- minY
));
2402 double left
= (double)(- (widthMin
/ 2.0));
2403 double right
= (double)(widthMin
/ 2.0 + (maxX
- minX
));
2405 wxControlPoint
*control
= new wxControlPoint(m_canvas
, this, CONTROL_POINT_SIZE
, left
, top
,
2406 CONTROL_POINT_DIAGONAL
);
2407 m_canvas
->AddShape(control
);
2408 m_controlPoints
.Append(control
);
2410 control
= new wxControlPoint(m_canvas
, this, CONTROL_POINT_SIZE
, 0, top
,
2411 CONTROL_POINT_VERTICAL
);
2412 m_canvas
->AddShape(control
);
2413 m_controlPoints
.Append(control
);
2415 control
= new wxControlPoint(m_canvas
, this, CONTROL_POINT_SIZE
, right
, top
,
2416 CONTROL_POINT_DIAGONAL
);
2417 m_canvas
->AddShape(control
);
2418 m_controlPoints
.Append(control
);
2420 control
= new wxControlPoint(m_canvas
, this, CONTROL_POINT_SIZE
, right
, 0,
2421 CONTROL_POINT_HORIZONTAL
);
2422 m_canvas
->AddShape(control
);
2423 m_controlPoints
.Append(control
);
2425 control
= new wxControlPoint(m_canvas
, this, CONTROL_POINT_SIZE
, right
, bottom
,
2426 CONTROL_POINT_DIAGONAL
);
2427 m_canvas
->AddShape(control
);
2428 m_controlPoints
.Append(control
);
2430 control
= new wxControlPoint(m_canvas
, this, CONTROL_POINT_SIZE
, 0, bottom
,
2431 CONTROL_POINT_VERTICAL
);
2432 m_canvas
->AddShape(control
);
2433 m_controlPoints
.Append(control
);
2435 control
= new wxControlPoint(m_canvas
, this, CONTROL_POINT_SIZE
, left
, bottom
,
2436 CONTROL_POINT_DIAGONAL
);
2437 m_canvas
->AddShape(control
);
2438 m_controlPoints
.Append(control
);
2440 control
= new wxControlPoint(m_canvas
, this, CONTROL_POINT_SIZE
, left
, 0,
2441 CONTROL_POINT_HORIZONTAL
);
2442 m_canvas
->AddShape(control
);
2443 m_controlPoints
.Append(control
);
2447 void wxShape::MakeMandatoryControlPoints()
2449 wxNode
*node
= m_children
.First();
2452 wxShape
*child
= (wxShape
*)node
->Data();
2453 child
->MakeMandatoryControlPoints();
2454 node
= node
->Next();
2458 void wxShape::ResetMandatoryControlPoints()
2460 wxNode
*node
= m_children
.First();
2463 wxShape
*child
= (wxShape
*)node
->Data();
2464 child
->ResetMandatoryControlPoints();
2465 node
= node
->Next();
2469 void wxShape::ResetControlPoints()
2471 ResetMandatoryControlPoints();
2473 if (m_controlPoints
.Number() < 1)
2476 double maxX
, maxY
, minX
, minY
;
2478 GetBoundingBoxMax(&maxX
, &maxY
);
2479 GetBoundingBoxMin(&minX
, &minY
);
2481 double widthMin
= (double)(minX
+ CONTROL_POINT_SIZE
+ 2);
2482 double heightMin
= (double)(minY
+ CONTROL_POINT_SIZE
+ 2);
2484 // Offsets from main object
2485 double top
= (double)(- (heightMin
/ 2.0));
2486 double bottom
= (double)(heightMin
/ 2.0 + (maxY
- minY
));
2487 double left
= (double)(- (widthMin
/ 2.0));
2488 double right
= (double)(widthMin
/ 2.0 + (maxX
- minX
));
2490 wxNode
*node
= m_controlPoints
.First();
2491 wxControlPoint
*control
= (wxControlPoint
*)node
->Data();
2492 control
->m_xoffset
= left
; control
->m_yoffset
= top
;
2494 node
= node
->Next(); control
= (wxControlPoint
*)node
->Data();
2495 control
->m_xoffset
= 0; control
->m_yoffset
= top
;
2497 node
= node
->Next(); control
= (wxControlPoint
*)node
->Data();
2498 control
->m_xoffset
= right
; control
->m_yoffset
= top
;
2500 node
= node
->Next(); control
= (wxControlPoint
*)node
->Data();
2501 control
->m_xoffset
= right
; control
->m_yoffset
= 0;
2503 node
= node
->Next(); control
= (wxControlPoint
*)node
->Data();
2504 control
->m_xoffset
= right
; control
->m_yoffset
= bottom
;
2506 node
= node
->Next(); control
= (wxControlPoint
*)node
->Data();
2507 control
->m_xoffset
= 0; control
->m_yoffset
= bottom
;
2509 node
= node
->Next(); control
= (wxControlPoint
*)node
->Data();
2510 control
->m_xoffset
= left
; control
->m_yoffset
= bottom
;
2512 node
= node
->Next(); control
= (wxControlPoint
*)node
->Data();
2513 control
->m_xoffset
= left
; control
->m_yoffset
= 0;
2516 void wxShape::DeleteControlPoints(wxDC
*dc
)
2518 wxNode
*node
= m_controlPoints
.First();
2521 wxControlPoint
*control
= (wxControlPoint
*)node
->Data();
2523 control
->GetEventHandler()->OnErase(*dc
);
2524 m_canvas
->RemoveShape(control
);
2527 node
= m_controlPoints
.First();
2529 // Children of divisions are contained objects,
2531 if (!IsKindOf(CLASSINFO(wxDivisionShape
)))
2533 node
= m_children
.First();
2536 wxShape
*child
= (wxShape
*)node
->Data();
2537 child
->DeleteControlPoints(dc
);
2538 node
= node
->Next();
2543 void wxShape::OnDrawControlPoints(wxDC
& dc
)
2548 dc
.SetBrush(* wxBLACK_BRUSH
);
2549 dc
.SetPen(* wxBLACK_PEN
);
2551 wxNode
*node
= m_controlPoints
.First();
2554 wxControlPoint
*control
= (wxControlPoint
*)node
->Data();
2556 node
= node
->Next();
2558 // Children of divisions are contained objects,
2560 // This test bypasses the type facility for speed
2561 // (critical when drawing)
2562 if (!IsKindOf(CLASSINFO(wxDivisionShape
)))
2564 node
= m_children
.First();
2567 wxShape
*child
= (wxShape
*)node
->Data();
2568 child
->GetEventHandler()->OnDrawControlPoints(dc
);
2569 node
= node
->Next();
2574 void wxShape::OnEraseControlPoints(wxDC
& dc
)
2576 wxNode
*node
= m_controlPoints
.First();
2579 wxControlPoint
*control
= (wxControlPoint
*)node
->Data();
2581 node
= node
->Next();
2583 if (!IsKindOf(CLASSINFO(wxDivisionShape
)))
2585 node
= m_children
.First();
2588 wxShape
*child
= (wxShape
*)node
->Data();
2589 child
->GetEventHandler()->OnEraseControlPoints(dc
);
2590 node
= node
->Next();
2595 void wxShape::Select(bool select
, wxDC
* dc
)
2597 m_selected
= select
;
2600 MakeControlPoints();
2601 // Children of divisions are contained objects,
2603 if (!IsKindOf(CLASSINFO(wxDivisionShape
)))
2605 wxNode
*node
= m_children
.First();
2608 wxShape
*child
= (wxShape
*)node
->Data();
2609 child
->MakeMandatoryControlPoints();
2610 node
= node
->Next();
2614 GetEventHandler()->OnDrawControlPoints(*dc
);
2618 DeleteControlPoints(dc
);
2619 if (!IsKindOf(CLASSINFO(wxDivisionShape
)))
2621 wxNode
*node
= m_children
.First();
2624 wxShape
*child
= (wxShape
*)node
->Data();
2625 child
->DeleteControlPoints(dc
);
2626 node
= node
->Next();
2632 bool wxShape::Selected() const
2637 bool wxShape::AncestorSelected() const
2639 if (m_selected
) return TRUE
;
2643 return GetParent()->AncestorSelected();
2646 int wxShape::GetNumberOfAttachments() const
2648 // Should return the MAXIMUM attachment point id here,
2649 // so higher-level functions can iterate through all attachments,
2650 // even if they're not contiguous.
2651 if (m_attachmentPoints
.Number() == 0)
2656 wxNode
*node
= m_attachmentPoints
.First();
2659 wxAttachmentPoint
*point
= (wxAttachmentPoint
*)node
->Data();
2660 if (point
->m_id
> maxN
)
2662 node
= node
->Next();
2668 bool wxShape::AttachmentIsValid(int attachment
) const
2670 if (m_attachmentPoints
.Number() == 0)
2672 return ((attachment
>= 0) && (attachment
< 4)) ;
2675 wxNode
*node
= m_attachmentPoints
.First();
2678 wxAttachmentPoint
*point
= (wxAttachmentPoint
*)node
->Data();
2679 if (point
->m_id
== attachment
)
2681 node
= node
->Next();
2686 bool wxShape::GetAttachmentPosition(int attachment
, double *x
, double *y
,
2687 int nth
, int no_arcs
, wxLineShape
*line
)
2689 if (m_attachmentMode
== ATTACHMENT_MODE_NONE
)
2691 *x
= m_xpos
; *y
= m_ypos
;
2694 else if (m_attachmentMode
== ATTACHMENT_MODE_BRANCHING
)
2696 wxRealPoint pt
, stemPt
;
2697 GetBranchingAttachmentPoint(attachment
, nth
, pt
, stemPt
);
2702 else if (m_attachmentMode
== ATTACHMENT_MODE_EDGE
)
2704 if (m_attachmentPoints
.Number() > 0)
2706 wxNode
*node
= m_attachmentPoints
.First();
2709 wxAttachmentPoint
*point
= (wxAttachmentPoint
*)node
->Data();
2710 if (point
->m_id
== attachment
)
2712 *x
= (double)(m_xpos
+ point
->m_x
);
2713 *y
= (double)(m_ypos
+ point
->m_y
);
2716 node
= node
->Next();
2718 *x
= m_xpos
; *y
= m_ypos
;
2723 // Assume is rectangular
2725 GetBoundingBoxMax(&w
, &h
);
2726 double top
= (double)(m_ypos
+ h
/2.0);
2727 double bottom
= (double)(m_ypos
- h
/2.0);
2728 double left
= (double)(m_xpos
- w
/2.0);
2729 double right
= (double)(m_xpos
+ w
/2.0);
2731 bool isEnd
= (line
&& line
->IsEnd(this));
2733 int physicalAttachment
= LogicalToPhysicalAttachment(attachment
);
2736 switch (physicalAttachment
)
2740 wxRealPoint pt
= CalcSimpleAttachment(wxRealPoint(left
, bottom
), wxRealPoint(right
, bottom
),
2741 nth
, no_arcs
, line
);
2743 *x
= pt
.x
; *y
= pt
.y
;
2748 wxRealPoint pt
= CalcSimpleAttachment(wxRealPoint(right
, bottom
), wxRealPoint(right
, top
),
2749 nth
, no_arcs
, line
);
2751 *x
= pt
.x
; *y
= pt
.y
;
2756 wxRealPoint pt
= CalcSimpleAttachment(wxRealPoint(left
, top
), wxRealPoint(right
, top
),
2757 nth
, no_arcs
, line
);
2759 *x
= pt
.x
; *y
= pt
.y
;
2764 wxRealPoint pt
= CalcSimpleAttachment(wxRealPoint(left
, bottom
), wxRealPoint(left
, top
),
2765 nth
, no_arcs
, line
);
2767 *x
= pt
.x
; *y
= pt
.y
;
2782 void wxShape::GetBoundingBoxMax(double *w
, double *h
)
2785 GetBoundingBoxMin(&ww
, &hh
);
2786 if (m_shadowMode
!= SHADOW_NONE
)
2788 ww
+= m_shadowOffsetX
;
2789 hh
+= m_shadowOffsetY
;
2795 // Returns TRUE if image is a descendant of this composite
2796 bool wxShape::HasDescendant(wxShape
*image
)
2800 wxNode
*node
= m_children
.First();
2803 wxShape
*child
= (wxShape
*)node
->Data();
2804 bool ans
= child
->HasDescendant(image
);
2807 node
= node
->Next();
2812 // Clears points from a list of wxRealPoints, and clears list
2813 void wxShape::ClearPointList(wxList
& list
)
2815 wxNode
* node
= list
.First();
2818 wxRealPoint
* pt
= (wxRealPoint
*) node
->Data();
2821 node
= node
->Next();
2826 // Assuming the attachment lies along a vertical or horizontal line,
2827 // calculate the position on that point.
2828 wxRealPoint
wxShape::CalcSimpleAttachment(const wxRealPoint
& pt1
, const wxRealPoint
& pt2
,
2829 int nth
, int noArcs
, wxLineShape
* line
)
2831 bool isEnd
= (line
&& line
->IsEnd(this));
2833 // Are we horizontal or vertical?
2834 bool isHorizontal
= (oglRoughlyEqual(pt1
.y
, pt2
.y
) == TRUE
);
2840 wxRealPoint firstPoint
, secondPoint
;
2852 if (m_spaceAttachments
)
2854 if (line
&& (line
->GetAlignmentType(isEnd
) == LINE_ALIGNMENT_TO_NEXT_HANDLE
))
2856 // Align line according to the next handle along
2857 wxRealPoint
*point
= line
->GetNextControlPoint(this);
2858 if (point
->x
< firstPoint
.x
)
2860 else if (point
->x
> secondPoint
.x
)
2866 x
= firstPoint
.x
+ (nth
+ 1)*(secondPoint
.x
- firstPoint
.x
)/(noArcs
+ 1);
2868 else x
= (secondPoint
.x
- firstPoint
.x
)/2.0; // Midpoint
2874 wxASSERT( oglRoughlyEqual(pt1
.x
, pt2
.x
) == TRUE
);
2876 wxRealPoint firstPoint
, secondPoint
;
2888 if (m_spaceAttachments
)
2890 if (line
&& (line
->GetAlignmentType(isEnd
) == LINE_ALIGNMENT_TO_NEXT_HANDLE
))
2892 // Align line according to the next handle along
2893 wxRealPoint
*point
= line
->GetNextControlPoint(this);
2894 if (point
->y
< firstPoint
.y
)
2896 else if (point
->y
> secondPoint
.y
)
2902 y
= firstPoint
.y
+ (nth
+ 1)*(secondPoint
.y
- firstPoint
.y
)/(noArcs
+ 1);
2904 else y
= (secondPoint
.y
- firstPoint
.y
)/2.0; // Midpoint
2909 return wxRealPoint(x
, y
);
2912 // Return the zero-based position in m_lines of line.
2913 int wxShape::GetLinePosition(wxLineShape
* line
)
2916 for (i
= 0; i
< m_lines
.Number(); i
++)
2917 if ((wxLineShape
*) (m_lines
.Nth(i
)->Data()) == line
)
2927 // shoulder1 ->---------<- shoulder2
2929 // <- branching attachment point N-1
2931 // This function gets information about where branching connections go.
2932 // Returns FALSE if there are no lines at this attachment.
2933 bool wxShape::GetBranchingAttachmentInfo(int attachment
, wxRealPoint
& root
, wxRealPoint
& neck
,
2934 wxRealPoint
& shoulder1
, wxRealPoint
& shoulder2
)
2936 int physicalAttachment
= LogicalToPhysicalAttachment(attachment
);
2938 // Number of lines at this attachment.
2939 int lineCount
= GetAttachmentLineCount(attachment
);
2944 int totalBranchLength
= m_branchSpacing
* (lineCount
- 1);
2946 root
= GetBranchingAttachmentRoot(attachment
);
2948 // Assume that we have attachment points 0 to 3: top, right, bottom, left.
2949 switch (physicalAttachment
)
2954 neck
.y
= root
.y
- m_branchNeckLength
;
2956 shoulder1
.x
= root
.x
- (totalBranchLength
/2.0) ;
2957 shoulder2
.x
= root
.x
+ (totalBranchLength
/2.0) ;
2959 shoulder1
.y
= neck
.y
;
2960 shoulder2
.y
= neck
.y
;
2965 neck
.x
= root
.x
+ m_branchNeckLength
;
2968 shoulder1
.x
= neck
.x
;
2969 shoulder2
.x
= neck
.x
;
2971 shoulder1
.y
= neck
.y
- (totalBranchLength
/2.0) ;
2972 shoulder2
.y
= neck
.y
+ (totalBranchLength
/2.0) ;
2978 neck
.y
= root
.y
+ m_branchNeckLength
;
2980 shoulder1
.x
= root
.x
- (totalBranchLength
/2.0) ;
2981 shoulder2
.x
= root
.x
+ (totalBranchLength
/2.0) ;
2983 shoulder1
.y
= neck
.y
;
2984 shoulder2
.y
= neck
.y
;
2989 neck
.x
= root
.x
- m_branchNeckLength
;
2992 shoulder1
.x
= neck
.x
;
2993 shoulder2
.x
= neck
.x
;
2995 shoulder1
.y
= neck
.y
- (totalBranchLength
/2.0) ;
2996 shoulder2
.y
= neck
.y
+ (totalBranchLength
/2.0) ;
3001 wxFAIL_MSG( "Unrecognised attachment point in GetBranchingAttachmentInfo." );
3008 // n is the number of the adjoining line, from 0 to N-1 where N is the number of lines
3009 // at this attachment point.
3010 // Get the attachment point where the arc joins the stem, and also the point where the
3011 // the stem meets the shoulder.
3012 bool wxShape::GetBranchingAttachmentPoint(int attachment
, int n
, wxRealPoint
& pt
, wxRealPoint
& stemPt
)
3014 int physicalAttachment
= LogicalToPhysicalAttachment(attachment
);
3016 wxRealPoint root
, neck
, shoulder1
, shoulder2
;
3017 GetBranchingAttachmentInfo(attachment
, root
, neck
, shoulder1
, shoulder2
);
3019 // Assume that we have attachment points 0 to 3: top, right, bottom, left.
3020 switch (physicalAttachment
)
3024 pt
.y
= neck
.y
- m_branchStemLength
;
3025 pt
.x
= shoulder1
.x
+ n
*m_branchSpacing
;
3033 pt
.y
= neck
.y
+ m_branchStemLength
;
3034 pt
.x
= shoulder1
.x
+ n
*m_branchSpacing
;
3042 pt
.x
= neck
.x
+ m_branchStemLength
;
3043 pt
.y
= shoulder1
.y
+ n
*m_branchSpacing
;
3051 pt
.x
= neck
.x
- m_branchStemLength
;
3052 pt
.y
= shoulder1
.y
+ n
*m_branchSpacing
;
3060 wxFAIL_MSG( "Unrecognised attachment point in GetBranchingAttachmentPoint." );
3068 // Get the number of lines at this attachment position.
3069 int wxShape::GetAttachmentLineCount(int attachment
) const
3072 wxNode
* node
= m_lines
.First();
3075 wxLineShape
* lineShape
= (wxLineShape
*) node
->Data();
3076 if ((lineShape
->GetFrom() == this) && (lineShape
->GetAttachmentFrom() == attachment
))
3078 else if ((lineShape
->GetTo() == this) && (lineShape
->GetAttachmentTo() == attachment
))
3081 node
= node
->Next();
3086 // This function gets the root point at the given attachment.
3087 wxRealPoint
wxShape::GetBranchingAttachmentRoot(int attachment
)
3089 int physicalAttachment
= LogicalToPhysicalAttachment(attachment
);
3093 double width
, height
;
3094 GetBoundingBoxMax(& width
, & height
);
3096 // Assume that we have attachment points 0 to 3: top, right, bottom, left.
3097 switch (physicalAttachment
)
3102 root
.y
= GetY() - height
/2.0;
3107 root
.x
= GetX() + width
/2.0;
3114 root
.y
= GetY() + height
/2.0;
3119 root
.x
= GetX() - width
/2.0;
3125 wxFAIL_MSG( "Unrecognised attachment point in GetBranchingAttachmentRoot." );
3132 // Draw or erase the branches (not the actual arcs though)
3133 void wxShape::OnDrawBranches(wxDC
& dc
, int attachment
, bool erase
)
3135 int count
= GetAttachmentLineCount(attachment
);
3139 wxRealPoint root
, neck
, shoulder1
, shoulder2
;
3140 GetBranchingAttachmentInfo(attachment
, root
, neck
, shoulder1
, shoulder2
);
3144 dc
.SetPen(*wxWHITE_PEN
);
3145 dc
.SetBrush(*wxWHITE_BRUSH
);
3149 dc
.SetPen(*wxBLACK_PEN
);
3150 dc
.SetBrush(*wxBLACK_BRUSH
);
3154 dc
.DrawLine((long) root
.x
, (long) root
.y
, (long) neck
.x
, (long) neck
.y
);
3158 // Draw shoulder-to-shoulder line
3159 dc
.DrawLine((long) shoulder1
.x
, (long) shoulder1
.y
, (long) shoulder2
.x
, (long) shoulder2
.y
);
3161 // Draw all the little branches
3163 for (i
= 0; i
< count
; i
++)
3165 wxRealPoint pt
, stemPt
;
3166 GetBranchingAttachmentPoint(attachment
, i
, pt
, stemPt
);
3167 dc
.DrawLine((long) stemPt
.x
, (long) stemPt
.y
, (long) pt
.x
, (long) pt
.y
);
3169 if ((GetBranchStyle() & BRANCHING_ATTACHMENT_BLOB
) && (count
> 1))
3172 // dc.DrawEllipse((long) (stemPt.x + 0.5 - (blobSize/2.0)), (long) (stemPt.y + 0.5 - (blobSize/2.0)), blobSize, blobSize);
3173 dc
.DrawEllipse((long) (stemPt
.x
- (blobSize
/2.0)), (long) (stemPt
.y
- (blobSize
/2.0)), blobSize
, blobSize
);
3178 // Draw or erase the branches (not the actual arcs though)
3179 void wxShape::OnDrawBranches(wxDC
& dc
, bool erase
)
3181 if (m_attachmentMode
!= ATTACHMENT_MODE_BRANCHING
)
3184 int count
= GetNumberOfAttachments();
3186 for (i
= 0; i
< count
; i
++)
3187 OnDrawBranches(dc
, i
, erase
);
3190 // Only get the attachment position at the _edge_ of the shape, ignoring
3191 // branching mode. This is used e.g. to indicate the edge of interest, not the point
3192 // on the attachment branch.
3193 bool wxShape::GetAttachmentPositionEdge(int attachment
, double *x
, double *y
,
3194 int nth
, int no_arcs
, wxLineShape
*line
)
3196 int oldMode
= m_attachmentMode
;
3198 // Calculate as if to edge, not branch
3199 if (m_attachmentMode
== ATTACHMENT_MODE_BRANCHING
)
3200 m_attachmentMode
= ATTACHMENT_MODE_EDGE
;
3201 bool success
= GetAttachmentPosition(attachment
, x
, y
, nth
, no_arcs
, line
);
3202 m_attachmentMode
= oldMode
;
3207 // Rotate the standard attachment point from physical (0 is always North)
3208 // to logical (0 -> 1 if rotated by 90 degrees)
3209 int wxShape::PhysicalToLogicalAttachment(int physicalAttachment
) const
3211 const double pi
= 3.1415926535897932384626433832795 ;
3213 if (oglRoughlyEqual(GetRotation(), 0.0))
3215 i
= physicalAttachment
;
3217 else if (oglRoughlyEqual(GetRotation(), (pi
/2.0)))
3219 i
= physicalAttachment
- 1;
3221 else if (oglRoughlyEqual(GetRotation(), pi
))
3223 i
= physicalAttachment
- 2;
3225 else if (oglRoughlyEqual(GetRotation(), (3.0*pi
/2.0)))
3227 i
= physicalAttachment
- 3;
3230 // Can't handle -- assume the same.
3231 return physicalAttachment
;
3239 // Rotate the standard attachment point from logical
3240 // to physical (0 is always North)
3241 int wxShape::LogicalToPhysicalAttachment(int logicalAttachment
) const
3243 const double pi
= 3.1415926535897932384626433832795 ;
3245 if (oglRoughlyEqual(GetRotation(), 0.0))
3247 i
= logicalAttachment
;
3249 else if (oglRoughlyEqual(GetRotation(), (pi
/2.0)))
3251 i
= logicalAttachment
+ 1;
3253 else if (oglRoughlyEqual(GetRotation(), pi
))
3255 i
= logicalAttachment
+ 2;
3257 else if (oglRoughlyEqual(GetRotation(), (3.0*pi
/2.0)))
3259 i
= logicalAttachment
+ 3;
3262 // Can't handle -- assume the same.
3263 return logicalAttachment
;
3271 void wxShape::Rotate(double WXUNUSED(x
), double WXUNUSED(y
), double theta
)
3273 const double pi
= 3.1415926535897932384626433832795 ;
3275 if (m_rotation
< 0.0)
3279 else if (m_rotation
> 2*pi
)
3286 wxPen
wxShape::GetBackgroundPen()
3290 wxColour c
= GetCanvas()->GetBackgroundColour();
3291 return wxPen(c
, 1, wxSOLID
);
3293 return * g_oglWhiteBackgroundPen
;
3297 wxBrush
wxShape::GetBackgroundBrush()
3301 wxColour c
= GetCanvas()->GetBackgroundColour();
3302 return wxBrush(c
, wxSOLID
);
3304 return * g_oglWhiteBackgroundBrush
;