2006-08-26 20:21:15 +04:00
|
|
|
/*
|
Set*UIColor, etc.
The inseparable changes necessary to support live color updating across the
system in a sane, safe, and performant manner.
BView gains:
HasSystemColors()
HasDefaultColors()
AdoptSystemColors()
AdoptParentColors()
AdoptViewColor(BView*)
SetViewUIColor(color_which, float tint)
SetHighUIColor(...
SetLowUIColor(...
ViewUIColor(float* tint)
HighUIColor(...
LowUIColor(...
DelayedInvalidate()
BWindow gains a simple helper method:
IsOffscreenWindow()
BMessage gains:
AddColor()
FindColor()
GetColor()
HasColor() * allegedly this API is deprecated, but I implemented it anyway
ReplaceColor()
SetColor()
Previous private ColorTools methods are made public and moved into GraphicsDefs:
mix_color, blend_color, disable_color
These are fully compatible with BeOS dan0 R5.1 methods and are just code cleanup
of BeOS example code under the OpenTracker license.
In addition, four new colors are created:
B_LINK_TEXT_COLOR
B_LINK_HOVER_COLOR
B_LINK_ACTIVE_COLOR
B_LINK_VISITED_COLOR
These changes are documented in their proper user documentation files.
In addition, due to a history rewrite, B_FOLLOW_LEFT_TOP has been defined and
used in lieu of B_FOLLOW_TOP | B_FOLLOW_LEFT and is included in this commit.
On the app_server side, the following has changed:
Add DelayedMessage - a system by which messages can be sent at a scheduled time,
and can also be merged according to set rules. A single thread is used to service the
message queue and multiple recipients can be set for each message.
Desktop gains the ability to add message ports to a DelayedMessage so that
said messages can target either all applications or all windows, as needed.
Desktop maintains a BMessage which is used to queue up all pending color changes
and the delayed messaging system is used to enact these changes after a short
period of time has passed. This prevents abuse and allows the system to merge
repeated set_ui_color events into one event for client applications, improving
performance drastically.
In addition, B_COLORS_UPDATED is sent to the BApplication, which forwards the message
to each BWindow. This is done to improve performance over having the app_server
independently informing each window.
Decorator changes are live now, which required some reworking.
Signed-off-by: Augustin Cavalier <waddlesplash@gmail.com>
2015-12-10 21:52:48 +03:00
|
|
|
* Copyright 2006-2015, Haiku, Inc. All rights reserved.
|
2009-08-27 15:12:41 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
2006-08-26 20:21:15 +04:00
|
|
|
*/
|
2002-10-23 17:54:44 +04:00
|
|
|
#ifndef _MENU_FIELD_H
|
|
|
|
#define _MENU_FIELD_H
|
|
|
|
|
2009-08-07 12:01:27 +04:00
|
|
|
|
|
|
|
#include <Menu.h>
|
2002-10-23 17:54:44 +04:00
|
|
|
|
2009-08-07 12:01:27 +04:00
|
|
|
|
2002-10-23 17:54:44 +04:00
|
|
|
class BMenuBar;
|
2013-10-09 04:09:41 +04:00
|
|
|
class BMessageFilter;
|
2002-10-23 17:54:44 +04:00
|
|
|
|
2009-08-07 12:01:27 +04:00
|
|
|
|
2006-08-26 20:21:15 +04:00
|
|
|
class BMenuField : public BView {
|
2009-08-07 12:01:27 +04:00
|
|
|
public:
|
2009-08-26 17:44:50 +04:00
|
|
|
BMenuField(BRect frame, const char* name,
|
|
|
|
const char* label, BMenu* menu,
|
Set*UIColor, etc.
The inseparable changes necessary to support live color updating across the
system in a sane, safe, and performant manner.
BView gains:
HasSystemColors()
HasDefaultColors()
AdoptSystemColors()
AdoptParentColors()
AdoptViewColor(BView*)
SetViewUIColor(color_which, float tint)
SetHighUIColor(...
SetLowUIColor(...
ViewUIColor(float* tint)
HighUIColor(...
LowUIColor(...
DelayedInvalidate()
BWindow gains a simple helper method:
IsOffscreenWindow()
BMessage gains:
AddColor()
FindColor()
GetColor()
HasColor() * allegedly this API is deprecated, but I implemented it anyway
ReplaceColor()
SetColor()
Previous private ColorTools methods are made public and moved into GraphicsDefs:
mix_color, blend_color, disable_color
These are fully compatible with BeOS dan0 R5.1 methods and are just code cleanup
of BeOS example code under the OpenTracker license.
In addition, four new colors are created:
B_LINK_TEXT_COLOR
B_LINK_HOVER_COLOR
B_LINK_ACTIVE_COLOR
B_LINK_VISITED_COLOR
These changes are documented in their proper user documentation files.
In addition, due to a history rewrite, B_FOLLOW_LEFT_TOP has been defined and
used in lieu of B_FOLLOW_TOP | B_FOLLOW_LEFT and is included in this commit.
On the app_server side, the following has changed:
Add DelayedMessage - a system by which messages can be sent at a scheduled time,
and can also be merged according to set rules. A single thread is used to service the
message queue and multiple recipients can be set for each message.
Desktop gains the ability to add message ports to a DelayedMessage so that
said messages can target either all applications or all windows, as needed.
Desktop maintains a BMessage which is used to queue up all pending color changes
and the delayed messaging system is used to enact these changes after a short
period of time has passed. This prevents abuse and allows the system to merge
repeated set_ui_color events into one event for client applications, improving
performance drastically.
In addition, B_COLORS_UPDATED is sent to the BApplication, which forwards the message
to each BWindow. This is done to improve performance over having the app_server
independently informing each window.
Decorator changes are live now, which required some reworking.
Signed-off-by: Augustin Cavalier <waddlesplash@gmail.com>
2015-12-10 21:52:48 +03:00
|
|
|
uint32 resizingMode = B_FOLLOW_LEFT_TOP,
|
2009-08-26 17:44:50 +04:00
|
|
|
uint32 flags = B_WILL_DRAW | B_NAVIGABLE);
|
|
|
|
BMenuField(BRect frame, const char* name,
|
|
|
|
const char* label, BMenu* menu,
|
|
|
|
bool fixed_size,
|
Set*UIColor, etc.
The inseparable changes necessary to support live color updating across the
system in a sane, safe, and performant manner.
BView gains:
HasSystemColors()
HasDefaultColors()
AdoptSystemColors()
AdoptParentColors()
AdoptViewColor(BView*)
SetViewUIColor(color_which, float tint)
SetHighUIColor(...
SetLowUIColor(...
ViewUIColor(float* tint)
HighUIColor(...
LowUIColor(...
DelayedInvalidate()
BWindow gains a simple helper method:
IsOffscreenWindow()
BMessage gains:
AddColor()
FindColor()
GetColor()
HasColor() * allegedly this API is deprecated, but I implemented it anyway
ReplaceColor()
SetColor()
Previous private ColorTools methods are made public and moved into GraphicsDefs:
mix_color, blend_color, disable_color
These are fully compatible with BeOS dan0 R5.1 methods and are just code cleanup
of BeOS example code under the OpenTracker license.
In addition, four new colors are created:
B_LINK_TEXT_COLOR
B_LINK_HOVER_COLOR
B_LINK_ACTIVE_COLOR
B_LINK_VISITED_COLOR
These changes are documented in their proper user documentation files.
In addition, due to a history rewrite, B_FOLLOW_LEFT_TOP has been defined and
used in lieu of B_FOLLOW_TOP | B_FOLLOW_LEFT and is included in this commit.
On the app_server side, the following has changed:
Add DelayedMessage - a system by which messages can be sent at a scheduled time,
and can also be merged according to set rules. A single thread is used to service the
message queue and multiple recipients can be set for each message.
Desktop gains the ability to add message ports to a DelayedMessage so that
said messages can target either all applications or all windows, as needed.
Desktop maintains a BMessage which is used to queue up all pending color changes
and the delayed messaging system is used to enact these changes after a short
period of time has passed. This prevents abuse and allows the system to merge
repeated set_ui_color events into one event for client applications, improving
performance drastically.
In addition, B_COLORS_UPDATED is sent to the BApplication, which forwards the message
to each BWindow. This is done to improve performance over having the app_server
independently informing each window.
Decorator changes are live now, which required some reworking.
Signed-off-by: Augustin Cavalier <waddlesplash@gmail.com>
2015-12-10 21:52:48 +03:00
|
|
|
uint32 resizingMode = B_FOLLOW_LEFT_TOP,
|
2009-08-26 17:44:50 +04:00
|
|
|
uint32 flags = B_WILL_DRAW | B_NAVIGABLE);
|
|
|
|
BMenuField(const char* name,
|
|
|
|
const char* label, BMenu* menu,
|
|
|
|
uint32 flags = B_WILL_DRAW | B_NAVIGABLE);
|
2011-05-07 00:04:55 +04:00
|
|
|
BMenuField(const char* label, BMenu* menu,
|
|
|
|
uint32 flags = B_WILL_DRAW | B_NAVIGABLE);
|
2009-08-26 17:44:50 +04:00
|
|
|
BMenuField(BMessage* data);
|
|
|
|
virtual ~BMenuField();
|
|
|
|
|
|
|
|
static BArchivable* Instantiate(BMessage* archive);
|
|
|
|
virtual status_t Archive(BMessage* archive,
|
|
|
|
bool deep = true) const;
|
|
|
|
|
2013-05-07 00:50:23 +04:00
|
|
|
virtual void Draw(BRect updateRect);
|
2009-08-26 17:44:50 +04:00
|
|
|
virtual void AttachedToWindow();
|
|
|
|
virtual void AllAttached();
|
|
|
|
virtual void MouseDown(BPoint where);
|
|
|
|
virtual void KeyDown(const char* bytes, int32 numBytes);
|
2013-08-25 08:05:02 +04:00
|
|
|
virtual void MakeFocus(bool focused);
|
2013-05-09 20:15:14 +04:00
|
|
|
virtual void MessageReceived(BMessage* message);
|
2014-06-12 03:00:46 +04:00
|
|
|
virtual void WindowActivated(bool active);
|
2009-08-26 17:44:50 +04:00
|
|
|
virtual void MouseUp(BPoint where);
|
|
|
|
virtual void MouseMoved(BPoint where, uint32 transit,
|
|
|
|
const BMessage* dragMessage);
|
|
|
|
virtual void DetachedFromWindow();
|
|
|
|
virtual void AllDetached();
|
|
|
|
virtual void FrameMoved(BPoint where);
|
|
|
|
virtual void FrameResized(float width, float height);
|
|
|
|
|
|
|
|
BMenu* Menu() const;
|
|
|
|
BMenuBar* MenuBar() const;
|
|
|
|
BMenuItem* MenuItem() const;
|
|
|
|
|
|
|
|
virtual void SetLabel(const char* label);
|
|
|
|
const char* Label() const;
|
|
|
|
|
2013-05-09 20:15:14 +04:00
|
|
|
virtual void SetEnabled(bool on);
|
2009-08-26 17:44:50 +04:00
|
|
|
bool IsEnabled() const;
|
|
|
|
|
|
|
|
virtual void SetAlignment(alignment label);
|
|
|
|
alignment Alignment() const;
|
2013-05-10 04:52:14 +04:00
|
|
|
virtual void SetDivider(float position);
|
2009-08-26 17:44:50 +04:00
|
|
|
float Divider() const;
|
|
|
|
|
|
|
|
void ShowPopUpMarker();
|
|
|
|
void HidePopUpMarker();
|
|
|
|
|
2013-05-09 20:15:14 +04:00
|
|
|
virtual BHandler* ResolveSpecifier(BMessage* message,
|
2009-08-26 17:44:50 +04:00
|
|
|
int32 index, BMessage* specifier,
|
|
|
|
int32 form, const char* property);
|
2013-05-09 20:15:14 +04:00
|
|
|
virtual status_t GetSupportedSuites(BMessage* data);
|
2009-08-26 17:44:50 +04:00
|
|
|
|
2013-05-09 20:15:14 +04:00
|
|
|
virtual void ResizeToPreferred();
|
|
|
|
virtual void GetPreferredSize(float* width, float* height);
|
2009-08-26 17:44:50 +04:00
|
|
|
|
|
|
|
virtual BSize MinSize();
|
|
|
|
virtual BSize MaxSize();
|
|
|
|
virtual BSize PreferredSize();
|
|
|
|
|
|
|
|
BLayoutItem* CreateLabelLayoutItem();
|
|
|
|
BLayoutItem* CreateMenuBarLayoutItem();
|
|
|
|
|
|
|
|
virtual status_t Perform(perform_code d, void* arg);
|
2006-08-26 20:21:15 +04:00
|
|
|
|
* Implemented Min/Max/PreferredSize().
* Reworked the internal layout. _ValidateLayoutData() computes and caches the
layout related data and all other methods just use those values. Now, in
layout-aware mode the class should properly work not only when using the
layout items. And when using layout items, the class does actually do
internal layout; it was basically good luck that it worked in the tests,
before. Vertical resizing is supported, too.
* We do a few mean tricks to get the probably mostly preferred layout behavior:
By default our own explicit max width and that of the menu bar layout item is
set to unlimited and the horizontal menu bar alignment to left aligned. This
allows to horizontally resize a BMenuField beyond its preferred size,
although both label and menu bar have a limited max width. The user can, of
course, override those explicit sizes/alignments to get a different behavior,
if desired.
* Fixed invalidation in SetDivider(). When having the focus, the left and top
border of the blue frame were not invalidated.
* The label is no longer drawn at vertical position font ascent + descent
+ leading + 2 (not sure how this calculation was supposed to work), but
vertically centers the label around the ascent. With big fonts the label is
shown a bit too far to the bottom. Not sure how to fix this in a generic way.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21466 a95241bf-73f2-0310-859d-f6bbb57e9c96
2007-06-20 03:38:00 +04:00
|
|
|
protected:
|
2013-05-09 20:15:14 +04:00
|
|
|
virtual status_t AllArchived(BMessage* into) const;
|
|
|
|
virtual status_t AllUnarchived(const BMessage* from);
|
2011-12-02 07:45:50 +04:00
|
|
|
|
2011-10-23 01:01:47 +04:00
|
|
|
virtual void LayoutInvalidated(bool descendants);
|
2009-08-26 17:44:50 +04:00
|
|
|
virtual void DoLayout();
|
* Implemented Min/Max/PreferredSize().
* Reworked the internal layout. _ValidateLayoutData() computes and caches the
layout related data and all other methods just use those values. Now, in
layout-aware mode the class should properly work not only when using the
layout items. And when using layout items, the class does actually do
internal layout; it was basically good luck that it worked in the tests,
before. Vertical resizing is supported, too.
* We do a few mean tricks to get the probably mostly preferred layout behavior:
By default our own explicit max width and that of the menu bar layout item is
set to unlimited and the horizontal menu bar alignment to left aligned. This
allows to horizontally resize a BMenuField beyond its preferred size,
although both label and menu bar have a limited max width. The user can, of
course, override those explicit sizes/alignments to get a different behavior,
if desired.
* Fixed invalidation in SetDivider(). When having the focus, the left and top
border of the blue frame were not invalidated.
* The label is no longer drawn at vertical position font ascent + descent
+ leading + 2 (not sure how this calculation was supposed to work), but
vertically centers the label around the ascent. With big fonts the label is
shown a bit too far to the bottom. Not sure how to fix this in a generic way.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21466 a95241bf-73f2-0310-859d-f6bbb57e9c96
2007-06-20 03:38:00 +04:00
|
|
|
|
2008-09-16 14:45:27 +04:00
|
|
|
private:
|
2009-08-26 17:44:50 +04:00
|
|
|
// FBC padding
|
|
|
|
virtual void _ReservedMenuField1();
|
|
|
|
virtual void _ReservedMenuField2();
|
|
|
|
virtual void _ReservedMenuField3();
|
|
|
|
|
|
|
|
// Forbidden
|
|
|
|
BMenuField& operator=(const BMenuField& other);
|
|
|
|
|
|
|
|
private:
|
|
|
|
class LabelLayoutItem;
|
|
|
|
class MenuBarLayoutItem;
|
|
|
|
struct LayoutData;
|
|
|
|
|
|
|
|
friend class _BMCMenuBar_;
|
|
|
|
friend class LabelLayoutItem;
|
|
|
|
friend class MenuBarLayoutItem;
|
|
|
|
friend class LayoutData;
|
|
|
|
|
2011-05-07 00:04:55 +04:00
|
|
|
BMenuField(const char* name,
|
|
|
|
const char* label, BMenu* menu,
|
|
|
|
BMessage* message,
|
|
|
|
uint32 flags);
|
|
|
|
BMenuField(const char* label,
|
|
|
|
BMenu* menu, BMessage* message);
|
|
|
|
|
2013-08-21 02:17:07 +04:00
|
|
|
void _DrawLabel(BRect updateRect);
|
|
|
|
void _DrawMenuBar(BRect updateRect);
|
|
|
|
|
2009-08-26 17:44:50 +04:00
|
|
|
void InitObject(const char* label);
|
|
|
|
void InitObject2();
|
2013-08-21 02:17:07 +04:00
|
|
|
|
2009-08-26 17:44:50 +04:00
|
|
|
static void InitMenu(BMenu* menu);
|
|
|
|
|
|
|
|
int32 _MenuTask();
|
|
|
|
static int32 _thread_entry(void *arg);
|
|
|
|
|
|
|
|
void _UpdateFrame();
|
|
|
|
void _InitMenuBar(BMenu* menu,
|
|
|
|
BRect frame, bool fixedSize);
|
2010-07-28 00:59:47 +04:00
|
|
|
void _InitMenuBar(const BMessage* archive);
|
2009-08-26 17:44:50 +04:00
|
|
|
|
|
|
|
void _ValidateLayoutData();
|
|
|
|
float _MenuBarOffset() const;
|
|
|
|
float _MenuBarWidth() const;
|
|
|
|
|
2013-10-09 04:09:41 +04:00
|
|
|
void _DoneTracking(BPoint point);
|
|
|
|
void _Track(BPoint point, uint32);
|
|
|
|
|
2009-08-26 17:44:50 +04:00
|
|
|
private:
|
|
|
|
char* fLabel;
|
|
|
|
BMenu* fMenu;
|
|
|
|
BMenuBar* fMenuBar;
|
|
|
|
alignment fAlign;
|
|
|
|
float fDivider;
|
|
|
|
bool fEnabled;
|
|
|
|
bool fFixedSizeMB;
|
|
|
|
thread_id fMenuTaskID;
|
|
|
|
|
|
|
|
LayoutData* fLayoutData;
|
2013-10-09 04:09:41 +04:00
|
|
|
BMessageFilter* fMouseDownFilter;
|
2009-08-26 17:44:50 +04:00
|
|
|
|
2013-10-09 04:09:41 +04:00
|
|
|
uint32 _reserved[2];
|
2002-10-23 17:54:44 +04:00
|
|
|
};
|
|
|
|
|
2006-08-26 20:21:15 +04:00
|
|
|
#endif // _MENU_FIELD_H
|