X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1fc25a89ac1e6c5208db24bfc0abc8666b791dc6..b02a6dc2b6e10302272af502a12b249681df40d6:/contrib/samples/ogl/studio/doc.cpp?ds=inline diff --git a/contrib/samples/ogl/studio/doc.cpp b/contrib/samples/ogl/studio/doc.cpp index ea8cb82eb7..0516794afd 100644 --- a/contrib/samples/ogl/studio/doc.cpp +++ b/contrib/samples/ogl/studio/doc.cpp @@ -6,7 +6,7 @@ // Created: 12/07/98 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifdef __GNUG__ @@ -14,7 +14,7 @@ #endif // For compilers that support precompilation, includes "wx.h". -#include +#include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop @@ -24,8 +24,6 @@ #include #endif -#include - #include "studio.h" #include "doc.h" #include "view.h" @@ -33,7 +31,7 @@ IMPLEMENT_DYNAMIC_CLASS(csDiagramDocument, wxDocument) -#ifdef _MSC_VER +#ifdef __VISUALC__ #pragma warning(disable:4355) #endif @@ -41,7 +39,7 @@ csDiagramDocument::csDiagramDocument():m_diagram(this) { } -#ifdef _MSC_VER +#ifdef __VISUALC__ #pragma warning(default:4355) #endif @@ -52,57 +50,57 @@ csDiagramDocument::~csDiagramDocument() bool csDiagramDocument::OnCloseDocument() { m_diagram.DeleteAllShapes(); - return TRUE; + return true; } bool csDiagramDocument::OnSaveDocument(const wxString& file) { - if (file == "") - return FALSE; + if (file == wxEmptyString) + return false; if (!m_diagram.SaveFile(file)) { wxString msgTitle; - if (wxTheApp->GetAppName() != "") + if (wxTheApp->GetAppName() != wxEmptyString) msgTitle = wxTheApp->GetAppName(); else - msgTitle = wxString("File error"); + msgTitle = wxString(_T("File error")); - (void)wxMessageBox("Sorry, could not open this file for saving.", msgTitle, wxOK | wxICON_EXCLAMATION, + (void)wxMessageBox(_T("Sorry, could not open this file for saving."), msgTitle, wxOK | wxICON_EXCLAMATION, GetDocumentWindow()); - return FALSE; + return false; } - Modify(FALSE); + Modify(false); SetFilename(file); - return TRUE; + return true; } - + bool csDiagramDocument::OnOpenDocument(const wxString& file) { if (!OnSaveModified()) - return FALSE; + return false; wxString msgTitle; - if (wxTheApp->GetAppName() != "") + if (wxTheApp->GetAppName() != wxEmptyString) msgTitle = wxTheApp->GetAppName(); else - msgTitle = wxString("File error"); + msgTitle = wxString(_T("File error")); m_diagram.DeleteAllShapes(); if (!m_diagram.LoadFile(file)) { - (void)wxMessageBox("Sorry, could not open this file.", msgTitle, wxOK|wxICON_EXCLAMATION, + (void)wxMessageBox(_T("Sorry, could not open this file."), msgTitle, wxOK|wxICON_EXCLAMATION, GetDocumentWindow()); - return FALSE; + return false; } - SetFilename(file, TRUE); - Modify(FALSE); + SetFilename(file, true); + Modify(false); UpdateAllViews(); - return TRUE; + return true; } - + /* * Implementation of drawing command @@ -110,7 +108,7 @@ bool csDiagramDocument::OnOpenDocument(const wxString& file) csDiagramCommand::csDiagramCommand(const wxString& name, csDiagramDocument *doc, csCommandState* onlyState): - wxCommand(TRUE, name) + wxCommand(true, name) { m_doc = doc; @@ -122,12 +120,12 @@ csDiagramCommand::csDiagramCommand(const wxString& name, csDiagramDocument *doc, csDiagramCommand::~csDiagramCommand() { - wxNode* node = m_states.First(); + wxNode* node = m_states.GetFirst(); while (node) { - csCommandState* state = (csCommandState*) node->Data(); + csCommandState* state = (csCommandState*) node->GetData(); delete state; - node = node->Next(); + node = node->GetNext(); } } @@ -149,68 +147,68 @@ void csDiagramCommand::InsertState(csCommandState* state) // Schedule all lines connected to the states to be cut. void csDiagramCommand::RemoveLines() { - wxNode* node = m_states.First(); + wxNode* node = m_states.GetFirst(); while (node) { - csCommandState* state = (csCommandState*) node->Data(); + csCommandState* state = (csCommandState*) node->GetData(); wxShape* shape = state->GetShapeOnCanvas(); wxASSERT( (shape != NULL) ); - wxNode *node1 = shape->GetLines().First(); + wxNode *node1 = shape->GetLines().GetFirst(); while (node1) { - wxLineShape *line = (wxLineShape *)node1->Data(); + wxLineShape *line = (wxLineShape *)node1->GetData(); if (!FindStateByShape(line)) { csCommandState* newState = new csCommandState(ID_CS_CUT, NULL, line); InsertState(newState); } - node1 = node1->Next(); + node1 = node1->GetNext(); } - node = node->Next(); + node = node->GetNext(); } } csCommandState* csDiagramCommand::FindStateByShape(wxShape* shape) { - wxNode* node = m_states.First(); + wxNode* node = m_states.GetFirst(); while (node) { - csCommandState* state = (csCommandState*) node->Data(); + csCommandState* state = (csCommandState*) node->GetData(); if (shape == state->GetShapeOnCanvas() || shape == state->GetSavedState()) return state; - node = node->Next(); + node = node->GetNext(); } return NULL; } bool csDiagramCommand::Do() { - wxNode* node = m_states.First(); + wxNode* node = m_states.GetFirst(); while (node) { - csCommandState* state = (csCommandState*) node->Data(); + csCommandState* state = (csCommandState*) node->GetData(); if (!state->Do()) - return FALSE; - node = node->Next(); + return false; + node = node->GetNext(); } - return TRUE; + return true; } bool csDiagramCommand::Undo() { // Undo in reverse order, so e.g. shapes get added // back before the lines do. - wxNode* node = m_states.Last(); + wxNode* node = m_states.GetLast(); while (node) { - csCommandState* state = (csCommandState*) node->Data(); + csCommandState* state = (csCommandState*) node->GetData(); if (!state->Undo()) - return FALSE; - node = node->Previous(); + return false; + node = node->GetPrevious(); } - return TRUE; + return true; } csCommandState::csCommandState(int cmd, wxShape* savedState, wxShape* shapeOnCanvas) @@ -266,8 +264,8 @@ bool csCommandState::Do() m_linePositionTo = lineTo->GetLinePosition(lineShape); } - m_shapeOnCanvas->Select(FALSE); - ((csDiagramView*) m_doc->GetFirstView())->SelectShape(m_shapeOnCanvas, FALSE); + m_shapeOnCanvas->Select(false); + ((csDiagramView*) m_doc->GetFirstView())->SelectShape(m_shapeOnCanvas, false); m_shapeOnCanvas->Unlink(); @@ -290,7 +288,7 @@ bool csCommandState::Do() lineTo->MoveLinks(dc); } - m_doc->Modify(TRUE); + m_doc->Modify(true); m_doc->UpdateAllViews(); break; } @@ -311,7 +309,7 @@ bool csCommandState::Do() m_savedState = NULL; m_doc->GetDiagram()->AddShape(m_shapeOnCanvas); - m_shapeOnCanvas->Show(TRUE); + m_shapeOnCanvas->Show(true); wxClientDC dc(m_shapeOnCanvas->GetCanvas()); m_shapeOnCanvas->GetCanvas()->PrepareDC(dc); @@ -323,11 +321,11 @@ bool csCommandState::Do() if (m_cmd == ID_CS_ADD_SHAPE_SELECT) { - m_shapeOnCanvas->Select(TRUE, &dc); - ((csDiagramView*) m_doc->GetFirstView())->SelectShape(m_shapeOnCanvas, TRUE); + m_shapeOnCanvas->Select(true, &dc); + ((csDiagramView*) m_doc->GetFirstView())->SelectShape(m_shapeOnCanvas, true); } - m_doc->Modify(TRUE); + m_doc->Modify(true); m_doc->UpdateAllViews(); break; } @@ -350,7 +348,7 @@ bool csCommandState::Do() lineShape->GetFrom()->AddLine(lineShape, lineShape->GetTo(), lineShape->GetAttachmentFrom(), lineShape->GetAttachmentTo()); - lineShape->Show(TRUE); + lineShape->Show(true); wxClientDC dc(lineShape->GetCanvas()); lineShape->GetCanvas()->PrepareDC(dc); @@ -362,11 +360,11 @@ bool csCommandState::Do() if (m_cmd == ID_CS_ADD_LINE_SELECT) { - lineShape->Select(TRUE, &dc); - ((csDiagramView*) m_doc->GetFirstView())->SelectShape(m_shapeOnCanvas, TRUE); + lineShape->Select(true, &dc); + ((csDiagramView*) m_doc->GetFirstView())->SelectShape(m_shapeOnCanvas, true); } - m_doc->Modify(TRUE); + m_doc->Modify(true); m_doc->UpdateAllViews(); break; } @@ -403,7 +401,7 @@ bool csCommandState::Do() bool isSelected = m_shapeOnCanvas->Selected(); if (isSelected) - m_shapeOnCanvas->Select(FALSE, & dc); + m_shapeOnCanvas->Select(false, & dc); if (m_cmd == ID_CS_SIZE || m_cmd == ID_CS_ROTATE_CLOCKWISE || m_cmd == ID_CS_ROTATE_ANTICLOCKWISE || m_cmd == ID_CS_CHANGE_LINE_ORDERING || m_cmd == ID_CS_CHANGE_LINE_ATTACHMENT) @@ -456,11 +454,11 @@ bool csCommandState::Do() m_shapeOnCanvas->SetSize(width, height); m_shapeOnCanvas->Move(dc, m_shapeOnCanvas->GetX(), m_shapeOnCanvas->GetY()); - m_shapeOnCanvas->Show(TRUE); + m_shapeOnCanvas->Show(true); // Recursively redraw links if we have a composite. - if (m_shapeOnCanvas->GetChildren().Number() > 0) - m_shapeOnCanvas->DrawLinks(dc, -1, TRUE); + if (m_shapeOnCanvas->GetChildren().GetCount() > 0) + m_shapeOnCanvas->DrawLinks(dc, -1, true); m_shapeOnCanvas->GetEventHandler()->OnEndSize(width, height); } @@ -476,15 +474,15 @@ bool csCommandState::Do() } if (isSelected) - m_shapeOnCanvas->Select(TRUE, & dc); + m_shapeOnCanvas->Select(true, & dc); - m_doc->Modify(TRUE); + m_doc->Modify(true); m_doc->UpdateAllViews(); break; } } - return TRUE; + return true; } bool csCommandState::Undo() @@ -516,9 +514,9 @@ bool csCommandState::Undo() lineShape->GetTo()->MoveLinks(dc); } - m_shapeOnCanvas->Show(TRUE); + m_shapeOnCanvas->Show(true); - m_doc->Modify(TRUE); + m_doc->Modify(true); m_doc->UpdateAllViews(); break; } @@ -549,8 +547,8 @@ bool csCommandState::Undo() wxClientDC dc(m_shapeOnCanvas->GetCanvas()); m_shapeOnCanvas->GetCanvas()->PrepareDC(dc); - m_shapeOnCanvas->Select(FALSE, &dc); - ((csDiagramView*) m_doc->GetFirstView())->SelectShape(m_shapeOnCanvas, FALSE); + m_shapeOnCanvas->Select(false, &dc); + ((csDiagramView*) m_doc->GetFirstView())->SelectShape(m_shapeOnCanvas, false); m_doc->GetDiagram()->RemoveShape(m_shapeOnCanvas); m_shapeOnCanvas->Unlink(); // Unlinks the line, if it is a line @@ -566,7 +564,7 @@ bool csCommandState::Undo() m_savedState = m_shapeOnCanvas; m_shapeOnCanvas = NULL; - m_doc->Modify(TRUE); + m_doc->Modify(true); m_doc->UpdateAllViews(); break; } @@ -593,6 +591,6 @@ bool csCommandState::Undo() } } - return TRUE; + return true; }