Bug 3829

Summary: GW: Several additions to KWQColor
Product: WebKit Reporter: Eric Seidel (no email) <eric>
Component: New BugsAssignee: Eric Seidel (no email) <eric>
Status: RESOLVED FIXED    
Severity: Enhancement    
Priority: P4    
Version: 420+   
Hardware: Mac   
OS: OS X 10.4   
Bug Depends on:    
Bug Blocks: 3250    
Attachments:
Description Flags
necessary additions to KWQColor
mjs: review-
Per mjs and my talks -- a much larger patch, making cgColor, nsColor free functions. mjs: review+

Description Eric Seidel (no email) 2005-07-02 20:45:49 PDT
This patch includes several additions to KWQColor:

CIColor support (when WebKit is linked against CoreImage)
CIColor *getCIColor() const;

qRed, qGreen, qBlue support
explicit QColor(const QString &) -- performs expected css color input (like KDE does)
void getRgbaF(float *, float *, float *, float *) const; -- matching QT4
Comment 1 Eric Seidel (no email) 2005-07-02 20:46:30 PDT
Created attachment 2768 [details]
necessary additions to KWQColor
Comment 2 Maciej Stachowiak 2005-07-03 01:16:43 PDT
Comment on attachment 2768 [details]
necessary additions to KWQColor

> +bool parseHexColor(const QString &name, QRgb &rgb) {

No need to make this a member function, suggest just making it a vanilla static
function (maybe inline since it is used exactly once).

Also, don't put the open brace on the line with the function prototype (this
occurs elsehwere in the file as well).

I suggest making the CGColor conversion a free function, and moving hte CIColor
conversion out of this file entirely to avoid requiring an SVG_SUPPORT ifdef.
Comment 3 Maciej Stachowiak 2005-07-03 01:43:27 PDT
Comment on attachment 2768 [details]
necessary additions to KWQColor

> +bool parseHexColor(const QString &name, QRgb &rgb) {

No need to make this a member function, suggest just making it a vanilla static
function (maybe inline since it is used exactly once).

Also, don't put the open brace on the line with the function prototype (this
occurs elsehwere in the file as well).

I suggest making the CGColor conversion a free function, and moving hte CIColor
conversion out of this file entirely to avoid requiring an SVG_SUPPORT ifdef.
Comment 4 Eric Seidel (no email) 2005-07-05 02:59:01 PDT
Created attachment 2802 [details]
Per mjs and my talks -- a much larger patch, making cgColor, nsColor free functions.
Comment 5 Maciej Stachowiak 2005-07-07 00:37:07 PDT
Comment on attachment 2802 [details]
Per mjs and my talks -- a much larger patch, making cgColor, nsColor free functions.

r=me