Files
haiku-beta6/src/apps/stylededit/ColorMenuItem.cpp
T

53 lines
1.1 KiB
C++
Raw Normal View History

/*
* Copyright 2002-2006, Haiku, Inc. All Rights Reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* Mattias Sundblad
* Andrew Bachmann
*/
#include "ColorMenuItem.h"
#include <Message.h>
2015-06-30 13:26:48 -04:00
#include <Rect.h>
2015-06-30 13:26:48 -04:00
ColorMenuItem::ColorMenuItem(const char* label, rgb_color color,
2012-07-25 19:16:11 +02:00
BMessage *message)
2015-06-30 13:26:48 -04:00
:
BMenuItem(label, message, 0, 0),
fItemColor(color)
{
2015-06-30 13:26:48 -04:00
message->AddData("color", B_RGB_COLOR_TYPE, &color, sizeof(rgb_color));
}
void
ColorMenuItem::DrawContent()
{
2012-07-25 19:16:11 +02:00
BMenu* menu = Menu();
if (menu) {
rgb_color menuColor = menu->HighColor();
2015-06-30 13:26:48 -04:00
BRect colorSquare(Frame());
2015-06-30 13:26:48 -04:00
if (colorSquare.Width() > colorSquare.Height()) {
// large button
colorSquare.left += 8;
colorSquare.top += 2;
colorSquare.bottom -= 2;
}
colorSquare.right = colorSquare.left + colorSquare.Height();
if (IsMarked()) {
menu->SetHighColor(ui_color(B_NAVIGATION_BASE_COLOR));
menu->StrokeRect(colorSquare);
}
colorSquare.InsetBy(1, 1);
menu->SetHighColor(fItemColor);
2015-06-30 13:26:48 -04:00
menu->FillRect(colorSquare);
menu->SetHighColor(menuColor);
2015-06-30 13:26:48 -04:00
menu->MovePenBy(colorSquare.right + 5.0f, 4.0f);
BMenuItem::DrawContent();
}
}