2006-03-11 00:13:18 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright 2002-2006, Haiku, Inc. All Rights Reserved.
|
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
|
*
|
|
|
|
|
* Authors:
|
|
|
|
|
* Mattias Sundblad
|
|
|
|
|
* Andrew Bachmann
|
|
|
|
|
*/
|
|
|
|
|
|
2002-09-23 23:01:55 +00:00
|
|
|
#include "ColorMenuItem.h"
|
|
|
|
|
|
2007-09-04 03:08:40 +00:00
|
|
|
#include <Message.h>
|
2006-03-11 00:13:18 +00:00
|
|
|
|
2012-07-25 19:16:11 +02:00
|
|
|
ColorMenuItem::ColorMenuItem(const char *label, rgb_color color,
|
|
|
|
|
BMessage *message)
|
2007-09-05 02:47:33 +00:00
|
|
|
: BMenuItem(label, message, 0, 0),
|
|
|
|
|
fItemColor(color)
|
2006-03-11 00:13:18 +00:00
|
|
|
{
|
2002-09-23 23:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
2006-03-11 00:13:18 +00:00
|
|
|
|
|
|
|
|
void
|
|
|
|
|
ColorMenuItem::DrawContent()
|
|
|
|
|
{
|
2012-07-25 19:16:11 +02:00
|
|
|
BMenu* menu = Menu();
|
2007-09-04 03:08:40 +00:00
|
|
|
if (menu) {
|
|
|
|
|
rgb_color menuColor = menu->HighColor();
|
2006-03-11 00:13:18 +00:00
|
|
|
|
2007-09-04 03:08:40 +00:00
|
|
|
menu->SetHighColor(fItemColor);
|
|
|
|
|
BMenuItem::DrawContent();
|
|
|
|
|
menu->SetHighColor(menuColor);
|
|
|
|
|
}
|
2002-09-23 23:01:55 +00:00
|
|
|
}
|