2005-06-29 06:12:42 +04:00
|
|
|
/*
|
2016-03-22 21:40:06 +03:00
|
|
|
* Copyright 2001-2016 Haiku, Inc. All rights reserved.
|
2005-06-29 06:12:42 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2003-01-23 18:35:12 +03:00
|
|
|
#ifndef _SLIDER_H
|
|
|
|
#define _SLIDER_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <Control.h>
|
|
|
|
|
|
|
|
|
|
|
|
enum hash_mark_location {
|
|
|
|
B_HASH_MARKS_NONE = 0,
|
|
|
|
B_HASH_MARKS_TOP = 1,
|
|
|
|
B_HASH_MARKS_LEFT = 1,
|
|
|
|
B_HASH_MARKS_BOTTOM = 2,
|
|
|
|
B_HASH_MARKS_RIGHT = 2,
|
|
|
|
B_HASH_MARKS_BOTH = 3
|
|
|
|
};
|
|
|
|
|
|
|
|
enum thumb_style {
|
|
|
|
B_BLOCK_THUMB,
|
|
|
|
B_TRIANGLE_THUMB
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class BSlider : public BControl {
|
2009-04-09 19:41:10 +04:00
|
|
|
public:
|
|
|
|
BSlider(BRect frame, const char* name,
|
|
|
|
const char* label, BMessage* message,
|
|
|
|
int32 minValue, int32 maxValue,
|
|
|
|
thumb_style thumbType = B_BLOCK_THUMB,
|
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-04-09 19:41:10 +04:00
|
|
|
uint32 flags = B_NAVIGABLE | B_WILL_DRAW
|
|
|
|
| B_FRAME_EVENTS);
|
|
|
|
|
|
|
|
BSlider(BRect frame, const char* name,
|
|
|
|
const char* label, BMessage* message,
|
|
|
|
int32 minValue, int32 maxValue,
|
|
|
|
orientation posture,
|
|
|
|
thumb_style thumbType = B_BLOCK_THUMB,
|
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-04-09 19:41:10 +04:00
|
|
|
uint32 flags = B_NAVIGABLE | B_WILL_DRAW
|
|
|
|
| B_FRAME_EVENTS);
|
|
|
|
|
|
|
|
BSlider(const char* name, const char* label,
|
|
|
|
BMessage* message, int32 minValue,
|
|
|
|
int32 maxValue, orientation posture,
|
|
|
|
thumb_style thumbType = B_BLOCK_THUMB,
|
|
|
|
uint32 flags = B_NAVIGABLE | B_WILL_DRAW
|
|
|
|
| B_FRAME_EVENTS);
|
|
|
|
|
2009-08-27 15:12:41 +04:00
|
|
|
BSlider(BMessage* archive);
|
2009-04-09 19:41:10 +04:00
|
|
|
virtual ~BSlider();
|
|
|
|
|
2009-08-27 15:12:41 +04:00
|
|
|
static BArchivable* Instantiate(BMessage* archive);
|
|
|
|
virtual status_t Archive(BMessage* archive,
|
|
|
|
bool deep = true) const;
|
2009-04-09 19:41:10 +04:00
|
|
|
virtual status_t Perform(perform_code code, void* data);
|
|
|
|
|
|
|
|
virtual void WindowActivated(bool state);
|
|
|
|
virtual void AttachedToWindow();
|
|
|
|
virtual void AllAttached();
|
|
|
|
virtual void AllDetached();
|
|
|
|
virtual void DetachedFromWindow();
|
|
|
|
|
|
|
|
virtual void MessageReceived(BMessage* message);
|
|
|
|
virtual void FrameMoved(BPoint newPosition);
|
|
|
|
virtual void FrameResized(float width, float height);
|
|
|
|
virtual void KeyDown(const char* bytes, int32 numBytes);
|
2010-11-06 15:43:24 +03:00
|
|
|
virtual void KeyUp(const char* bytes, int32 numBytes);
|
2009-04-09 19:41:10 +04:00
|
|
|
virtual void MouseDown(BPoint point);
|
|
|
|
virtual void MouseUp(BPoint point);
|
|
|
|
virtual void MouseMoved(BPoint point, uint32 transit,
|
|
|
|
const BMessage* dragMessage);
|
|
|
|
virtual void Pulse();
|
|
|
|
|
|
|
|
virtual void SetLabel(const char* label);
|
|
|
|
virtual void SetLimitLabels(const char* minLabel,
|
|
|
|
const char* maxLabel);
|
|
|
|
const char* MinLimitLabel() const;
|
2010-11-06 15:43:24 +03:00
|
|
|
const char* MaxLimitLabel() const;
|
2013-02-05 03:22:52 +04:00
|
|
|
virtual void SetValue(int32 value);
|
|
|
|
virtual int32 ValueForPoint(BPoint point) const;
|
2009-04-09 19:41:10 +04:00
|
|
|
virtual void SetPosition(float);
|
|
|
|
float Position() const;
|
|
|
|
virtual void SetEnabled(bool on);
|
2013-02-05 03:22:52 +04:00
|
|
|
void GetLimits(int32* minimum, int32* maximum) const;
|
2009-04-09 19:41:10 +04:00
|
|
|
|
2013-02-05 03:22:52 +04:00
|
|
|
virtual void Draw(BRect updateRect);
|
2009-04-09 19:41:10 +04:00
|
|
|
virtual void DrawSlider();
|
|
|
|
virtual void DrawBar();
|
|
|
|
virtual void DrawHashMarks();
|
|
|
|
virtual void DrawThumb();
|
|
|
|
virtual void DrawFocusMark();
|
|
|
|
virtual void DrawText();
|
|
|
|
virtual const char* UpdateText() const;
|
|
|
|
void UpdateTextChanged();
|
|
|
|
|
|
|
|
virtual BRect BarFrame() const;
|
|
|
|
virtual BRect HashMarksFrame() const;
|
|
|
|
virtual BRect ThumbFrame() const;
|
|
|
|
|
|
|
|
virtual void SetFlags(uint32 flags);
|
|
|
|
virtual void SetResizingMode(uint32 mode);
|
|
|
|
|
2009-08-27 15:12:41 +04:00
|
|
|
virtual void GetPreferredSize(float* _width,
|
|
|
|
float* _height);
|
2009-04-09 19:41:10 +04:00
|
|
|
virtual void ResizeToPreferred();
|
|
|
|
|
|
|
|
virtual status_t Invoke(BMessage* message = NULL);
|
2009-08-27 15:12:41 +04:00
|
|
|
virtual BHandler* ResolveSpecifier(BMessage* message,
|
|
|
|
int32 index, BMessage* specifier,
|
|
|
|
int32 form, const char* property);
|
2009-04-09 19:41:10 +04:00
|
|
|
virtual status_t GetSupportedSuites(BMessage* data);
|
|
|
|
|
|
|
|
virtual void SetModificationMessage(BMessage* message);
|
|
|
|
BMessage* ModificationMessage() const;
|
|
|
|
|
2013-02-05 03:22:52 +04:00
|
|
|
virtual void SetSnoozeAmount(int32 microSeconds);
|
2009-04-09 19:41:10 +04:00
|
|
|
int32 SnoozeAmount() const;
|
|
|
|
|
|
|
|
virtual void SetKeyIncrementValue(int32 value);
|
|
|
|
int32 KeyIncrementValue() const;
|
|
|
|
|
|
|
|
virtual void SetHashMarkCount(int32 count);
|
|
|
|
int32 HashMarkCount() const;
|
|
|
|
|
|
|
|
virtual void SetHashMarks(hash_mark_location where);
|
|
|
|
hash_mark_location HashMarks() const;
|
|
|
|
|
|
|
|
virtual void SetStyle(thumb_style style);
|
|
|
|
thumb_style Style() const;
|
|
|
|
|
|
|
|
virtual void SetBarColor(rgb_color color);
|
|
|
|
rgb_color BarColor() const;
|
|
|
|
virtual void UseFillColor(bool useFill,
|
|
|
|
const rgb_color* color = NULL);
|
|
|
|
bool FillColor(rgb_color* color) const;
|
2005-06-29 06:12:42 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
BView* OffscreenView() const;
|
2005-06-29 06:12:42 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
orientation Orientation() const;
|
|
|
|
virtual void SetOrientation(orientation);
|
2005-06-29 06:12:42 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
float BarThickness() const;
|
|
|
|
virtual void SetBarThickness(float thickness);
|
2005-06-29 06:12:42 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
virtual void SetFont(const BFont* font,
|
|
|
|
uint32 properties = B_FONT_ALL);
|
2003-01-23 18:35:12 +03:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
virtual void SetLimits(int32 minimum, int32 maximum);
|
2003-01-23 18:35:12 +03:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
virtual float MaxUpdateTextWidth();
|
2005-06-29 06:12:42 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
virtual BSize MinSize();
|
|
|
|
virtual BSize MaxSize();
|
|
|
|
virtual BSize PreferredSize();
|
2008-07-16 18:41:10 +04:00
|
|
|
|
2013-12-22 05:31:47 +04:00
|
|
|
virtual status_t SetIcon(const BBitmap* icon, uint32 flags = 0);
|
|
|
|
|
2011-10-23 01:01:47 +04:00
|
|
|
protected:
|
|
|
|
virtual void LayoutInvalidated(bool descendants);
|
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
private:
|
|
|
|
void _DrawBlockThumb();
|
|
|
|
void _DrawTriangleThumb();
|
2005-06-29 06:12:42 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
BPoint _Location() const;
|
2010-04-11 16:57:58 +04:00
|
|
|
void _SetLocationForValue(int32 value);
|
2005-06-29 06:12:42 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
float _MinPosition() const;
|
|
|
|
float _MaxPosition() const;
|
|
|
|
bool _ConstrainPoint(BPoint& point,
|
|
|
|
BPoint compare) const;
|
2003-01-23 18:35:12 +03:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
BSize _ValidateMinSize();
|
2008-07-16 18:41:10 +04:00
|
|
|
|
2009-08-27 15:12:41 +04:00
|
|
|
void _InitBarColor();
|
|
|
|
void _InitObject();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// FBC padding and forbidden methods
|
2009-04-09 19:41:10 +04:00
|
|
|
virtual void _ReservedSlider6();
|
|
|
|
virtual void _ReservedSlider7();
|
|
|
|
virtual void _ReservedSlider8();
|
|
|
|
virtual void _ReservedSlider9();
|
|
|
|
virtual void _ReservedSlider10();
|
|
|
|
virtual void _ReservedSlider11();
|
|
|
|
virtual void _ReservedSlider12();
|
2005-06-29 06:12:42 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
BSlider& operator=(const BSlider& other);
|
2005-06-29 06:12:42 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
private:
|
|
|
|
BMessage* fModificationMessage;
|
|
|
|
int32 fSnoozeAmount;
|
2003-01-23 18:35:12 +03:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
rgb_color fBarColor;
|
|
|
|
rgb_color fFillColor;
|
|
|
|
bool fUseFillColor;
|
2005-06-03 23:57:34 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
char* fMinLimitLabel;
|
|
|
|
char* fMaxLimitLabel;
|
|
|
|
const char* fUpdateText;
|
2005-06-03 23:57:34 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
int32 fMinValue;
|
|
|
|
int32 fMaxValue;
|
|
|
|
int32 fKeyIncrementValue;
|
2005-06-03 23:57:34 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
int32 fHashMarkCount;
|
|
|
|
hash_mark_location fHashMarks;
|
2005-06-03 23:57:34 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
BBitmap* fOffScreenBits;
|
|
|
|
BView* fOffScreenView;
|
2005-06-03 23:57:34 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
thumb_style fStyle;
|
2005-06-03 23:57:34 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
BPoint fLocation;
|
|
|
|
BPoint fInitialLocation;
|
2005-06-03 23:57:34 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
orientation fOrientation;
|
|
|
|
float fBarThickness;
|
2005-06-03 23:57:34 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
BSize fMinSize;
|
2008-07-16 18:41:10 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
float fMaxUpdateTextWidth;
|
2008-07-16 22:37:44 +04:00
|
|
|
|
2009-04-09 19:41:10 +04:00
|
|
|
uint32 _reserved[4];
|
2003-01-23 18:35:12 +03:00
|
|
|
};
|
|
|
|
|
2013-02-05 03:22:52 +04:00
|
|
|
|
2005-06-29 06:12:42 +04:00
|
|
|
#endif // _SLIDER_H
|