BSlider

Derived from: public BControl

Declared in: be/interface/Slider.h

Library: libbe.so


Overview

[method summary]

Sliders are user interface constructs that provide a standard, easy way for the user to select a value from a predetermined range; for example, if your application needs to let the user pick a value between 1 and 100, it's easy to create a BSlider object that the user can use to do this.

BSlider objects also provide a wide assortment of hooks that let you customize the appearance and behavior of your slider controls.


Using BSliders

Creating a basic BSlider is very simple:

      BSlider(BRect frame, const char *name, 
         const char *label, 
         BMessage *message,
         int32 minValue, int32 maxValue,
         thumb_style thumbType = B_BLOCK_THUMB,
         uint32 resizingMode = B_FOLLOW_LEFT | B_FOLLOW_TOP,
         uint32 flags = B_FRAME_EVENTS|B_WILL_DRAW | B_NAVIGABLE) 

      r.Set(5,5,255,55);
      slider = new BSlider(r, "const:slider1", "Construct Speed (%)", NULL,
                     0, 140);

This creates a slider named "const:slider1" with the label "Construct Speed (%)" above it. The range of possible values for the slider is 0 to 140.

You can add a splash of color to the slider, too. For example, if you want the slider bar to be light blue, you might add:

      slider->SetBarColor(color);

You can also add hash marks to the slider:

      slider->SetHashMarks(B_HASH_MARKS_BOTTOM);
      slider->SetHashMarkCount(10);

In this example, SetHashMarks() is used to specify that the hash marks should be below the slider; you can also specify B_HASH_MARKS_TOP to put them above the slider, B_HASH_MARKS_BOTH to put them both above and below the slider, and B_HASH_MARKS_NONE to omit them entirely (which is the default).

SetHashMarkCount() is called to indicate that you want 10 hash marks spaced evenly across the slider.

Finally, if you want to add labels at the ends of the slider, to indicate the minimum and maximum values, you can use the SetLimitLabels() function:

      slider->SetLimitLabels("Slow", "Fast");

This sets the label for the minimum value (the left end of the slider) to "Slow" and the label for the maximum to "Fast".

The result is the "Construct Speed (%)" slider in the window pictures below. An example of a slider with the B_TRIANGLE_THUMB thumbType and hash marks above and below the slider is also shown.


Customizing a BSlider

You can customize the appearance of your BSlider by overriding virtual functions in the BSlider class that are responsible for drawing the slider bar, thumb, focus mark, and hash marks.

For example, let's say you want your slider's thumb to be round. Just create a new class--let's call it CustomSlider--derived from BSlider, and override the DrawThumb() function with code that might look something like this:

   const rgb_color kWhite = {255,255,255,255};
   const rgb_color kWhiteGray = {235,235,235,255);
   const rgb_color kDarkGray = {100,100,100,255};
   const rgb_color kBlackColor = {0,0,0,255};
   
   void CustomSlider::DrawThumb(void) {
      BRect r;
      BView *v;
   
      // Get the frame rectangle of the thumb
      // and the offscreen view.
      
      r = ThumbFrame();
      v = OffscreenView();
   
      // Draw the black shadow
   
      v->SetHighColor(kBlackColor);   
      r.top++;
      r.left++;
      v->StrokeEllipse(r);
      
      // Draw the dark grey edge
      
      v->SetHighColor(kDarkGray);
      r.bottom--;
      r.right--;
      v->StrokeEllipse(r);
      
      // Fill the inside of the thumb
      
      v->SetHighColor(kWhiteGrayColor);
      r.InsetBy(1,1);
      v->FillEllipse(r);
   }

All rendering of a BSlider is done into an offscreen view, which you can get a pointer to by calling the OffscreenView() function. This improves performance and makes drawing the slider--especially complicated ones--look much smoother to the user.

This code gets a pointer to the offscreen view, then renders a round, beveled thumb into the offscreen view, filling the thumb's frame rectangle as returned by the ThumbFrame() function.

The result is a round thumb that looks like the one in the "Totality of Damage" slider in the picture below:


Hook Functions

BarFrame()
Calculates and returns the frame rectangle of the slider bar; can be overridden if your customized slider requires a different frame rectangle than the default.

DrawBar()
Draws the slider bar--the long, narrow channel in which the thumb appears to move; can be overridden by derived classes to alter the appearance of the slider bar.

DrawFocusMark()
Draws into the offscreen view the indicator that the slider is the focused control; can be overridden to alter the appearance of the focus indicator.

DrawHashMarks()
Draws into the offscreen view the hash marks that run along the slider control; can be overridden to alter the appearance of the hash marks.

DrawSlider()
Draws the entire slider control into the offscreen view, then copies it to the screen; can be overridden by derived classes to alter the appearance of the slider control.

DrawLabel()
Draws into the offscreen view the label, limit strings, and status message for the slider control; can be overridden to alter the appearance or placement of the text.

DrawThumb()
Draws into the offscreen view the thumb, which indicates the current value of the slider control; can be overridden to alter the appearance of the thumb.

GetPreferredSize()
Returns the default size of the complete slider control; can be overridden if a customized slider uses a different amount of space than the standard slider.

HashMarksFrame()
Returns the rectangle that contains the hash marks. Can be overridden if a customized slider needs a different frame rectangle for the hash marks.

ResizeToPreferred()
Sets the size of the slider control to the preferred size.

SetBarColor()
Sets the color of the slider bar's empty area (the area to the right of the thumb). Can be augmented to note changes to the color, or overridden to alter the color specified.

SetHashMarks()
Specifies whether hash marks are drawn above or below the slider (or both, or neither). Can be overridden or augmented to take note of the change.

SetHashMarkCount()
Sets the number of hash marks drawn along the top and/or bottom of the slider; can be overridden to track changes to this setting.

SetKeyIncrementValue()
Sets the amount by which keyboard control of the thumb's position alters the value of the slider. Can be overridden to take note of changes to the increment value.

SetLabel()
Sets the label that identifies the slider to the user; can be overridden if you need to track changes to the label.

SetLimitLabels()
Sets the labels displayed to represent the minimum and maximum values at the ends of the slider; can be overridden to track changes to these labels.

SetModificationMessage()
Sets the message that's sent when the value of the slider is modified. Can be overridden or augmented to examine or change the modification message.

SetPosition()
Sets the value of the slider given a ratio, where 0.0 represents the minimum value, and 1.0 represents the maximum value. Can be overridden to alter the computation of the value given a ratio.

SetSnoozeAmount()
Sets the time, in microseconds, that the slider will snooze between updates when the mouse is being tracked. Can be overridden to track changes to the snooze value.

SetStyle()
Selects the type of thumb used by the slider; can be augmented or overridden to track changes to this setting.

SetValue()
Sets the value of the slider; can be overridden to track changes to the value of teh slider control.

ThumbFrame()
Returns the rectangle that contains the thumb; can be overridden if a customized slider's thumb has a different frame rectangle.

UpdateText()
Returns the status text to be displayed by the slider; returns NULL by default. Can be overridden to cause a desired status message to be displayed.

UseFillColor()
Sets the color that fills the used portion of the slider bar (the area to the left of the thumb), and specifies whether or not to fill that area with color at all. Can be overridden or augmented to take note of this change, or to alter the specified color.

ValueForPoint()
Sets the value of the slider to the value represented by a given BPoint. This function is used to set the value of the slider when the user clicks on it; can be overridden to alter the computation of the value given a user click.


Constructor and Destructor


BSlider()

      BSlider(BRect frame, const char *name, 
         const char *label, 
         BMessage *message,
         int32 minValue, int32 maxValue,
         thumb_style thumbType = B_BLOCK_THUMB,
         uint32 resizingMode = B_FOLLOW_LEFT | B_FOLLOW_TOP,
         uint32 flags = B_FRAME_EVENTS|B_WILL_DRAW | B_NAVIGABLE) 
      BSlider(BMessage *archive) 

Initializes the BSlider by passing the appropriate arguments to the BControl constructor. BControl initializes the slider's label and assigns it a model message that identifies the action that should be carried out when the slider is invoked.

The frame, name, resizingMode, and flags arguments are the same as those declared for the BView class and are passed up the inheritance hierarchy to the BView constructor without change.

The minValue and maxValue parameters define the minimum and maximum values to which the slider can be set.

The thumbType argument defines the look of the slider's thumb, and can be either of the following values:

B_BLOCK_THUMB The thumb is a rectangular block.
B_TRIANGLE_THUMB The thumb is a triangular pointer.

See also: the BControl and BView constructors, BControl::Invoke()


~BSlider()

      virtual ~BSlider()

Frees memory allocated by the BSlider object.


Static Functions


Instantiate()

      static BArchivable *Instantiate(BMessage *archive) 

Returns a new BSlider object--or NULL, if the archive message doesn't contain data for a BSlider object. The new object is allocated by new and created with the version of the constructor that takes a BMessage archive.

See also: BControl::Instantiate(), instantiate_object(), Archive()


Member Functions


Archive()

      virtual status_t Archive(BMessage *archive, bool deep = true) const

Calls the inherited version of Archive() and stores the BSlider in the BMessage archive.

See also: BArchivable::Archive(), Instantiate() static function


AttachedToWindow()

      virtual void AttachedToWindow(void)

Augments the BControl version of this function to set the background color of the button so that it matches the background color of its parent. This function also sets the start position of the slider and allocates other memory needed for the slider to function.

See also: BView::AttachedToWindow(), BControl::AttachedToWindow()


BarColor() see SetBarColor()


Draw()

      virtual void Draw(BRect updateRect)

Draws the slider by calling DrawSlider().

See also: BView::Draw(), DrawSlider()


DrawBar(), BarFrame()

      virtual void DrawBar(void)
      virtual BRect BarFrame(void) const

DrawBar() draws the slider bar. The bar is the narrow region the thumb slides through. The bar should be drawn into the offscreen view.

BarFrame() returns the frame rectangle that encloses the slider bar.

These functions can be augmented or replaced by your own versions to alter the appearance of the slider bar.

See also: OffscreenView()


DrawFocusMark()

      virtual void DrawFocusMark(void)

If the slider is in focus, draws a mark indicating that this is the case.

You can override this function to alter the appearance of the slider control.


DrawHashMarks(), HashMarksFrame()

      virtual void DrawHashMarks(void)
      virtual BRect HashMarksFrame(void) const

DrawHashMarks() draws the hash marks.

HashMarksFrame() returns the frame rectangle that encloses the hash marks. If the hash marks are set to B_HASH_MARKS_TOP or B_HASH_MARKS_BOTTOM, the rectangle encloses only the area needed to draw the marks. If the setting is B_HASH_MARKS_BOTH, the hash marks frame rectangle is the bounds rectangle of the entire slider control.

These functions can be augmented or replaced by your own versions to alter the appearance of the hash marks.


DrawSlider()

      virtual void DrawSlider(void)

Draws the entire slider control by calling the functions responsible for drawing the various parts of the control:

Once the slider has been drawn into the offscreen view, it's copied to its parent window.

See also: DrawBar(), DrawHashMarks(), DrawThumb(), DrawFocusMark(), DrawText()


DrawText()

      virtual void DrawText(void)

Draws the slider's text areas. These are the minimum label, maximum label, and status message.

The minimum and maximum labels can be set using the SetLimitLabels() function. The status message is obtained by calling the UpdateText() function. If you want there to be a status message, simply override UpdateText() to return the string you want drawn as the status message.

In the default implementation of this function, the limit labels are only drawn if both of them have been configured to a value other than NULL. If either of them is NULL, neither will be drawn.

This function can be augmented or replaced by your own version to alter the appearance or placement of the text.

See also: SetLimitLabels(), UpdateText()


DrawThumb(), ThumbFrame()

      virtual void DrawThumb(void)
      virtual BRect ThumbFrame(void) const

DrawThumb() draws the slider's thumb. If you choose to reimplement this function, you should call Style() to determine whether to draw a block thumb or a triangle thumb.

ThumbFrame() returns the frame rectangle that encloses the thumb.

These functions can be augmented or replaced by your own versions to alter the appearance of the thumb.


FrameResized()

      virtual void FrameResized(float *width, float *height) 

Augments the BControl version of FrameResized() to adjust the offscreen view and bitmap used for rendering the slider.


GetPreferredSize(), ResizeToPreferred()

      virtual void GetPreferredSize(float *width, float *height) 
      virtual void ResizeToPreferred(void)

GetPreferredSize() calculates the width and height of the area needed to render the complete slider control, given the current configuration of the control's various settings.

The width returned by this function is the width of the slider control. The height is calculated by taking the height of the slider bar itself, adding two times the height of the hash marks, then adding room for the status text (if there is any) and limit strings (if there are any).

Note that the height always includes room for hash marks both above and below the slider, even if the slider has no hash marks or only one of the two sets of marks.

ResizeToPreferred() resizes the slider control to be the preferred size.

You can override these functions to alter the preferred size of the slider; this is particularly important if you override other functions to change the appearance of the slider.


HashMarks() see SetHashMarks()


HashMarkCount() see SetHashMarkCount()


KeyDown()

      virtual void KeyDown(const char *bytes, int32 numBytes)

Augments the inherited version of KeyDown() to let the up and right arrow keys increment the value of the slider, and the down and left arrow keys to decrement the value of the slider.

See also: BControl::Invoke(), BView::KeyDown()


MaxLimitLabel() see SetLimitLabels()


MinLimitLabel() see SetLimitLabels()


ModificationMessage() see SetModificationMessage()


MouseDown()

      virtual void MouseDown(BPoint point)

Overrides the BView version of MouseDown() to track mouse the mouse when the button is pressed. A single click causes the thumb to immediately reposition itself to the clicked location, and a click and drag motion causes the slider to follow the mouse cursor until the button is released.

If a modification message has been established, it is sent repeatedly while the mouse button is down. This can be used, for example, to let the changes to the value of the slider be instantly reflected in an onscreen display. When the mouse button is released and the slider has been set to its resting position, the slider's model message is sent.

See also: BView::MouseDown(), BControl::Invoke(), BControl::SetTarget(), ModificationMessage(), SetModificationMessage()


OffscreenView()

      BView *OffscreenView(BView *view)

Returns a pointer to the offscreen BView in which the slider is rendered prior to being copied to the screen. Because the slider is a complex graphical construct, it's rendered offscreen, then copied onto the screen. This function is provided to make it possible to further customize the appearance of a custom slider control.


ResizeToPreferred() see GetPreferredSize()


SetBarColor(), BarColor()

      virtual void SetBarColor(rgb_color bar_color)
      virtual rgb_color BarColor(void) const

SetBarColor() sets the color of the slider bar.

BarColor() returns the slider bar's color.


SetHashMarks(), HashMarks()

      virtual void SetHashMarks(hash_mark_location where)
      hash_mark_location HashMarks(void) const

SetHashMarks() sets the placement of the hash marks. This value can be one of the following:

B_HASH_MARKS_NONE The slider should have no hash marks.
B_HASH_MARKS_TOP The slider should have hash marks above the slider bar.
B_HASH_MARKS_BOTTOM The slider should have hash marks below the slider bar.
B_HASH_MARKS_BOTH The slider should have hash marks above and below the slider bar.

HashMarks() returns the current placement of the hash marks.


SetHashMarkCount(), HashMarkCount()

      virtual void SetHashMarkCount(int32 hash_mark_count)
      int32 HashMarkCount(void) const

SetHashMarkCount() sets the number of hash marks that will be displayed above and/or below the slider.

HashMarkCount() returns the number of hash marks currently set up.


SetKeyIncrementValue(), KeyIncrementValue()

      virtual void SetKeyIncrementValue(int32 increment_value)
      int32 KeyIncrementValue(void) const

SetKeyIncrementValue() sets the amount by which the slider's value changes when the keyboard is used to move the thumb.

KeyIncrementValue() returns the amount by which the slider's value changes when the keyboard is used to move the thumb.


SetLimitLabels(), MinLimitLabel(), MaxLimitLabel()

      virtual void SetLimitLabels(const char *minLabel, const char *maxLabel)
      const char *MinLimitLabel(void) const
      const char *MaxLimitLabel(void) const

SetLimitLabels() sets the labels used to mark the minimum and maximum values on the slider.

MinLimitLabel() and MaxLimitLabel() return the current strings used to mark the minimum and maximum values on the slider.


SetModificationMessage(), ModificationMessage()

      virtual void SetModificationMessage(BMessage *message)
      BMessage *ModificationMessage(void) const

SetModificationMessage() sets the model message that's sent while the mouse is being tracked. The modification message is sent repeatedly as long as the mouse button is held down after being initially clicked inside the slider.

ModificationMessage() returns the modification message currently set up.

See also: MouseDown()


SetPosition(), Position()

      virtual void SetPosition(float *position)
      virtual float Position(void) const

SetPosition() sets the value of the slider given a value between 0.0 and 1.0, where 0.0 is the minimum value of the slider, and 1.0 is the maximum value. This lets you set the slider to a relative position without having to look up the maximum and minimum values of the slider.

Position() returns the slider value scaled to the range 0.0 to 1.0.


SetSnoozeAmount(), SnoozeAmount()

      virtual void SetSnoozeAmount(int32 snooze_time)
      int32 SnoozeAmount(void) const

SetSnoozeAmount() sets the time (in microseconds) that the slider snoozes for between updates while the mouse is being tracked.

SnoozeAmount() returns the time that the slider snoozes while the mouse is being tracked.


SetStyle(), Style()

      virtual void SetStyle(thumb_style style)
      thumb_style Style(void) const

SetStyle() sets the thumb style for the slider. The style can be either of the following two values:

B_BLOCK_THUMB The thumb should be a rectangular block.
B_TRIANGLE_THUMB The thumb should be triangular.

Style() returns the current thumb style.


SetValue(), Value(), ValueForPoint()

      virtual void SetValue(int32 *value)
      virtual int32 Value(void) const
      virtual int32 ValueForPoint(BPoint location) const

SetValue() augments the BControl function to pin the value to the maximum and minimum values for the slider and the position of the thumb before calling the inherited function.

ValueForPoint() returns the slider value represented by the given screen coordinates.


SnoozeAmount() see SetSnoozeAmount()


Style() see SetStyle()


UpdateText()

      virtual char *UpdateText(void) const

Returns the status message that should be displayed with the slider. By default, this function returns NULL; if you want a status message to be displayed, simply override this function to return the appropriate string.

The pointer you return is yours; the DrawText() routine won't dispose of it unless you augment it to do so.


UseFillColor(), FillColor()

      virtual void UseFillColor(bool use_fill, const rgb_color *bar_color = NULL)
      virtual bool FillColor(rgb_color *bar_color) const

UseFillColor() sets the color used to fill the area of the slider bar that's "filled." That is, the part of the bar between the minimum value of the slider and the current thumb position. If the use_fill parameter is true, filling this area of the slider with the fill color is turned on. If use_fill is false, the entire slider bar is always drawn in the bar color.

FillColor() stores the current fill color in bar_color. The boolean value returned by the function is true if the fill color is being used, false if not.


Value() see SetValue()


ValueForPoint() see SetValue()


Archived Fields

The Archive() function adds the following fields to its BMessage argument:

Field Type code Meaning
"_mod_msg" B_RAW_TYPE The flattened modification message.
"_sdelay" B_INT32_TYPE The snooze amount.
"_bcolor" B_INT32_TYPE The bar color.
"_fcolor" B_INT32_TYPE The fill color.
"_min_lbl" B_STRING_TYPE The minimum limit label.
"_max_lbl" B_STRING_TYPE The maximum limit label.
"_min" B_INT32_TYPE The minimum possible value.
"_max" B_INT32_TYPE The maximum possible value.
"_incrementvalue" B_INT32_TYPE The keyboard navigation increment value.
"_hashcount" B_INT32_TYPE The number of hash marks to draw.
"_hashloc" B_INT16_TYPE Where to draw the hash marks.
"_sstyle" B_INT32_TYPE The thumb style.

Some of these fields may not be present if the setting they represent isn't used, or is the default value. For example, if there is no minimum limit label set, the "_min_lbl" field doesn't exist.






The Be Book, in lovely HTML, for BeOS Release 4.

Copyright © 1998 Be, Inc. All rights reserved.

Last modified March 4, 1998.