BRadioButton style fixes for docs.

This commit is contained in:
John Scipione
2014-05-28 14:10:35 -04:00
parent 274571d8a9
commit b29d84a85a
2 changed files with 66 additions and 60 deletions
+8 -9
View File
@@ -14,7 +14,7 @@ class BRadioButton : public BControl {
public: public:
BRadioButton(BRect frame, const char* name, BRadioButton(BRect frame, const char* name,
const char* label, BMessage* message, const char* label, BMessage* message,
uint32 resizMask uint32 resizingMode
= B_FOLLOW_LEFT | B_FOLLOW_TOP, = B_FOLLOW_LEFT | B_FOLLOW_TOP,
uint32 flags = B_WILL_DRAW | B_NAVIGABLE); uint32 flags = B_WILL_DRAW | B_NAVIGABLE);
BRadioButton(const char* name, BRadioButton(const char* name,
@@ -23,15 +23,14 @@ public:
BRadioButton(const char* label, BRadioButton(const char* label,
BMessage* message); BMessage* message);
BRadioButton(BMessage* archive); BRadioButton(BMessage* data);
virtual ~BRadioButton(); virtual ~BRadioButton();
static BArchivable* Instantiate(BMessage* archive); static BArchivable* Instantiate(BMessage* data);
virtual status_t Archive(BMessage* archive, virtual status_t Archive(BMessage* data, bool deep = true) const;
bool deep = true) const;
virtual void Draw(BRect updateRect); virtual void Draw(BRect updateRect);
virtual void MouseDown(BPoint point); virtual void MouseDown(BPoint where);
virtual void AttachedToWindow(); virtual void AttachedToWindow();
virtual void KeyDown(const char* bytes, int32 numBytes); virtual void KeyDown(const char* bytes, int32 numBytes);
virtual void SetValue(int32 value); virtual void SetValue(int32 value);
@@ -42,11 +41,11 @@ public:
virtual void MessageReceived(BMessage* message); virtual void MessageReceived(BMessage* message);
virtual void WindowActivated(bool active); virtual void WindowActivated(bool active);
virtual void MouseUp(BPoint point); virtual void MouseUp(BPoint where);
virtual void MouseMoved(BPoint point, uint32 transit, virtual void MouseMoved(BPoint where, uint32 code,
const BMessage* dragMessage); const BMessage* dragMessage);
virtual void DetachedFromWindow(); virtual void DetachedFromWindow();
virtual void FrameMoved(BPoint newLocation); virtual void FrameMoved(BPoint newPosition);
virtual void FrameResized(float width, float height); virtual void FrameResized(float width, float height);
virtual BHandler* ResolveSpecifier(BMessage* message, virtual BHandler* ResolveSpecifier(BMessage* message,
+58 -51
View File
@@ -7,19 +7,14 @@
* Stephan Aßmus <[email protected]> * Stephan Aßmus <[email protected]>
*/ */
/*!
BRadioButton represents a single on/off button.
All sibling BRadioButton objects comprise a single
"multiple choice" control.
*/
#include <RadioButton.h> #include <RadioButton.h>
#include <algorithm> #include <algorithm>
#include <Box.h>
#include <ControlLook.h> #include <ControlLook.h>
#include <Debug.h> #include <Debug.h>
#include <Box.h>
#include <LayoutUtils.h> #include <LayoutUtils.h>
#include <Window.h> #include <Window.h>
@@ -27,9 +22,10 @@
BRadioButton::BRadioButton(BRect frame, const char* name, const char* label, BRadioButton::BRadioButton(BRect frame, const char* name, const char* label,
BMessage* message, uint32 resizMask, uint32 flags) BMessage* message, uint32 resizingMode, uint32 flags)
: BControl(frame, name, label, message, resizMask, flags | B_FRAME_EVENTS), :
fOutlined(false) BControl(frame, name, label, message, resizingMode, flags | B_FRAME_EVENTS),
fOutlined(false)
{ {
// Resize to minimum height if needed for BeOS compatibility // Resize to minimum height if needed for BeOS compatibility
float minHeight; float minHeight;
@@ -40,24 +36,26 @@ BRadioButton::BRadioButton(BRect frame, const char* name, const char* label,
BRadioButton::BRadioButton(const char* name, const char* label, BRadioButton::BRadioButton(const char* name, const char* label,
BMessage* message, uint32 flags) BMessage* message, uint32 flags)
: BControl(name, label, message, flags | B_FRAME_EVENTS), :
fOutlined(false) BControl(name, label, message, flags | B_FRAME_EVENTS),
fOutlined(false)
{ {
} }
BRadioButton::BRadioButton(const char* label, BMessage* message) BRadioButton::BRadioButton(const char* label, BMessage* message)
: BControl(NULL, label, message, :
B_WILL_DRAW | B_NAVIGABLE | B_FRAME_EVENTS), BControl(NULL, label, message, B_WILL_DRAW | B_NAVIGABLE | B_FRAME_EVENTS),
fOutlined(false) fOutlined(false)
{ {
} }
BRadioButton::BRadioButton(BMessage* archive) BRadioButton::BRadioButton(BMessage* data)
: BControl(archive), :
fOutlined(false) BControl(data),
fOutlined(false)
{ {
} }
@@ -68,19 +66,19 @@ BRadioButton::~BRadioButton()
BArchivable* BArchivable*
BRadioButton::Instantiate(BMessage* archive) BRadioButton::Instantiate(BMessage* data)
{ {
if (validate_instantiation(archive, "BRadioButton")) if (validate_instantiation(data, "BRadioButton"))
return new BRadioButton(archive); return new BRadioButton(data);
return NULL; return NULL;
} }
status_t status_t
BRadioButton::Archive(BMessage* archive, bool deep) const BRadioButton::Archive(BMessage* data, bool deep) const
{ {
return BControl::Archive(archive, deep); return BControl::Archive(data, deep);
} }
@@ -114,14 +112,14 @@ BRadioButton::Draw(BRect updateRect)
void void
BRadioButton::MouseDown(BPoint point) BRadioButton::MouseDown(BPoint where)
{ {
if (!IsEnabled()) if (!IsEnabled())
return; return;
fOutlined = true; fOutlined = true;
if (Window()->Flags() & B_ASYNCHRONOUS_CONTROLS) { if ((Window()->Flags() & B_ASYNCHRONOUS_CONTROLS) != 0) {
Invalidate(); Invalidate();
SetTracking(true); SetTracking(true);
SetMouseEventMask(B_POINTER_EVENTS, B_LOCK_WINDOW_FOCUS); SetMouseEventMask(B_POINTER_EVENTS, B_LOCK_WINDOW_FOCUS);
@@ -133,10 +131,8 @@ BRadioButton::MouseDown(BPoint point)
do { do {
snooze(40000); snooze(40000);
GetMouse(&where, &buttons, true);
GetMouse(&point, &buttons, true); bool inside = bounds.Contains(where);
bool inside = bounds.Contains(point);
if (fOutlined != inside) { if (fOutlined != inside) {
fOutlined = inside; fOutlined = inside;
@@ -149,9 +145,8 @@ BRadioButton::MouseDown(BPoint point)
_Redraw(); _Redraw();
SetValue(B_CONTROL_ON); SetValue(B_CONTROL_ON);
Invoke(); Invoke();
} else { } else
_Redraw(); _Redraw();
}
} }
} }
@@ -178,9 +173,9 @@ BRadioButton::KeyDown(const char* bytes, int32 numBytes)
SetValue(B_CONTROL_ON); SetValue(B_CONTROL_ON);
Invoke(); Invoke();
} }
break; break;
} }
default: default:
BControl::KeyDown(bytes, numBytes); BControl::KeyDown(bytes, numBytes);
} }
@@ -195,45 +190,45 @@ BRadioButton::SetValue(int32 value)
Invalidate(_KnobFrame()); Invalidate(_KnobFrame());
} }
if (!value) if (value == 0)
return; return;
BView* parent = Parent(); BView* parent = Parent();
BView* child = NULL; BView* child = NULL;
if (parent) { if (parent != NULL) {
// If the parent is a BBox, the group parent is the parent of the BBox // If the parent is a BBox, the group parent is the parent of the BBox
BBox* box = dynamic_cast<BBox*>(parent); BBox* box = dynamic_cast<BBox*>(parent);
if (box && box->LabelView() == this) if (box != NULL && box->LabelView() == this)
parent = box->Parent(); parent = box->Parent();
if (parent) { if (parent != NULL) {
BBox* box = dynamic_cast<BBox*>(parent); BBox* box = dynamic_cast<BBox*>(parent);
// If the parent is a BBox, skip the label if there is one // If the parent is a BBox, skip the label if there is one
if (box && box->LabelView()) if (box != NULL && box->LabelView())
child = parent->ChildAt(1); child = parent->ChildAt(1);
else else
child = parent->ChildAt(0); child = parent->ChildAt(0);
} else } else
child = Window()->ChildAt(0); child = Window()->ChildAt(0);
} else if (Window()) } else if (Window() != NULL)
child = Window()->ChildAt(0); child = Window()->ChildAt(0);
while (child) { while (child != NULL) {
BRadioButton* radio = dynamic_cast<BRadioButton*>(child); BRadioButton* radio = dynamic_cast<BRadioButton*>(child);
if (radio && (radio != this)) if (radio != NULL && (radio != this))
radio->SetValue(B_CONTROL_OFF); radio->SetValue(B_CONTROL_OFF);
else { else {
// If the child is a BBox, check if the label is a radiobutton // If the child is a BBox, check if the label is a radiobutton
BBox* box = dynamic_cast<BBox*>(child); BBox* box = dynamic_cast<BBox*>(child);
if (box && box->LabelView()) { if (box != NULL && box->LabelView()) {
radio = dynamic_cast<BRadioButton*>(box->LabelView()); radio = dynamic_cast<BRadioButton*>(box->LabelView());
if (radio && (radio != this)) if (radio != NULL && (radio != this))
radio->SetValue(B_CONTROL_OFF); radio->SetValue(B_CONTROL_OFF);
} }
} }
@@ -306,12 +301,12 @@ BRadioButton::WindowActivated(bool active)
void void
BRadioButton::MouseUp(BPoint point) BRadioButton::MouseUp(BPoint where)
{ {
if (!IsTracking()) if (!IsTracking())
return; return;
fOutlined = Bounds().Contains(point); fOutlined = Bounds().Contains(where);
if (fOutlined) { if (fOutlined) {
fOutlined = false; fOutlined = false;
if (Value() != B_CONTROL_ON) { if (Value() != B_CONTROL_ON) {
@@ -326,12 +321,13 @@ BRadioButton::MouseUp(BPoint point)
void void
BRadioButton::MouseMoved(BPoint point, uint32 transit, const BMessage* message) BRadioButton::MouseMoved(BPoint where, uint32 code,
const BMessage* dragMessage)
{ {
if (!IsTracking()) if (!IsTracking())
return; return;
bool inside = Bounds().Contains(point); bool inside = Bounds().Contains(where);
if (fOutlined != inside) { if (fOutlined != inside) {
fOutlined = inside; fOutlined = inside;
@@ -348,9 +344,9 @@ BRadioButton::DetachedFromWindow()
void void
BRadioButton::FrameMoved(BPoint newLocation) BRadioButton::FrameMoved(BPoint newPosition)
{ {
BControl::FrameMoved(newLocation); BControl::FrameMoved(newPosition);
} }
@@ -407,22 +403,27 @@ BRadioButton::Perform(perform_code code, void* _data)
((perform_data_min_size*)_data)->return_value ((perform_data_min_size*)_data)->return_value
= BRadioButton::MinSize(); = BRadioButton::MinSize();
return B_OK; return B_OK;
case PERFORM_CODE_MAX_SIZE: case PERFORM_CODE_MAX_SIZE:
((perform_data_max_size*)_data)->return_value ((perform_data_max_size*)_data)->return_value
= BRadioButton::MaxSize(); = BRadioButton::MaxSize();
return B_OK; return B_OK;
case PERFORM_CODE_PREFERRED_SIZE: case PERFORM_CODE_PREFERRED_SIZE:
((perform_data_preferred_size*)_data)->return_value ((perform_data_preferred_size*)_data)->return_value
= BRadioButton::PreferredSize(); = BRadioButton::PreferredSize();
return B_OK; return B_OK;
case PERFORM_CODE_LAYOUT_ALIGNMENT: case PERFORM_CODE_LAYOUT_ALIGNMENT:
((perform_data_layout_alignment*)_data)->return_value ((perform_data_layout_alignment*)_data)->return_value
= BRadioButton::LayoutAlignment(); = BRadioButton::LayoutAlignment();
return B_OK; return B_OK;
case PERFORM_CODE_HAS_HEIGHT_FOR_WIDTH: case PERFORM_CODE_HAS_HEIGHT_FOR_WIDTH:
((perform_data_has_height_for_width*)_data)->return_value ((perform_data_has_height_for_width*)_data)->return_value
= BRadioButton::HasHeightForWidth(); = BRadioButton::HasHeightForWidth();
return B_OK; return B_OK;
case PERFORM_CODE_GET_HEIGHT_FOR_WIDTH: case PERFORM_CODE_GET_HEIGHT_FOR_WIDTH:
{ {
perform_data_get_height_for_width* data perform_data_get_height_for_width* data
@@ -431,12 +432,14 @@ BRadioButton::Perform(perform_code code, void* _data)
&data->preferred); &data->preferred);
return B_OK; return B_OK;
} }
case PERFORM_CODE_SET_LAYOUT: case PERFORM_CODE_SET_LAYOUT:
{ {
perform_data_set_layout* data = (perform_data_set_layout*)_data; perform_data_set_layout* data = (perform_data_set_layout*)_data;
BRadioButton::SetLayout(data->layout); BRadioButton::SetLayout(data->layout);
return B_OK; return B_OK;
} }
case PERFORM_CODE_LAYOUT_INVALIDATED: case PERFORM_CODE_LAYOUT_INVALIDATED:
{ {
perform_data_layout_invalidated* data perform_data_layout_invalidated* data
@@ -444,11 +447,13 @@ BRadioButton::Perform(perform_code code, void* _data)
BRadioButton::LayoutInvalidated(data->descendants); BRadioButton::LayoutInvalidated(data->descendants);
return B_OK; return B_OK;
} }
case PERFORM_CODE_DO_LAYOUT: case PERFORM_CODE_DO_LAYOUT:
{ {
BRadioButton::DoLayout(); BRadioButton::DoLayout();
return B_OK; return B_OK;
} }
case PERFORM_CODE_SET_ICON: case PERFORM_CODE_SET_ICON:
{ {
perform_data_set_icon* data = (perform_data_set_icon*)_data; perform_data_set_icon* data = (perform_data_set_icon*)_data;
@@ -518,13 +523,15 @@ BRadioButton::_KnobFrame(const font_height& fontHeight) const
void void
BRadioButton::_Redraw() BRadioButton::_Redraw()
{ {
BRect b(Bounds()); BRect bounds(Bounds());
// fill background with ViewColor() // fill background with ViewColor()
rgb_color highColor = HighColor(); rgb_color highColor = HighColor();
SetHighColor(ViewColor()); SetHighColor(ViewColor());
FillRect(b); FillRect(bounds);
// restore previous HighColor() // restore previous HighColor()
SetHighColor(highColor); SetHighColor(highColor);
Draw(b); Draw(bounds);
Flush(); Flush();
} }