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

Lines Matching defs:copy

72 // Creates a copy of this event handler.
2256 void wxShape::Copy(wxShape& copy)
2258 copy.m_id = m_id;
2259 copy.m_xpos = m_xpos;
2260 copy.m_ypos = m_ypos;
2261 copy.m_pen = m_pen;
2262 copy.m_brush = m_brush;
2263 copy.m_textColour = m_textColour;
2264 copy.m_centreResize = m_centreResize;
2265 copy.m_maintainAspectRatio = m_maintainAspectRatio;
2266 copy.m_attachmentMode = m_attachmentMode;
2267 copy.m_spaceAttachments = m_spaceAttachments;
2268 copy.m_highlighted = m_highlighted;
2269 copy.m_rotation = m_rotation;
2270 copy.m_textColourName = m_textColourName;
2271 copy.m_regionName = m_regionName;
2273 copy.m_sensitivity = m_sensitivity;
2274 copy.m_draggable = m_draggable;
2275 copy.m_fixedWidth = m_fixedWidth;
2276 copy.m_fixedHeight = m_fixedHeight;
2277 copy.m_formatMode = m_formatMode;
2278 copy.m_drawHandles = m_drawHandles;
2280 copy.m_visible = m_visible;
2281 copy.m_shadowMode = m_shadowMode;
2282 copy.m_shadowOffsetX = m_shadowOffsetX;
2283 copy.m_shadowOffsetY = m_shadowOffsetY;
2284 copy.m_shadowBrush = m_shadowBrush;
2286 copy.m_branchNeckLength = m_branchNeckLength;
2287 copy.m_branchStemLength = m_branchStemLength;
2288 copy.m_branchSpacing = m_branchSpacing;
2291 copy.ClearRegions();
2297 copy.m_regions.Append(newRegion);
2302 copy.ClearAttachments();
2311 copy.m_attachmentPoints.Append((wxObject *)newPoint);
2316 copy.m_lines.Clear();
2321 copy.m_lines.Append(line);
2355 void wxShape::CopyWithHandler(wxShape& copy)
2357 Copy(copy);
2361 wxASSERT( copy.GetEventHandler() != NULL );
2362 wxASSERT( copy.GetEventHandler() != (&copy) );
2363 wxASSERT( GetEventHandler()->GetClassInfo() == copy.GetEventHandler()->GetClassInfo() );
2364 GetEventHandler()->CopyData(* (copy.GetEventHandler()));