Show
Ignore:
Timestamp:
08/15/08 13:25:16 (5 months ago)
Author:
mbensi
Message:

merge with webkit revision 35774

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/BAL/WKAL/Skeletons/Graphics/GraphicsContext.t

    r424 r437  
    197197        void setFillColor(const Color&); 
    198198 
     199 
     200    /** 
     201     * apply stroke pattern 
     202     * @param[in] : pattern 
     203     */ 
     204        void applyStrokePattern(const Pattern&); 
     205 
     206 
     207    /** 
     208     * apply fill pattern 
     209     * @param[in] : pattern 
     210     */ 
     211        void applyFillPattern(const Pattern&); 
     212 
    199213    /** 
    200214     * save context 
     
    908922     * @endcode 
    909923     */ 
    910         BalEventExpose* balExposeEvent() const; 
    911  
    912     /** 
    913      * translate point 
    914      * @param[in] : point 
    915      * @param[out] : point translated 
    916      * @code 
    917      * IntPoint p = gc->translatePoint(p1); 
    918      * @endcode 
    919      */ 
    920         IntPoint translatePoint(const IntPoint&) const; 
     924        BalEventExpose* balExposeEvent() const 
    921925 
    922926    private: 
     
    990994} // namespace WKAL 
    991995 
    992 #endif // GraphicsContex 
     996#endif // GraphicsCont