1
0
Disbranĉigi 0
Ĉi tiu deponejo arĥiviĝis je 2024-01-29. Vi povas vidi kaj elŝuti dosierojn, sed ne povas puŝi nek raporti problemojn nek tirpeti.
ImageControlLook/ImageControlLook.h

143 lines
4.1 KiB
C
Raw Normal View History

2022-06-11 13:00:24 -05:00
/*
* Copyright 2009-2021 Haiku, Inc.
2022-06-11 13:00:24 -05:00
* Copyright 2022, Jaidyn Levesque <jadedctrl@teknik.io>
* All rights reserved. Distributed under the terms of the MIT license.
*/
#ifndef IMAGE_CONTROL_LOOK_H
#define IMAGE_CONTROL_LOOK_H
#include <array>
#include <Bitmap.h>
2022-06-11 13:00:24 -05:00
#include <ControlLook.h>
#include <HaikuControlLook.h>
#include <Path.h>
2022-06-11 13:00:24 -05:00
class BControl;
class BGradientLinear;
class BView;
using BPrivate::HaikuControlLook;
enum {
ICL_MIDDLE,
ICL_LEFT,
ICL_RIGHT,
ICL_NO_SIDE
};
enum {
ICL_NORMAL,
ICL_INACTIVE,
ICL_HOVER,
ICL_DISABLED,
ICL_ACTIVATED
};
const char* kStates[] = { "Normal", "Inactive", "Hover", "Disabled", "Activated" };
const char* kSides[] = { "Middle", "Left", "Right", "" };
typedef std::array<std::array<BBitmap*, 5>, 3> SidedImages;
typedef std::array<BBitmap*, 5> UnsidedImages;
2022-06-11 13:00:24 -05:00
class ImageControlLook : public HaikuControlLook {
public:
ImageControlLook(image_id id);
virtual ~ImageControlLook();
virtual void DrawButtonFrame(BView* view, BRect& rect,
const BRect& updateRect,
const rgb_color& base,
const rgb_color& background,
uint32 flags = 0,
uint32 borders = B_ALL_BORDERS);
virtual void DrawButtonFrame(BView* view, BRect& rect,
const BRect& updateRect,
float radius,
const rgb_color& base,
const rgb_color& background,
uint32 flags = 0,
uint32 borders = B_ALL_BORDERS);
virtual void DrawButtonFrame(BView* view, BRect& rect,
const BRect& updateRect,
float leftTopRadius,
float rightTopRadius,
float leftBottomRadius,
float rightBottomRadius,
const rgb_color& base,
const rgb_color& background,
uint32 flags = 0,
uint32 borders = B_ALL_BORDERS);
virtual void DrawButtonBackground(BView* view, BRect& rect,
const BRect& updateRect,
const rgb_color& base,
uint32 flags = 0,
uint32 borders = B_ALL_BORDERS,
orientation orientation = B_HORIZONTAL);
virtual void DrawButtonBackground(BView* view, BRect& rect,
const BRect& updateRect,
float radius,
const rgb_color& base,
uint32 flags = 0,
uint32 borders = B_ALL_BORDERS,
orientation orientation = B_HORIZONTAL);
virtual void DrawButtonBackground(BView* view, BRect& rect,
const BRect& updateRect,
float leftTopRadius,
float rightTopRadius,
float leftBottomRadius,
float rightBottomRadius,
const rgb_color& base,
uint32 flags = 0,
uint32 borders = B_ALL_BORDERS,
orientation orientation = B_HORIZONTAL);
virtual void DrawCheckBox(BView* view, BRect& rect,
const BRect& updateRect,
const rgb_color& base,
uint32 flags = 0);
virtual void DrawSliderThumb(BView* view, BRect& rect,
const BRect& updateRect,
const rgb_color& base, uint32 flags,
orientation orientation);
virtual void DrawSliderTriangle(BView* view, BRect& rect,
const BRect& updateRect,
const rgb_color& base, uint32 flags,
orientation orientation);
virtual void DrawSliderTriangle(BView* view, BRect& rect,
const BRect& updateRect,
const rgb_color& base,
const rgb_color& fill, uint32 flags,
orientation orientation);
private:
bool _DrawImage(const char* type, uint32 state, BView* view, BRect rect,
orientation orientation = B_HORIZONTAL);
bool _DrawTiledImage(const char* type, uint32 state, BView* view,
BRect rect, BRect updateRect,
orientation orientation = B_HORIZONTAL);
BBitmap* _Image(const char* type, uint32 state, uint32 side = ICL_NO_SIDE);
const char* _ImagePath(const char* type, uint32 state,
uint32 side = ICL_NO_SIDE);
uint32 _FlagsToState(uint32 flags);
BPath fImageRoot;
SidedImages fButton;
UnsidedImages fCheckBox_Checked;
UnsidedImages fCheckBox_Unchecked;
UnsidedImages fSliderThumb;
UnsidedImages fSliderTriangle;
2022-06-11 13:00:24 -05:00
};
#endif // IMAGE_CONTROL_LOOK_H