• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/samples/ogl/ogledit/

Lines Matching refs:theShape

134                                bool sel, wxShape *theShape, wxShape *fs, wxShape *ts)
139 shape = theShape;
151 DiagramCommand::DiagramCommand(const wxString& name, int command, DiagramDocument *ddoc, wxBrush *backgroundColour, wxShape *theShape)
156 shape = theShape;
168 DiagramCommand::DiagramCommand(const wxString& name, int command, DiagramDocument *ddoc, const wxString& lab, wxShape *theShape)
173 shape = theShape;
227 wxShape *theShape;
229 theShape = shape; // Saved from undoing the shape
232 theShape = (wxShape *)shapeInfo->CreateObject();
233 theShape->AssignNewIds();
234 theShape->SetEventHandler(new MyEvtHandler(theShape, theShape, wxEmptyString));
235 theShape->SetCentreResize(false);
236 theShape->SetPen(wxBLACK_PEN);
237 theShape->SetBrush(wxCYAN_BRUSH);
239 theShape->SetSize(60, 60);
241 doc->GetDiagram()->AddShape(theShape);
242 theShape->Show(true);
244 wxClientDC dc(theShape->GetCanvas());
245 theShape->GetCanvas()->PrepareDC(dc);
247 theShape->Move(dc, x, y);
249 shape = theShape;
258 wxShape *theShape;
260 theShape = shape; // Saved from undoing the line
263 theShape = (wxShape *)shapeInfo->CreateObject();
264 theShape->AssignNewIds();
265 theShape->SetEventHandler(new MyEvtHandler(theShape, theShape, wxEmptyString));
266 theShape->SetPen(wxBLACK_PEN);
267 theShape->SetBrush(wxRED_BRUSH);
269 wxLineShape *lineShape = (wxLineShape *)theShape;
277 doc->GetDiagram()->AddShape(theShape);
279 fromShape->AddLine((wxLineShape *)theShape, toShape);
281 theShape->Show(true);
283 wxClientDC dc(theShape->GetCanvas());
284 theShape->GetCanvas()->PrepareDC(dc);
291 shape = theShape;