X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c1fa2fda3c72886f62def1e650a7306c82e72f2f..ee929bcff4394798c02c0c9bbca6d345eac933c2:/contrib/src/ogl/divided.cpp diff --git a/contrib/src/ogl/divided.cpp b/contrib/src/ogl/divided.cpp index 8bac0783fc..2b16d5749c 100644 --- a/contrib/src/ogl/divided.cpp +++ b/contrib/src/ogl/divided.cpp @@ -24,14 +24,12 @@ #include #endif -#include +#if wxUSE_PROLOGIO +#include +#endif + +#include "wx/ogl/ogl.h" -#include -#include -#include -#include -#include -#include class wxDividedShapeControlPoint: public wxControlPoint { @@ -74,7 +72,7 @@ void wxDividedShape::OnDraw(wxDC& dc) void wxDividedShape::OnDrawContents(wxDC& dc) { - double defaultProportion = (double)(GetRegions().Number() > 0 ? (1.0/((double)(GetRegions().Number()))) : 0.0); + double defaultProportion = (double)(GetRegions().GetCount() > 0 ? (1.0/((double)(GetRegions().GetCount()))) : 0.0); double currentY = (double)(m_ypos - (m_height / 2.0)); double maxY = (double)(m_ypos + (m_height / 2.0)); @@ -104,10 +102,10 @@ void wxDividedShape::OnDrawContents(wxDC& dc) double yMargin = 2; dc.SetBackgroundMode(wxTRANSPARENT); - wxNode *node = GetRegions().First(); + wxNode *node = GetRegions().GetFirst(); while (node) { - wxShapeRegion *region = (wxShapeRegion *)node->Data(); + wxShapeRegion *region = (wxShapeRegion *)node->GetData(); dc.SetFont(* region->GetFont()); dc.SetTextForeground(* region->GetActualColourObject()); @@ -123,7 +121,7 @@ void wxDividedShape::OnDrawContents(wxDC& dc) oglDrawFormattedText(dc, ®ion->m_formattedText, (double)(centreX), (double)(centreY), (double)(m_width-2*xMargin), (double)(actualY - currentY - 2*yMargin), region->m_formatMode); - if ((y <= maxY) && (node->Next())) + if ((y <= maxY) && (node->GetNext())) { wxPen *regionPen = region->GetActualPen(); if (regionPen) @@ -135,7 +133,7 @@ void wxDividedShape::OnDrawContents(wxDC& dc) currentY = actualY; - node = node->Next(); + node = node->GetNext(); } } @@ -149,20 +147,20 @@ void wxDividedShape::SetSize(double w, double h, bool recursive) void wxDividedShape::SetRegionSizes() { - if (GetRegions().Number() == 0) + if (GetRegions().GetCount() == 0) return; - double defaultProportion = (double)(GetRegions().Number() > 0 ? (1.0/((double)(GetRegions().Number()))) : 0.0); + double defaultProportion = (double)(GetRegions().GetCount() > 0 ? (1.0/((double)(GetRegions().GetCount()))) : 0.0); double currentY = (double)(m_ypos - (m_height / 2.0)); double maxY = (double)(m_ypos + (m_height / 2.0)); // double leftX = (double)(m_xpos - (m_width / 2.0)); // double rightX = (double)(m_xpos + (m_width / 2.0)); - wxNode *node = GetRegions().First(); + wxNode *node = GetRegions().GetFirst(); while (node) { - wxShapeRegion *region = (wxShapeRegion *)node->Data(); + wxShapeRegion *region = (wxShapeRegion *)node->GetData(); double proportion = region->m_regionProportionY <= 0.0 ? defaultProportion : region->m_regionProportionY; @@ -175,7 +173,7 @@ void wxDividedShape::SetRegionSizes() region->SetSize(m_width, sizeY); region->SetPosition(0.0, (double)(centreY - m_ypos)); currentY = actualY; - node = node->Next(); + node = node->GetNext(); } } @@ -183,13 +181,13 @@ void wxDividedShape::SetRegionSizes() bool wxDividedShape::GetAttachmentPosition(int attachment, double *x, double *y, int nth, int no_arcs, wxLineShape *line) { - int totalNumberAttachments = (GetRegions().Number() * 2) + 2; + int totalNumberAttachments = (GetRegions().GetCount() * 2) + 2; if ((GetAttachmentMode() == ATTACHMENT_MODE_NONE) || (attachment >= totalNumberAttachments)) { return wxShape::GetAttachmentPosition(attachment, x, y, nth, no_arcs); } - int n = GetRegions().Number(); + int n = GetRegions().GetCount(); bool isEnd = (line && line->IsEnd(this)); double left = (double)(m_xpos - m_width/2.0); @@ -257,10 +255,10 @@ bool wxDividedShape::GetAttachmentPosition(int attachment, double *x, double *y, i = (totalNumberAttachments - attachment - 1); isLeft = TRUE; } - wxNode *node = GetRegions().Nth(i); + wxNode *node = GetRegions().Item(i); if (node) { - wxShapeRegion *region = (wxShapeRegion *)node->Data(); + wxShapeRegion *region = (wxShapeRegion *)node->GetData(); if (isLeft) *x = left; @@ -307,23 +305,23 @@ int wxDividedShape::GetNumberOfAttachments() const { // There are two attachments for each region (left and right), // plus one on the top and one on the bottom. - int n = (GetRegions().Number() * 2) + 2; + int n = (GetRegions().GetCount() * 2) + 2; int maxN = n - 1; - wxNode *node = m_attachmentPoints.First(); + wxNode *node = m_attachmentPoints.GetFirst(); while (node) { - wxAttachmentPoint *point = (wxAttachmentPoint *)node->Data(); + wxAttachmentPoint *point = (wxAttachmentPoint *)node->GetData(); if (point->m_id > maxN) maxN = point->m_id; - node = node->Next(); + node = node->GetNext(); } return maxN + 1; } -bool wxDividedShape::AttachmentIsValid(int attachment) +bool wxDividedShape::AttachmentIsValid(int attachment) const { - int totalNumberAttachments = (GetRegions().Number() * 2) + 2; + int totalNumberAttachments = (GetRegions().GetCount() * 2) + 2; if (attachment >= totalNumberAttachments) { return wxShape::AttachmentIsValid(attachment); @@ -353,18 +351,18 @@ void wxDividedShape::MakeMandatoryControlPoints() double currentY = (double)(GetY() - (m_height / 2.0)); double maxY = (double)(GetY() + (m_height / 2.0)); - wxNode *node = GetRegions().First(); + wxNode *node = GetRegions().GetFirst(); int i = 0; while (node) { - wxShapeRegion *region = (wxShapeRegion *)node->Data(); + wxShapeRegion *region = (wxShapeRegion *)node->GetData(); double proportion = region->m_regionProportionY; double y = currentY + m_height*proportion; double actualY = (double)(maxY < y ? maxY : y); - if (node->Next()) + if (node->GetNext()) { wxDividedShapeControlPoint *controlPoint = new wxDividedShapeControlPoint(m_canvas, this, i, CONTROL_POINT_SIZE, 0.0, (double)(actualY - GetY()), 0); @@ -373,14 +371,14 @@ void wxDividedShape::MakeMandatoryControlPoints() } currentY = actualY; i ++; - node = node->Next(); + node = node->GetNext(); } } void wxDividedShape::ResetControlPoints() { // May only have the region handles, (n - 1) of them. - if (m_controlPoints.Number() > (GetRegions().Number() - 1)) + if (m_controlPoints.GetCount() > (GetRegions().GetCount() - 1)) wxRectangleShape::ResetControlPoints(); ResetMandatoryControlPoints(); @@ -391,15 +389,15 @@ void wxDividedShape::ResetMandatoryControlPoints() double currentY = (double)(GetY() - (m_height / 2.0)); double maxY = (double)(GetY() + (m_height / 2.0)); - wxNode *node = m_controlPoints.First(); + wxNode *node = m_controlPoints.GetFirst(); int i = 0; while (node) { - wxControlPoint *controlPoint = (wxControlPoint *)node->Data(); + wxControlPoint *controlPoint = (wxControlPoint *)node->GetData(); if (controlPoint->IsKindOf(CLASSINFO(wxDividedShapeControlPoint))) { - wxNode *node1 = GetRegions().Nth(i); - wxShapeRegion *region = (wxShapeRegion *)node1->Data(); + wxNode *node1 = GetRegions().Item(i); + wxShapeRegion *region = (wxShapeRegion *)node1->GetData(); double proportion = region->m_regionProportionY; @@ -411,11 +409,11 @@ void wxDividedShape::ResetMandatoryControlPoints() currentY = actualY; i ++; } - node = node->Next(); + node = node->GetNext(); } } -#ifdef PROLOGIO +#if wxUSE_PROLOGIO void wxDividedShape::WriteAttributes(wxExpr *clause) { wxRectangleShape::WriteAttributes(clause); @@ -434,11 +432,11 @@ void wxDividedShape::ReadAttributes(wxExpr *clause) void wxDividedShape::EditRegions() { - wxMessageBox("EditRegions() is unimplemented.", "OGL", wxOK); + wxMessageBox(wxT("EditRegions() is unimplemented."), wxT("OGL"), wxOK); // TODO #if 0 - if (GetRegions().Number() < 2) + if (GetRegions().GetCount() < 2) return; wxBeginBusyCursor(); @@ -446,15 +444,15 @@ void wxDividedShape::EditRegions() GraphicsForm *form = new GraphicsForm("Divided nodes"); // Need an array to store all the style strings, // since they need to be converted to integers - char **styleStrings = new char *[GetRegions().Number()]; - for (int j = 0; j < GetRegions().Number(); j++) + char **styleStrings = new char *[GetRegions().GetCount()]; + for (int j = 0; j < GetRegions().GetCount(); j++) styleStrings[j] = NULL; int i = 0; - wxNode *node = GetRegions().First(); - while (node && node->Next()) + wxNode *node = GetRegions().GetFirst(); + while (node && node->GetNext()) { - wxShapeRegion *region = (wxShapeRegion *)node->Data(); + wxShapeRegion *region = (wxShapeRegion *)node->GetData(); char buf[50]; sprintf(buf, "Region %d", (i+1)); form->Add(wxMakeFormMessage(buf)); @@ -518,9 +516,9 @@ void wxDividedShape::EditRegions() "Dot Dash" , NULL), NULL), NULL, wxVERTICAL, 100)); - node = node->Next(); + node = node->GetNext(); i ++; - if (node && node->Next()) + if (node && node->GetNext()) form->Add(wxMakeFormNewLine()); } wxDialogBox *dialog = new wxDialogBox(m_canvas->GetParent(), "Divided object properties", 10, 10, 500, 500); @@ -538,11 +536,11 @@ void wxDividedShape::EditRegions() dialog->Show(TRUE); - node = GetRegions().First(); + node = GetRegions().GetFirst(); i = 0; while (node) { - wxShapeRegion *region = (wxShapeRegion *)node->Data(); + wxShapeRegion *region = (wxShapeRegion *)node->GetData(); if (styleStrings[i]) { @@ -559,7 +557,7 @@ void wxDividedShape::EditRegions() delete[] styleStrings[i]; } region->m_actualPenObject = NULL; - node = node->Next(); + node = node->GetNext(); i ++; } delete[] styleStrings; @@ -634,11 +632,11 @@ void wxDividedShapeControlPoint::OnEndDragLeft(double x, double y, int keys, int GetCanvas()->PrepareDC(dc); wxDividedShape *dividedObject = (wxDividedShape *)m_shape; - wxNode *node = dividedObject->GetRegions().Nth(regionId); + wxNode *node = dividedObject->GetRegions().Item(regionId); if (!node) return; - wxShapeRegion *thisRegion = (wxShapeRegion *)node->Data(); + wxShapeRegion *thisRegion = (wxShapeRegion *)node->GetData(); wxShapeRegion *nextRegion = NULL; // Region below this one dc.SetLogicalFunction(wxCOPY); @@ -657,10 +655,10 @@ void wxDividedShapeControlPoint::OnEndDragLeft(double x, double y, int keys, int double thisRegionBottom = 0.0; double nextRegionBottom = 0.0; - node = dividedObject->GetRegions().First(); + node = dividedObject->GetRegions().GetFirst(); while (node) { - wxShapeRegion *region = (wxShapeRegion *)node->Data(); + wxShapeRegion *region = (wxShapeRegion *)node->GetData(); double proportion = region->m_regionProportionY; double yy = currentY + (dividedObject->GetHeight()*proportion); @@ -670,8 +668,8 @@ void wxDividedShapeControlPoint::OnEndDragLeft(double x, double y, int keys, int { thisRegionTop = currentY; thisRegionBottom = actualY; - if (node->Next()) - nextRegion = (wxShapeRegion *)node->Next()->Data(); + if (node->GetNext()) + nextRegion = (wxShapeRegion *)node->GetNext()->GetData(); } if (region == nextRegion) { @@ -679,7 +677,7 @@ void wxDividedShapeControlPoint::OnEndDragLeft(double x, double y, int keys, int } currentY = actualY; - node = node->Next(); + node = node->GetNext(); } if (!nextRegion) return; @@ -700,17 +698,17 @@ void wxDividedShapeControlPoint::OnEndDragLeft(double x, double y, int keys, int // Now reformat text int i = 0; - node = dividedObject->GetRegions().First(); + node = dividedObject->GetRegions().GetFirst(); while (node) { - wxShapeRegion *region = (wxShapeRegion *)node->Data(); + wxShapeRegion *region = (wxShapeRegion *)node->GetData(); if (region->GetText()) { wxChar *s = copystring(region->GetText()); dividedObject->FormatText(dc, s, i); delete[] s; } - node = node->Next(); + node = node->GetNext(); i++; } dividedObject->SetRegionSizes();