[prev in list] [next in list] [prev in thread] [next in thread] 

List:       haiku-commits
Subject:    [haiku-commits] [L] Change in haiku[master]: Docs: Document color_which UI colors
From:       Gerrit <review () review ! haiku-os ! org>
Date:       2024-04-30 12:30:34
Message-ID: f840855ad8e7e9528b38bc019a46ab58dc0ea255-HTML () review ! haiku-os ! org
[Download RAW message or body]

From nephele nephele <nep-git@packageloss.eu>:

nephele nephele has uploaded this change for review. ( \
https://review.haiku-os.org/c/haiku/+/7656?usp=email )


Change subject: Docs: Document color_which UI colors
......................................................................

Docs: Document color_which UI colors

Change-Id: Ic8fef097ac6cc616ae962459c42f93109a1833ae
---
M docs/user/interface/InterfaceDefs.dox
1 file changed, 414 insertions(+), 0 deletions(-)



  git pull ssh://git.haiku-os.org:22/haiku refs/changes/56/7656/1

diff --git a/docs/user/interface/InterfaceDefs.dox \
b/docs/user/interface/InterfaceDefs.dox index 74a06f6..9b795ea 100644
--- a/docs/user/interface/InterfaceDefs.dox
+++ b/docs/user/interface/InterfaceDefs.dox
@@ -22,6 +22,411 @@


 /*!
+	\enum color_which {
+	\ingroup interface
+
+	System default colors.
+	If you want to use these make sure to always pick a matching set for your \
foreground and background. +	For example B_PANEL_TEXT_COLOR goes ontop of \
B_PANEL_BACKGROUND_COLOR. +
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_NO_COLOR
+
+	todo: what is this for?
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_PANEL_BACKGROUND_COLOR
+
+	The background color of a panel, a panel in this context is a window background \
that is *not* a document. +	For example the background of preferences/appearence
+
+	use with B_PANEL_TEXT_COLOR
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_PANEL_TEXT_COLOR
+
+	The text color matching B_PANEL_BACKGROUND_COLOR.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_DOCUMENT_BACKGROUND_COLOR
+
+	The background color of a text document.
+	For example the background view of StyledEdit.
+
+	use with B_DOCUMENT_TEXT_COLOR
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_DOCUMENT_TEXT_COLOR
+
+	The text color matching B_DOCUMENT_BACKGROUND_COLOR.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_CONTROL_BACKGROUND_COLOR
+
+	The background of a control.
+	For example a Button.
+
+	use with B_CONTROL_TEXT_COLOR
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_CONTROL_TEXT_COLOR
+
+	The text color matching B_CONTROL_BACKGROUND_COLOR.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_CONTROL_BORDER_COLOR
+
+	The border of a control.
+	For example a Button.
+
+	use with B_CONTROL_BACKGROUND_COLOR
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_CONTROL_HIGHLIGHT_COLOR
+
+	todo: what is this for?
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_CONTROL_MARK_COLOR
+
+	todo: what is this for?
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_NAVIGATION_BASE_COLOR
+
+	todo: what is this for?
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_NAVIGATION_PULSE_COLOR
+
+	todo: what is this for?
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_SHINE_COLOR
+
+	TODO: is this deprecated?
+	\deprecated This should not be used anymore.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_SHADOW_COLOR
+
+	TODO: is this deprecated?
+	\deprecated This should not be used anymore.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_LINK_TEXT_COLOR
+
+	The color of links (urls).
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_LINK_HOVER_COLOR
+
+	The color of a link (url) that is currently hovered by the mouse.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_LINK_VISITED_COLOR
+
+	The color of a link (url) that was visited in the past.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_LINK_ACTIVE_COLOR
+
+	The color of a link (url) that is active.
+	This is a link that is currently beeing clicked, but the user has not yet let go of \
the mouse. +
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_MENU_BACKGROUND_COLOR
+
+	The background color of a menu.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_MENU_SELECTED_BACKGROUND_COLOR
+
+	The background color of selected menu item.
+
+	Relates to B_MENU_BACKGROUND_COLOR
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_MENU_ITEM_TEXT_COLOR
+
+	The text color of a menu item.
+
+	Use with B_MENU_BACKGROUND_COLOR.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_MENU_SELECTED_ITEM_TEXT_COLOR
+
+	The text color of a selected menu item.
+
+	Use with B_MENU_SELECTED_BACKGROUND_COLOR.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_MENU_SELECTED_BORDER_COLOR
+
+	The boreder color of a selected menu item.
+
+	Use with B_MENU_SELECTED_BACKGROUND_COLOR.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_LIST_BACKGROUND_COLOR
+
+	The background color of a list.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_LIST_SELECTED_BACKGROUND_COLOR
+
+	The background color of a selected list item.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_LIST_ITEM_TEXT_COLOR
+
+	The text color of a list item.
+
+	Use with B_LIST_BACKGROUND_COLOR.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_LIST_SELECTED_ITEM_TEXT_COLOR
+
+	The text color of a selected list item.
+
+	Use with B_LIST_SELECTED_BACKGROUND_COLOR.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_SCROLL_BAR_THUMB_COLOR
+
+	The color of the thumb of a scrollbar.
+	This is the part you can drag.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_TOOL_TIP_BACKGROUND_COLOR
+
+	The background color of a tooltip.
+
+	TODO: is this deprecated?
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_TOOL_TIP_TEXT_COLOR
+
+	The text color of a tooltip.
+
+	TODO: is this deprecated?
+
+	Use with B_TOOL_TIP_BACKGROUND_COLOR.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_STATUS_BAR_COLOR
+
+	TODO: what is this for?
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_SUCCESS_COLOR
+
+	TODO: what is this for?
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_SUCCESS_COLOR
+
+	TODO: what is this for?
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_WINDOW_TAB_COLOR
+
+	The background color of the selected window tab.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_WINDOW_TEXT_COLOR
+
+	The text color of the selected window tab.
+
+	Use with B_WINDOW_TAB_COLOR.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_WINDOW_INACTIVE_TAB_COLOR
+
+	The background color of unselected window tabs.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_WINDOW_INACTIVE_TEXT_COLOR
+
+	The text color of inactive window tabs.
+
+	Use with B_WINDOW_INACTIVE_TAB_COLOR.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_WINDOW_BORDER_COLOR
+
+	The border color of the selected window.
+
+	Relates to B_WINDOW_TAB_COLOR.
+
+	\since Haiku R1
+*/
+
+
+/*!
+	\var color_which B_WINDOW_INACTIVE_BORDER_COLOR
+
+	The border color of the unselected windows.
+
+	Relates to B_WINDOW_INACTIVE_TAB_COLOR.
+
+	\since Haiku R1
+*/
+
+
+/*!
 	\enum border_style
 	\ingroup interface


--
To view, visit https://review.haiku-os.org/c/haiku/+/7656?usp=email
To unsubscribe, or for help writing mail filters, visit \
https://review.haiku-os.org/settings

Gerrit-Project: haiku
Gerrit-Branch: master
Gerrit-Change-Id: Ic8fef097ac6cc616ae962459c42f93109a1833ae
Gerrit-Change-Number: 7656
Gerrit-PatchSet: 1
Gerrit-Owner: nephele nephele <nep-git@packageloss.eu>
Gerrit-MessageType: newchange


[Attachment #3 (text/html)]

<p>nephele nephele has uploaded this change for <strong>review</strong>.</p><p><a \
href="https://review.haiku-os.org/c/haiku/+/7656?usp=email">View Change</a></p><pre \
style="font-family: monospace,monospace; white-space: pre-wrap;">Docs: Document \
color_which UI colors<br><br>Change-Id: \
Ic8fef097ac6cc616ae962459c42f93109a1833ae<br>---<br>M \
docs/user/interface/InterfaceDefs.dox<br>1 file changed, 414 insertions(+), 0 \
deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: \
pre-wrap;">git pull ssh://git.haiku-os.org:22/haiku refs/changes/56/7656/1</pre><pre \
style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git \
a/docs/user/interface/InterfaceDefs.dox \
b/docs/user/interface/InterfaceDefs.dox</span><br><span>index 74a06f6..9b795ea \
100644</span><br><span>--- \
a/docs/user/interface/InterfaceDefs.dox</span><br><span>+++ \
b/docs/user/interface/InterfaceDefs.dox</span><br><span>@@ -22,6 +22,411 \
@@</span><br><span> </span><br><span> </span><br><span> /*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\enum color_which {</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\ingroup interface</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+	System default colors.</span><br><span style="color: hsl(120, 100%, \
40%);">+	If you want to use these make sure to always pick a matching set for your \
foreground and background.</span><br><span style="color: hsl(120, 100%, 40%);">+	For \
example B_PANEL_TEXT_COLOR goes ontop of B_PANEL_BACKGROUND_COLOR.</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+	\since Haiku R1</span><br><span style="color: hsl(120, 100%, \
40%);">+*/</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+/*!</span><br><span style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_NO_COLOR</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+	todo: what is this for?</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+	\since Haiku R1</span><br><span style="color: hsl(120, 100%, \
40%);">+*/</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+/*!</span><br><span style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_PANEL_BACKGROUND_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The background color \
of a panel, a panel in this context is a window background that is *not* a \
document.</span><br><span style="color: hsl(120, 100%, 40%);">+	For example the \
background of preferences/appearence</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	use with \
B_PANEL_TEXT_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	\since Haiku \
R1</span><br><span style="color: hsl(120, 100%, 40%);">+*/</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_PANEL_TEXT_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The text color \
matching B_PANEL_BACKGROUND_COLOR.</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	\since Haiku \
R1</span><br><span style="color: hsl(120, 100%, 40%);">+*/</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_DOCUMENT_BACKGROUND_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The background color \
of a text document.</span><br><span style="color: hsl(120, 100%, 40%);">+	For example \
the background view of StyledEdit.</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	use with \
B_DOCUMENT_TEXT_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	\since Haiku \
R1</span><br><span style="color: hsl(120, 100%, 40%);">+*/</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_DOCUMENT_TEXT_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The text color \
matching B_DOCUMENT_BACKGROUND_COLOR.</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	\since Haiku \
R1</span><br><span style="color: hsl(120, 100%, 40%);">+*/</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_CONTROL_BACKGROUND_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The background of a \
control.</span><br><span style="color: hsl(120, 100%, 40%);">+	For example a \
Button.</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+	use with B_CONTROL_TEXT_COLOR</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+	\since Haiku R1</span><br><span style="color: hsl(120, 100%, \
40%);">+*/</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+/*!</span><br><span style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_CONTROL_TEXT_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The text color \
matching B_CONTROL_BACKGROUND_COLOR.</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	\since Haiku \
R1</span><br><span style="color: hsl(120, 100%, 40%);">+*/</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_CONTROL_BORDER_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The border of a \
control.</span><br><span style="color: hsl(120, 100%, 40%);">+	For example a \
Button.</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+	use with \
B_CONTROL_BACKGROUND_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	\since Haiku \
R1</span><br><span style="color: hsl(120, 100%, 40%);">+*/</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_CONTROL_HIGHLIGHT_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	todo: what is this \
for?</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\since Haiku R1</span><br><span style="color: \
hsl(120, 100%, 40%);">+*/</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+/*!</span><br><span style="color: hsl(120, 100%, \
40%);">+	\var color_which B_CONTROL_MARK_COLOR</span><br><span style="color: hsl(120, \
100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	todo: what is \
this for?</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\since Haiku R1</span><br><span style="color: \
hsl(120, 100%, 40%);">+*/</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+/*!</span><br><span style="color: hsl(120, 100%, \
40%);">+	\var color_which B_NAVIGATION_BASE_COLOR</span><br><span style="color: \
hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	todo: \
what is this for?</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	\since Haiku \
R1</span><br><span style="color: hsl(120, 100%, 40%);">+*/</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_NAVIGATION_PULSE_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	todo: what is this \
for?</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\since Haiku R1</span><br><span style="color: \
hsl(120, 100%, 40%);">+*/</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+/*!</span><br><span style="color: hsl(120, 100%, \
40%);">+	\var color_which B_SHINE_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	TODO: is this \
deprecated?</span><br><span style="color: hsl(120, 100%, 40%);">+	\deprecated This \
should not be used anymore.</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	\since Haiku \
R1</span><br><span style="color: hsl(120, 100%, 40%);">+*/</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\var color_which B_SHADOW_COLOR</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+	TODO: is this deprecated?</span><br><span style="color: hsl(120, 100%, \
40%);">+	\deprecated This should not be used anymore.</span><br><span style="color: \
hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	\since \
Haiku R1</span><br><span style="color: hsl(120, 100%, 40%);">+*/</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_LINK_TEXT_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The color of links \
(urls).</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\since Haiku R1</span><br><span style="color: \
hsl(120, 100%, 40%);">+*/</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+/*!</span><br><span style="color: hsl(120, 100%, \
40%);">+	\var color_which B_LINK_HOVER_COLOR</span><br><span style="color: hsl(120, \
100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The color of a \
link (url) that is currently hovered by the mouse.</span><br><span style="color: \
hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	\since \
Haiku R1</span><br><span style="color: hsl(120, 100%, 40%);">+*/</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_LINK_VISITED_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The color of a link \
(url) that was visited in the past.</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	\since Haiku \
R1</span><br><span style="color: hsl(120, 100%, 40%);">+*/</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_LINK_ACTIVE_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The color of a link \
(url) that is active.</span><br><span style="color: hsl(120, 100%, 40%);">+	This is a \
link that is currently beeing clicked, but the user has not yet let go of the \
mouse.</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\since Haiku R1</span><br><span style="color: \
hsl(120, 100%, 40%);">+*/</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+/*!</span><br><span style="color: hsl(120, 100%, \
40%);">+	\var color_which B_MENU_BACKGROUND_COLOR</span><br><span style="color: \
hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The \
background color of a menu.</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	\since Haiku \
R1</span><br><span style="color: hsl(120, 100%, 40%);">+*/</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_MENU_SELECTED_BACKGROUND_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The background color \
of selected menu item.</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	Relates to \
B_MENU_BACKGROUND_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	\since Haiku \
R1</span><br><span style="color: hsl(120, 100%, 40%);">+*/</span><br><span \
style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+/*!</span><br><span \
style="color: hsl(120, 100%, 40%);">+	\var color_which \
B_MENU_ITEM_TEXT_COLOR</span><br><span style="color: hsl(120, 100%, \
40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+	The text color of a \
menu item.</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span \
style="color: hsl(120, 100%, 40%);">+	Use with \

<div style="display:none"> Gerrit-Project: haiku </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-Change-Id: \
Ic8fef097ac6cc616ae962459c42f93109a1833ae </div> <div style="display:none"> \
Gerrit-Change-Number: 7656 </div> <div style="display:none"> Gerrit-PatchSet: 1 \
</div> <div style="display:none"> Gerrit-Owner: nephele nephele \
&lt;nep-git@packageloss.eu&gt; </div> <div style="display:none"> Gerrit-MessageType: \
newchange </div>



[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic