]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/html/htmltag.h
Updates to Indonesian translations by Rahmat Bambang.
[wxWidgets.git] / interface / wx / html / htmltag.h
index 3745c06d8be9bd6f264ca596613fd92ebef3ae63..cf089c802918986378a08ca8909925572f3e4ec6 100644 (file)
@@ -3,7 +3,7 @@
 // Purpose:     interface of wxHtmlTag
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
@@ -108,6 +108,8 @@ public:
 
         Returns @true on success and @false if @a par is not colour specification or
         if the tag has no such parameter.
+
+        @see ParseAsColour()
     */
     bool GetParamAsColour(const wxString& par, wxColour* clr) const;
 
@@ -148,6 +150,21 @@ public:
     */
     bool HasParam(const wxString& par) const;
 
+    /**
+        Parses the given string as an HTML colour.
+
+        This function recognizes the standard named HTML 4 colours as well as
+        the usual RGB syntax.
+
+        @since 2.9.1
+
+        @see wxColour::Set()
+
+        @return @true if the string was successfully parsed and @a clr was
+            filled with the result or @false otherwise.
+     */
+    static bool ParseAsColour(const wxString& str, wxColour *clr);
+
     //@{
     /**
         This method scans the given parameter. Usage is exactly the same as sscanf's