Moved BSeparatorItem`s implementation to its own file. Will split headers later.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10548 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
//
|
//
|
||||||
// File Name: BMenuItem.cpp
|
// File Name: MenuItem.cpp
|
||||||
// Author: Marc Flerackers ([email protected])
|
// Author: Marc Flerackers ([email protected])
|
||||||
// Bill Hayden ([email protected])
|
// Bill Hayden ([email protected])
|
||||||
// Description: Display item for BMenu class
|
// Description: Display item for BMenu class
|
||||||
@@ -611,65 +611,3 @@ void BMenuItem::SetSysTrigger(char ch)
|
|||||||
{
|
{
|
||||||
fSysTrigger = ch;
|
fSysTrigger = ch;
|
||||||
}
|
}
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
BSeparatorItem::BSeparatorItem()
|
|
||||||
: BMenuItem(NULL, NULL, 0, 0)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
BSeparatorItem::BSeparatorItem(BMessage *data)
|
|
||||||
: BMenuItem(data)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
BSeparatorItem::~BSeparatorItem()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
status_t BSeparatorItem::Archive(BMessage *data, bool deep) const
|
|
||||||
{
|
|
||||||
return BMenuItem::Archive(data, deep);
|
|
||||||
}
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
BArchivable *BSeparatorItem::Instantiate(BMessage *data)
|
|
||||||
{
|
|
||||||
if (validate_instantiation(data, "BSeparatorItem"))
|
|
||||||
return new BSeparatorItem(data);
|
|
||||||
else
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
void BSeparatorItem::SetEnabled(bool state)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
void BSeparatorItem::GetContentSize(float *width, float *height)
|
|
||||||
{
|
|
||||||
*width = 2.0f;
|
|
||||||
*height = 8.0f;
|
|
||||||
}
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
void BSeparatorItem::Draw()
|
|
||||||
{
|
|
||||||
BRect bounds = Frame();
|
|
||||||
|
|
||||||
Menu()->SetHighColor(tint_color(ui_color(B_MENU_BACKGROUND_COLOR),
|
|
||||||
B_DARKEN_2_TINT));
|
|
||||||
Menu()->StrokeLine(BPoint(bounds.left + 1.0f, bounds.top + 4.0f),
|
|
||||||
BPoint(bounds.right - 1.0f, bounds.top + 4.0f));
|
|
||||||
Menu()->SetHighColor(tint_color(ui_color(B_MENU_BACKGROUND_COLOR),
|
|
||||||
B_LIGHTEN_2_TINT));
|
|
||||||
Menu()->StrokeLine(BPoint(bounds.left + 1.0f, bounds.top + 5.0f),
|
|
||||||
BPoint(bounds.right - 1.0f, bounds.top + 5.0f));
|
|
||||||
|
|
||||||
Menu()->SetHighColor(0, 0, 0);
|
|
||||||
}
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
void BSeparatorItem::_ReservedSeparatorItem1() {}
|
|
||||||
void BSeparatorItem::_ReservedSeparatorItem2() {}
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
BSeparatorItem &BSeparatorItem::operator=(const BSeparatorItem &)
|
|
||||||
{
|
|
||||||
return *this;
|
|
||||||
}
|
|
||||||
//------------------------------------------------------------------------------
|
|
||||||
|
|||||||
@@ -0,0 +1,108 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// Copyright (c) 2001-2002, OpenBeOS
|
||||||
|
//
|
||||||
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
|
// copy of this software and associated documentation files (the "Software"),
|
||||||
|
// to deal in the Software without restriction, including without limitation
|
||||||
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||||
|
// and/or sell copies of the Software, and to permit persons to whom the
|
||||||
|
// Software is furnished to do so, subject to the following conditions:
|
||||||
|
//
|
||||||
|
// The above copyright notice and this permission notice shall be included in
|
||||||
|
// all copies or substantial portions of the Software.
|
||||||
|
//
|
||||||
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
//
|
||||||
|
// File Name: SeparatorItem.cpp
|
||||||
|
// Author: Marc Flerackers ([email protected])
|
||||||
|
// Bill Hayden ([email protected])
|
||||||
|
// Description: Display separator item for BMenu class
|
||||||
|
//
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
#include <MenuItem.h>
|
||||||
|
#include <Message.h>
|
||||||
|
|
||||||
|
|
||||||
|
BSeparatorItem::BSeparatorItem()
|
||||||
|
: BMenuItem(NULL, NULL, 0, 0)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
BSeparatorItem::BSeparatorItem(BMessage *data)
|
||||||
|
: BMenuItem(data)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
BSeparatorItem::~BSeparatorItem()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
status_t
|
||||||
|
BSeparatorItem::Archive(BMessage *data, bool deep) const
|
||||||
|
{
|
||||||
|
return BMenuItem::Archive(data, deep);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
BArchivable *
|
||||||
|
BSeparatorItem::Instantiate(BMessage *data)
|
||||||
|
{
|
||||||
|
if (validate_instantiation(data, "BSeparatorItem"))
|
||||||
|
return new BSeparatorItem(data);
|
||||||
|
else
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
BSeparatorItem::SetEnabled(bool state)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
BSeparatorItem::GetContentSize(float *width, float *height)
|
||||||
|
{
|
||||||
|
if (width)
|
||||||
|
*width = 2.0f;
|
||||||
|
if (height)
|
||||||
|
*height = 8.0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
BSeparatorItem::Draw()
|
||||||
|
{
|
||||||
|
BRect bounds = Frame();
|
||||||
|
|
||||||
|
Menu()->SetHighColor(tint_color(ui_color(B_MENU_BACKGROUND_COLOR),
|
||||||
|
B_DARKEN_2_TINT));
|
||||||
|
Menu()->StrokeLine(BPoint(bounds.left + 1.0f, bounds.top + 4.0f),
|
||||||
|
BPoint(bounds.right - 1.0f, bounds.top + 4.0f));
|
||||||
|
Menu()->SetHighColor(tint_color(ui_color(B_MENU_BACKGROUND_COLOR),
|
||||||
|
B_LIGHTEN_2_TINT));
|
||||||
|
Menu()->StrokeLine(BPoint(bounds.left + 1.0f, bounds.top + 5.0f),
|
||||||
|
BPoint(bounds.right - 1.0f, bounds.top + 5.0f));
|
||||||
|
|
||||||
|
Menu()->SetHighColor(0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void BSeparatorItem::_ReservedSeparatorItem1() {}
|
||||||
|
void BSeparatorItem::_ReservedSeparatorItem2() {}
|
||||||
|
|
||||||
|
|
||||||
|
BSeparatorItem &
|
||||||
|
BSeparatorItem::operator=(const BSeparatorItem &)
|
||||||
|
{
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
@@ -34,6 +34,7 @@ INTERFACE_KIT_SOURCE =
|
|||||||
Screen.cpp
|
Screen.cpp
|
||||||
ScrollBar.cpp
|
ScrollBar.cpp
|
||||||
ScrollView.cpp
|
ScrollView.cpp
|
||||||
|
SeparatorItem.cpp
|
||||||
Shape.cpp
|
Shape.cpp
|
||||||
Shelf.cpp
|
Shelf.cpp
|
||||||
StatusBar.cpp
|
StatusBar.cpp
|
||||||
|
|||||||
Reference in New Issue
Block a user