From bc3000ecb6319aae989dc33090614cd77bfae4ff Mon Sep 17 00:00:00 2001 From: Christophe Alexandre Date: Fri, 25 Jul 2008 12:47:08 +0000 Subject: [PATCH] some fixes in the documentation --- hurricane/doc/hviewer/DisplayStyle.dox | 12 ++++++------ hurricane/doc/hviewer/Graphics.dox | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/hurricane/doc/hviewer/DisplayStyle.dox b/hurricane/doc/hviewer/DisplayStyle.dox index 668ef3b4..bec71664 100644 --- a/hurricane/doc/hviewer/DisplayStyle.dox +++ b/hurricane/doc/hviewer/DisplayStyle.dox @@ -46,16 +46,16 @@ * \Return The group owning the DrawingStyle of which key is \e key. */ - /*! \function const QColor& DisplayStyle::getColor(const Name& key) const; - * \Return The QColor associated to the DrawingStyle \e key. + /*! \function const QColor& DisplayStyle::getColor(const Name& key, int darkening) const; + * \Return The QColor associated to the DrawingStyle \e key darkened by a factor \e darkening. */ - /*! \function const QPen& DisplayStyle::getColor(const Name& key) const; - * \Return The QPen associated to the DrawingStyle \e key. + /*! \function const QPen& DisplayStyle::getColor(const Name& key, int darkening) const; + * \Return The QPen associated to the DrawingStyle \e key darkened by a factor \e darkening. */ - /*! \function const QBrush& DisplayStyle::getBrush(const Name& key) const; - * \Return The QBrush associated to the DrawingStyle \e key. + /*! \function const QBrush& DisplayStyle::getBrush(const Name& key, int darkening) const; + * \Return The QBrush associated to the DrawingStyle \e key darkened by a factor \e darkening. */ /*! \function const string& DisplayStyle::getPattern(const Name& key) const; diff --git a/hurricane/doc/hviewer/Graphics.dox b/hurricane/doc/hviewer/Graphics.dox index e3e222ac..82fd0440 100644 --- a/hurricane/doc/hviewer/Graphics.dox +++ b/hurricane/doc/hviewer/Graphics.dox @@ -87,16 +87,16 @@ * \Return The group owning the DrawingStyle of which key is \e key. */ - /*! \function const QColor& Graphics::getColor(const Name& key); - * \Return The QColor associated to the DrawingStyle \e key. + /*! \function const QColor& Graphics::getColor(const Name& key, int darkening=100); + * \Return The QColor associated to the DrawingStyle \e key darkened by a factor \e darkening. */ - /*! \function const QPen& Graphics::getPen(const Name& key); - * \Return The QPen associated to the DrawingStyle \e key. + /*! \function const QPen& Graphics::getPen(const Name& key, int darkening=100); + * \Return The QPen associated to the DrawingStyle \e key darkened by a factor \e darkening. */ - /*! \function const QBrush& Graphics::getBrush(const Name& key); - * \Return The QBrush associated to the DrawingStyle \e key. + /*! \function const QBrush& Graphics::getBrush(const Name& key, int darkening=100); + * \Return The QBrush associated to the DrawingStyle \e key by a factor \e darkening. */ /*! \function const string& Graphics::getPattern(const Name& key);