Changes between Version 2 and Version 3 of CodePaths


Ignore:
Timestamp:
Aug 19, 2009 8:01:15 AM (15 years ago)
Author:
ariya@webkit.org
Comment:

about widget painting

Legend:

Unmodified
Added
Removed
Modified
  • CodePaths

    v2 v3  
    2727  ResourceLoader::didReceiveData(ResourceHandle*, const char* data, int len, long long received)
    2828}}}
     29
     30== Painting a push button ==
     31
     32{{{
     33  RenderTheme[Gtk,Wx,Qt]::paintButton(RenderObject*, const RenderObject::PaintInfo&, const IntRect&)
     34  RenderTheme::paint(RenderObject*, const RenderObject::PaintInfo&, const IntRect&)
     35  RenderBox::paintBoxDecorations(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     36  RenderBlock::paintObject(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     37  RenderBlock::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     38  InlineBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     39  InlineFlowBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     40  RootInlineBox::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     41  RenderLineBoxList::paint(RenderBoxModelObject* renderer, RenderObject::PaintInfo& paintInfo, int tx, int ty)
     42  RenderBlock::paintContents(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     43  RenderBlock::paintObject(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     44  RenderBlock::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     45  RenderBlock::paintChildren(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     46  RenderBlock::paintContents(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     47  RenderBlock::paintObject(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     48  RenderBlock::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     49  RenderBlock::paintChildren(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     50  RenderBlock::paintContents(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     51  RenderBlock::paintObject(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     52  RenderBlock::paint(RenderObject::PaintInfo& paintInfo, int tx, int ty)
     53  RenderLayer::paintLayer(RenderLayer*, GraphicsContext*, const IntRect& paintDirtyRect,
     54  PaintRestriction paintRestriction, RenderObject* paintingRoot,
     55  RenderObject::OverlapTestRequestMap* overlapTestRequests, PaintLayerFlags paintFlags)
     56  RenderLayer::paint(GraphicsContext* p, const IntRect& damageRect, PaintRestriction paintRestriction, RenderObject *paintingRoot)
     57  FrameView::paintContents(GraphicsContext* p, const IntRect& rect)
     58  ScrollView::paint(GraphicsContext* p, const IntRect& rect)
     59}}}
     60
     61