* Copyright fixed

* Indentation updated.
* Better grouping of methods.

+alphabranch


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32702 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus
2009-08-26 12:22:10 +00:00
parent 13e50c47a2
commit 6eb37bdef7
2 changed files with 222 additions and 192 deletions
+39 -33
View File
@@ -1,10 +1,11 @@
/* /*
* Copyright 2003-2007, Haiku, Inc. All Rights Reserved. * Copyright 2003-2009, Haiku Inc. All rights reserved.
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT license.
*/ */
#ifndef _MENU_BAR_H #ifndef _MENU_BAR_H
#define _MENU_BAR_H #define _MENU_BAR_H
#include <BeBuild.h> #include <BeBuild.h>
#include <InterfaceDefs.h> #include <InterfaceDefs.h>
#include <Menu.h> #include <Menu.h>
@@ -26,51 +27,56 @@ class BMenuField;
class BMenuBar : public BMenu { class BMenuBar : public BMenu {
public: public:
BMenuBar(BRect frame, const char* title, BMenuBar(BRect frame, const char* title,
uint32 resizeMask = B_FOLLOW_LEFT_RIGHT | B_FOLLOW_TOP, uint32 resizeMask = B_FOLLOW_LEFT_RIGHT
| B_FOLLOW_TOP,
menu_layout layout = B_ITEMS_IN_ROW, menu_layout layout = B_ITEMS_IN_ROW,
bool resizeToFit = true); bool resizeToFit = true);
BMenuBar(const char *title, menu_layout layout = B_ITEMS_IN_ROW, BMenuBar(const char* title,
uint32 flags = B_WILL_DRAW | B_FRAME_EVENTS); menu_layout layout = B_ITEMS_IN_ROW,
BMenuBar(BMessage *data); uint32 flags = B_WILL_DRAW
| B_FRAME_EVENTS);
BMenuBar(BMessage* archive);
virtual ~BMenuBar(); virtual ~BMenuBar();
static BArchivable* Instantiate(BMessage *data); static BArchivable* Instantiate(BMessage* archive);
virtual status_t Archive(BMessage *data, bool deep = true) const; virtual status_t Archive(BMessage* archive,
bool deep = true) const;
virtual void SetBorder(menu_bar_border border);
menu_bar_border Border() const;
virtual void Draw(BRect updateRect);
virtual void AttachedToWindow(); virtual void AttachedToWindow();
virtual void DetachedFromWindow(); virtual void DetachedFromWindow();
virtual void MessageReceived(BMessage *message); virtual void AllAttached();
virtual void MouseDown(BPoint where); virtual void AllDetached();
virtual void WindowActivated(bool state); virtual void WindowActivated(bool state);
virtual void MouseUp(BPoint where); virtual void MakeFocus(bool state = true);
virtual void ResizeToPreferred();
virtual void GetPreferredSize(float* _width,
float* _height);
virtual BSize MinSize();
virtual BSize MaxSize();
virtual BSize PreferredSize();
virtual void FrameMoved(BPoint newPosition); virtual void FrameMoved(BPoint newPosition);
virtual void FrameResized(float newWidth, float newHeight); virtual void FrameResized(float newWidth, float newHeight);
virtual void Show(); virtual void Show();
virtual void Hide(); virtual void Hide();
virtual BHandler* ResolveSpecifier(BMessage *message, int32 index, virtual void Draw(BRect updateRect);
BMessage *specifier, int32 form,
const char *property); virtual void MessageReceived(BMessage *message);
virtual void MouseDown(BPoint where);
virtual void MouseUp(BPoint where);
virtual BHandler* ResolveSpecifier(BMessage* message,
int32 index, BMessage* specifier,
int32 form, const char* property);
virtual status_t GetSupportedSuites(BMessage* data); virtual status_t GetSupportedSuites(BMessage* data);
virtual void ResizeToPreferred(); virtual void SetBorder(menu_bar_border border);
virtual void GetPreferredSize(float *width, float *height); menu_bar_border Border() const;
virtual void MakeFocus(bool state = true);
virtual void AllAttached();
virtual void AllDetached();
virtual status_t Perform(perform_code code, void* data);
// layout related
virtual BSize MinSize();
virtual BSize MaxSize();
virtual BSize PreferredSize();
virtual status_t Perform(perform_code code, void *arg);
private: private:
friend class BWindow; friend class BWindow;
@@ -86,8 +92,8 @@ class BMenuBar : public BMenu {
// TODO: Tracker uses this function so we can't change // TODO: Tracker uses this function so we can't change
// its signature without breaking it // its signature without breaking it
void StartMenuBar(int32 menuIndex, bool sticky = true, void StartMenuBar(int32 menuIndex,
bool showMenu = false, bool sticky = true, bool showMenu = false,
BRect* special_rect = NULL); BRect* special_rect = NULL);
static int32 _TrackTask(void *arg); static int32 _TrackTask(void *arg);
@@ -102,7 +108,7 @@ class BMenuBar : public BMenu {
int32 fPrevFocusToken; int32 fPrevFocusToken;
sem_id fMenuSem; sem_id fMenuSem;
BRect* fLastBounds; BRect* fLastBounds;
uint32 _reserved[2]; // was 3 uint32 _reserved[2];
bool fTracking; bool fTracking;
}; };
+142 -118
View File
@@ -1,6 +1,6 @@
/* /*
* Copyright 2001-2009, Haiku, Inc. * Copyright 2001-2009, Haiku Inc. All rights reserved.
* Distributed under the terms of the MIT License. * Distributed under the terms of the MIT license.
* *
* Authors: * Authors:
* Marc Flerackers ([email protected]) * Marc Flerackers ([email protected])
@@ -133,17 +133,140 @@ BMenuBar::Archive(BMessage* data, bool deep) const
} }
// #pragma mark -
void void
BMenuBar::SetBorder(menu_bar_border border) BMenuBar::AttachedToWindow()
{ {
fBorder = border; _Install(Window());
Window()->SetKeyMenuBar(this);
BMenu::AttachedToWindow();
*fLastBounds = Bounds();
} }
menu_bar_border void
BMenuBar::Border() const BMenuBar::DetachedFromWindow()
{ {
return fBorder; BMenu::DetachedFromWindow();
}
void
BMenuBar::AllAttached()
{
BMenu::AllAttached();
}
void
BMenuBar::AllDetached()
{
BMenu::AllDetached();
}
void
BMenuBar::WindowActivated(bool state)
{
BView::WindowActivated(state);
}
void
BMenuBar::MakeFocus(bool state)
{
BMenu::MakeFocus(state);
}
// #pragma mark -
void
BMenuBar::ResizeToPreferred()
{
BMenu::ResizeToPreferred();
}
void
BMenuBar::GetPreferredSize(float* width, float* height)
{
BMenu::GetPreferredSize(width, height);
}
BSize
BMenuBar::MinSize()
{
return BMenu::MinSize();
}
BSize
BMenuBar::MaxSize()
{
BSize size = BMenu::MaxSize();
return BLayoutUtils::ComposeSize(ExplicitMaxSize(),
BSize(B_SIZE_UNLIMITED, size.height));
}
BSize
BMenuBar::PreferredSize()
{
return BMenu::PreferredSize();
}
void
BMenuBar::FrameMoved(BPoint newPosition)
{
BMenu::FrameMoved(newPosition);
}
void
BMenuBar::FrameResized(float newWidth, float newHeight)
{
// invalidate right border
if (newWidth != fLastBounds->Width()) {
BRect rect(min_c(fLastBounds->right, newWidth), 0,
max_c(fLastBounds->right, newWidth), newHeight);
Invalidate(rect);
}
// invalidate bottom border
if (newHeight != fLastBounds->Height()) {
BRect rect(0, min_c(fLastBounds->bottom, newHeight) - 1,
newWidth, max_c(fLastBounds->bottom, newHeight));
Invalidate(rect);
}
fLastBounds->Set(0, 0, newWidth, newHeight);
BMenu::FrameResized(newWidth, newHeight);
}
// #pragma mark -
void
BMenuBar::Show()
{
BView::Show();
}
void
BMenuBar::Hide()
{
BView::Hide();
} }
@@ -198,23 +321,7 @@ BMenuBar::Draw(BRect updateRect)
} }
void // #pragma mark -
BMenuBar::AttachedToWindow()
{
_Install(Window());
Window()->SetKeyMenuBar(this);
BMenu::AttachedToWindow();
*fLastBounds = Bounds();
}
void
BMenuBar::DetachedFromWindow()
{
BMenu::DetachedFromWindow();
}
void void
@@ -240,13 +347,6 @@ BMenuBar::MouseDown(BPoint where)
} }
void
BMenuBar::WindowActivated(bool state)
{
BView::WindowActivated(state);
}
void void
BMenuBar::MouseUp(BPoint where) BMenuBar::MouseUp(BPoint where)
{ {
@@ -254,48 +354,7 @@ BMenuBar::MouseUp(BPoint where)
} }
void // #pragma mark -
BMenuBar::FrameMoved(BPoint newPosition)
{
BMenu::FrameMoved(newPosition);
}
void
BMenuBar::FrameResized(float newWidth, float newHeight)
{
// invalidate right border
if (newWidth != fLastBounds->Width()) {
BRect rect(min_c(fLastBounds->right, newWidth), 0,
max_c(fLastBounds->right, newWidth), newHeight);
Invalidate(rect);
}
// invalidate bottom border
if (newHeight != fLastBounds->Height()) {
BRect rect(0, min_c(fLastBounds->bottom, newHeight) - 1,
newWidth, max_c(fLastBounds->bottom, newHeight));
Invalidate(rect);
}
fLastBounds->Set(0, 0, newWidth, newHeight);
BMenu::FrameResized(newWidth, newHeight);
}
void
BMenuBar::Show()
{
BView::Show();
}
void
BMenuBar::Hide()
{
BView::Hide();
}
BHandler* BHandler*
@@ -313,39 +372,24 @@ BMenuBar::GetSupportedSuites(BMessage* data)
} }
void // #pragma mark -
BMenuBar::ResizeToPreferred()
{
BMenu::ResizeToPreferred();
}
void void
BMenuBar::GetPreferredSize(float* width, float* height) BMenuBar::SetBorder(menu_bar_border border)
{ {
BMenu::GetPreferredSize(width, height); fBorder = border;
} }
void menu_bar_border
BMenuBar::MakeFocus(bool state) BMenuBar::Border() const
{ {
BMenu::MakeFocus(state); return fBorder;
} }
void // #pragma mark -
BMenuBar::AllAttached()
{
BMenu::AllAttached();
}
void
BMenuBar::AllDetached()
{
BMenu::AllDetached();
}
status_t status_t
@@ -404,29 +448,6 @@ BMenuBar::Perform(perform_code code, void* _data)
} }
BSize
BMenuBar::MinSize()
{
return BMenu::MinSize();
}
BSize
BMenuBar::MaxSize()
{
BSize size = BMenu::MaxSize();
return BLayoutUtils::ComposeSize(ExplicitMaxSize(),
BSize(B_SIZE_UNLIMITED, size.height));
}
BSize
BMenuBar::PreferredSize()
{
return BMenu::PreferredSize();
}
// #pragma mark - // #pragma mark -
@@ -443,6 +464,9 @@ BMenuBar::operator=(const BMenuBar &)
} }
// #pragma mark -
void void
BMenuBar::StartMenuBar(int32 menuIndex, bool sticky, bool showMenu, BMenuBar::StartMenuBar(int32 menuIndex, bool sticky, bool showMenu,
BRect* specialRect) BRect* specialRect)