2009-08-25 18:13:59 +04:00
|
|
|
/*
|
2009-08-27 15:12:41 +04:00
|
|
|
* Copyright 2009, Haiku, Inc. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
2009-08-25 18:13:59 +04:00
|
|
|
*/
|
2009-01-08 18:48:10 +03:00
|
|
|
#ifndef _CHANNEL_SLIDER_H
|
2002-10-23 17:54:44 +04:00
|
|
|
#define _CHANNEL_SLIDER_H
|
|
|
|
|
2009-01-08 18:48:10 +03:00
|
|
|
|
2002-10-23 17:54:44 +04:00
|
|
|
#include <ChannelControl.h>
|
|
|
|
|
2009-01-08 18:48:10 +03:00
|
|
|
|
Implemented a new look for the Haiku interface controls. It was
overheard that they looked too ninety-ish.
TODO: The code behind this is work in progress. The basic idea
is to extract all drawing code into a new class BControlLook,
of which there is a global instance be_control_look, instantiated
in InterfaceDefs.cpp. At the moment, all the old drawing code is
still there, and the usage of be_control_look is inside if-bodies
checking the instance against NULL. In another words, by not
instanitating be_control_look, you can revert back to the old look.
BControlLook's job is to provide reusable methods for drawing
certain types of frames, backgrounds and labels, so that application
developers can make controls that re-use the same drawing code
as built-in controls and adopt to changes made there. I have added
the notion of "borders". Each of the frame drawing methods can be
made to draw certain borders only, which is supposed to help when
controls shall visually attach. This feature is not fully explored
at all ATM.
TODO: Update BColumnListView header view and BStringItem text
spacing. Update other apps where it makes sense to use BControlLook.
For the moment, only Tracker and LaunchBox are updated. More...
NOTE: The new look is not very radically different, so that existing
apps do not immediately look too ugly or out of place.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29221 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-02-15 21:23:19 +03:00
|
|
|
class BChannelSlider : public BChannelControl {
|
2002-10-23 17:54:44 +04:00
|
|
|
public:
|
Implemented a new look for the Haiku interface controls. It was
overheard that they looked too ninety-ish.
TODO: The code behind this is work in progress. The basic idea
is to extract all drawing code into a new class BControlLook,
of which there is a global instance be_control_look, instantiated
in InterfaceDefs.cpp. At the moment, all the old drawing code is
still there, and the usage of be_control_look is inside if-bodies
checking the instance against NULL. In another words, by not
instanitating be_control_look, you can revert back to the old look.
BControlLook's job is to provide reusable methods for drawing
certain types of frames, backgrounds and labels, so that application
developers can make controls that re-use the same drawing code
as built-in controls and adopt to changes made there. I have added
the notion of "borders". Each of the frame drawing methods can be
made to draw certain borders only, which is supposed to help when
controls shall visually attach. This feature is not fully explored
at all ATM.
TODO: Update BColumnListView header view and BStringItem text
spacing. Update other apps where it makes sense to use BControlLook.
For the moment, only Tracker and LaunchBox are updated. More...
NOTE: The new look is not very radically different, so that existing
apps do not immediately look too ugly or out of place.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29221 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-02-15 21:23:19 +03:00
|
|
|
BChannelSlider(BRect area, const char* name,
|
|
|
|
const char* label, BMessage* message,
|
|
|
|
int32 channels = 1,
|
|
|
|
uint32 resizeMode
|
|
|
|
= B_FOLLOW_LEFT | B_FOLLOW_TOP,
|
|
|
|
uint32 flags = B_WILL_DRAW);
|
|
|
|
BChannelSlider(BRect area, const char* name,
|
|
|
|
const char* label, BMessage* message,
|
|
|
|
enum orientation orientation,
|
|
|
|
int32 channels = 1,
|
|
|
|
uint32 resizeMode
|
|
|
|
= B_FOLLOW_LEFT | B_FOLLOW_TOP,
|
|
|
|
uint32 flags = B_WILL_DRAW);
|
|
|
|
BChannelSlider(const char* name,
|
|
|
|
const char* label, BMessage* message,
|
|
|
|
enum orientation orientation,
|
|
|
|
int32 channels = 1,
|
|
|
|
uint32 flags = B_WILL_DRAW);
|
|
|
|
BChannelSlider(BMessage* archive);
|
|
|
|
virtual ~BChannelSlider();
|
|
|
|
|
|
|
|
static BArchivable* Instantiate(BMessage* from);
|
2009-08-25 18:13:59 +04:00
|
|
|
virtual status_t Archive(BMessage* into,
|
|
|
|
bool deep = true) const;
|
Implemented a new look for the Haiku interface controls. It was
overheard that they looked too ninety-ish.
TODO: The code behind this is work in progress. The basic idea
is to extract all drawing code into a new class BControlLook,
of which there is a global instance be_control_look, instantiated
in InterfaceDefs.cpp. At the moment, all the old drawing code is
still there, and the usage of be_control_look is inside if-bodies
checking the instance against NULL. In another words, by not
instanitating be_control_look, you can revert back to the old look.
BControlLook's job is to provide reusable methods for drawing
certain types of frames, backgrounds and labels, so that application
developers can make controls that re-use the same drawing code
as built-in controls and adopt to changes made there. I have added
the notion of "borders". Each of the frame drawing methods can be
made to draw certain borders only, which is supposed to help when
controls shall visually attach. This feature is not fully explored
at all ATM.
TODO: Update BColumnListView header view and BStringItem text
spacing. Update other apps where it makes sense to use BControlLook.
For the moment, only Tracker and LaunchBox are updated. More...
NOTE: The new look is not very radically different, so that existing
apps do not immediately look too ugly or out of place.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29221 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-02-15 21:23:19 +03:00
|
|
|
|
|
|
|
virtual void AttachedToWindow();
|
|
|
|
virtual void AllAttached();
|
|
|
|
virtual void DetachedFromWindow();
|
|
|
|
virtual void AllDetached();
|
|
|
|
|
|
|
|
virtual void MessageReceived(BMessage* message);
|
|
|
|
|
2009-08-25 18:13:59 +04:00
|
|
|
virtual void Draw(BRect updateRect);
|
Implemented a new look for the Haiku interface controls. It was
overheard that they looked too ninety-ish.
TODO: The code behind this is work in progress. The basic idea
is to extract all drawing code into a new class BControlLook,
of which there is a global instance be_control_look, instantiated
in InterfaceDefs.cpp. At the moment, all the old drawing code is
still there, and the usage of be_control_look is inside if-bodies
checking the instance against NULL. In another words, by not
instanitating be_control_look, you can revert back to the old look.
BControlLook's job is to provide reusable methods for drawing
certain types of frames, backgrounds and labels, so that application
developers can make controls that re-use the same drawing code
as built-in controls and adopt to changes made there. I have added
the notion of "borders". Each of the frame drawing methods can be
made to draw certain borders only, which is supposed to help when
controls shall visually attach. This feature is not fully explored
at all ATM.
TODO: Update BColumnListView header view and BStringItem text
spacing. Update other apps where it makes sense to use BControlLook.
For the moment, only Tracker and LaunchBox are updated. More...
NOTE: The new look is not very radically different, so that existing
apps do not immediately look too ugly or out of place.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29221 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-02-15 21:23:19 +03:00
|
|
|
virtual void MouseDown(BPoint where);
|
|
|
|
virtual void MouseUp(BPoint where);
|
|
|
|
virtual void MouseMoved(BPoint where, uint32 transit,
|
|
|
|
const BMessage* dragMessage);
|
|
|
|
virtual void WindowActivated(bool state);
|
|
|
|
virtual void KeyDown(const char* bytes, int32 numBytes);
|
|
|
|
virtual void KeyUp(const char* bytes, int32 numBytes);
|
|
|
|
virtual void FrameResized(float width, float height);
|
|
|
|
|
|
|
|
virtual void SetFont(const BFont* font,
|
|
|
|
uint32 mask = B_FONT_ALL);
|
|
|
|
virtual void MakeFocus(bool focusState = true);
|
|
|
|
|
|
|
|
virtual void GetPreferredSize(float* _width, float* _height);
|
|
|
|
|
2009-08-25 18:13:59 +04:00
|
|
|
virtual BHandler* ResolveSpecifier(BMessage* message,
|
|
|
|
int32 index, BMessage* specifier,
|
|
|
|
int32 form, const char* property);
|
Implemented a new look for the Haiku interface controls. It was
overheard that they looked too ninety-ish.
TODO: The code behind this is work in progress. The basic idea
is to extract all drawing code into a new class BControlLook,
of which there is a global instance be_control_look, instantiated
in InterfaceDefs.cpp. At the moment, all the old drawing code is
still there, and the usage of be_control_look is inside if-bodies
checking the instance against NULL. In another words, by not
instanitating be_control_look, you can revert back to the old look.
BControlLook's job is to provide reusable methods for drawing
certain types of frames, backgrounds and labels, so that application
developers can make controls that re-use the same drawing code
as built-in controls and adopt to changes made there. I have added
the notion of "borders". Each of the frame drawing methods can be
made to draw certain borders only, which is supposed to help when
controls shall visually attach. This feature is not fully explored
at all ATM.
TODO: Update BColumnListView header view and BStringItem text
spacing. Update other apps where it makes sense to use BControlLook.
For the moment, only Tracker and LaunchBox are updated. More...
NOTE: The new look is not very radically different, so that existing
apps do not immediately look too ugly or out of place.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@29221 a95241bf-73f2-0310-859d-f6bbb57e9c96
2009-02-15 21:23:19 +03:00
|
|
|
virtual status_t GetSupportedSuites(BMessage* data);
|
2009-01-08 18:48:10 +03:00
|
|
|
|
2009-08-25 18:13:59 +04:00
|
|
|
virtual void SetEnabled(bool on);
|
2009-01-08 18:48:10 +03:00
|
|
|
|
2009-08-25 18:13:59 +04:00
|
|
|
virtual orientation Orientation() const;
|
|
|
|
void SetOrientation(enum orientation orientation);
|
2009-01-08 18:48:10 +03:00
|
|
|
|
2009-08-25 18:13:59 +04:00
|
|
|
virtual int32 MaxChannelCount() const;
|
|
|
|
virtual bool SupportsIndividualLimits() const;
|
|
|
|
|
|
|
|
virtual void DrawChannel(BView* into, int32 channel,
|
|
|
|
BRect area, bool pressed);
|
|
|
|
|
|
|
|
virtual void DrawGroove(BView* into, int32 channel,
|
|
|
|
BPoint leftTop, BPoint rightBottom);
|
|
|
|
|
|
|
|
virtual void DrawThumb(BView* into, int32 channel,
|
|
|
|
BPoint where, bool pressed);
|
|
|
|
|
|
|
|
virtual const BBitmap* ThumbFor(int32 channel, bool pressed);
|
|
|
|
virtual BRect ThumbFrameFor(int32 channel);
|
|
|
|
virtual float ThumbDeltaFor(int32 channel);
|
|
|
|
virtual float ThumbRangeFor(int32 channel);
|
2009-01-08 18:48:10 +03:00
|
|
|
|
2009-08-25 18:13:59 +04:00
|
|
|
private:
|
|
|
|
// FBC padding
|
|
|
|
BChannelSlider(const BChannelSlider&);
|
|
|
|
BChannelSlider& operator=(const BChannelSlider&);
|
|
|
|
|
|
|
|
|
|
|
|
virtual void _Reserved_BChannelSlider_0(void*, ...);
|
|
|
|
virtual void _Reserved_BChannelSlider_1(void*, ...);
|
|
|
|
virtual void _Reserved_BChannelSlider_2(void*, ...);
|
|
|
|
virtual void _Reserved_BChannelSlider_3(void*, ...);
|
|
|
|
virtual void _Reserved_BChannelSlider_4(void*, ...);
|
|
|
|
virtual void _Reserved_BChannelSlider_5(void*, ...);
|
|
|
|
virtual void _Reserved_BChannelSlider_6(void*, ...);
|
|
|
|
virtual void _Reserved_BChannelSlider_7(void*, ...);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void _InitData();
|
|
|
|
void _FinishChange(bool update = false);
|
|
|
|
void _UpdateFontDimens();
|
|
|
|
void _DrawThumbs();
|
|
|
|
void _DrawGrooveFrame(BView* where,
|
|
|
|
const BRect& area);
|
|
|
|
void _MouseMovedCommon(BPoint point, BPoint point2);
|
2002-10-23 17:54:44 +04:00
|
|
|
|
|
|
|
private:
|
2009-08-25 18:13:59 +04:00
|
|
|
float fBaseLine;
|
|
|
|
float fLineFeed;
|
|
|
|
BBitmap* fLeftKnob;
|
|
|
|
BBitmap* fMidKnob;
|
|
|
|
BBitmap* fRightKnob;
|
|
|
|
BBitmap* fBacking;
|
|
|
|
BView* fBackingView;
|
|
|
|
bool fIsVertical;
|
|
|
|
bool _padding_[3];
|
|
|
|
BPoint fClickDelta;
|
|
|
|
|
|
|
|
int32 fCurrentChannel;
|
|
|
|
bool fAllChannels;
|
|
|
|
int32* fInitialValues;
|
|
|
|
float fMinPoint;
|
|
|
|
int32 fFocusChannel;
|
|
|
|
|
|
|
|
uint32 _reserved_[12];
|
2002-10-23 17:54:44 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-08-25 18:13:59 +04:00
|
|
|
#endif // _CHANNEL_SLIDER_H
|