Changeset 437 for trunk/BAL/WKAL/Skeletons/Graphics/GraphicsContext.t
- Timestamp:
- 08/15/08 13:25:16 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/BAL/WKAL/Skeletons/Graphics/GraphicsContext.t
r424 r437 197 197 void setFillColor(const Color&); 198 198 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 199 213 /** 200 214 * save context … … 908 922 * @endcode 909 923 */ 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 921 925 922 926 private: … … 990 994 } // namespace WKAL 991 995 992 #endif // GraphicsCont ex996 #endif // GraphicsCont
