Closed
Bug 115747
Opened 23 years ago
Closed 23 years ago
NS_THEME_TREEVIEW* implementations (Mac)
Categories
(Core Graveyard :: Skinability, enhancement, P1)
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla0.9.9
People
(Reporter: ian, Assigned: mikepinkerton)
References
Details
Attachments
(1 file, 2 obsolete files)
21.95 KB,
patch
|
sfraser_bugs
:
superreview+
|
Details | Diff | Splinter Review |
This covers the implementation of NS_THEME_TREEVIEW, NS_THEME_TREEVIEW_TREEITEM,
NS_THEME_TREEVIEW_TWISTY, NS_THEME_TREEVIEW_LINE, NS_THEME_TREEVIEW_HEADER,
NS_THEME_TREEVIEW_HEADER_CELL and NS_THEME_TREEVIEW_HEADER_SORTARROW for XUL
tree views on Mac.
Reporter | ||
Updated•23 years ago
|
Summary: NS_THEME_TREEVIEW* implementation (Mac) → NS_THEME_TREEVIEW* implementations (Mac)
Assignee | ||
Comment 2•23 years ago
|
||
trees, tabs, twisties.
Assignee | ||
Comment 4•23 years ago
|
||
fix up twisties so that they have an empty eraseproc and don't blit over the
highlight color of a row.
r/sr needed
Attachment #66885 -
Attachment is obsolete: true
Comment 5•23 years ago
|
||
Comment on attachment 66904 [details] [diff] [review]
better twisty drawing
r=sdagley
Attachment #66904 -
Flags: review+
Comment 6•23 years ago
|
||
sr=hyatt
Comment 7•23 years ago
|
||
+static pascal void
+DoNothing(const Rect *bounds, UInt32 eraseData, SInt16 depth, Boolean
isColorDev)
This could be a static method of the class. Minor.
+ nsCAutoString mode;
+ if ( GetAttribute(aFrame, mSortDirectionAtom, mode) )
+ return strlen(mode.get()) > 0;
strlen(mode.get() ? Use !mode.IsEmpty();
+ nsCAutoString mode;
+ if ( GetAttribute(aFrame, mSortDirectionAtom, mode) )
+ return strcmp(mode.get(), "descending") == 0;
mode.Equal()?
+ nsCAutoString mode;
+ if ( GetAttribute(aFrame, mClassAtom, mode) )
+ return strstr(mode.get(), "tab-bottom") != nsnull;
mode.FindMumble?
Deferring to hyatt on the outliner and CSS changes.
Assignee | ||
Comment 8•23 years ago
|
||
Attachment #66904 -
Attachment is obsolete: true
Comment 9•23 years ago
|
||
Comment on attachment 66910 [details] [diff] [review]
address smfr's string comments
sr=sfraser
Attachment #66910 -
Flags: superreview+
Assignee | ||
Comment 10•23 years ago
|
||
landed.
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
Updated•16 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•