Merge pull request #33860 from nekomatata/stylebox-preview-shadow
StyleBox preview adjusted to fit all drawn content
This commit is contained in:
@@ -81,6 +81,10 @@ Size2 StyleBox::get_center_size() const {
|
||||
return Size2();
|
||||
}
|
||||
|
||||
Rect2 StyleBox::get_draw_rect(const Rect2 &p_rect) const {
|
||||
return p_rect;
|
||||
}
|
||||
|
||||
void StyleBox::_bind_methods() {
|
||||
|
||||
ClassDB::bind_method(D_METHOD("test_mask", "point", "rect"), &StyleBox::test_mask);
|
||||
@@ -175,6 +179,10 @@ float StyleBoxTexture::get_style_margin(Margin p_margin) const {
|
||||
return margin[p_margin];
|
||||
}
|
||||
|
||||
Rect2 StyleBoxTexture::get_draw_rect(const Rect2 &p_rect) const {
|
||||
return p_rect.grow_individual(expand_margin[MARGIN_LEFT], expand_margin[MARGIN_TOP], expand_margin[MARGIN_RIGHT], expand_margin[MARGIN_BOTTOM]);
|
||||
}
|
||||
|
||||
void StyleBoxTexture::draw(RID p_canvas_item, const Rect2 &p_rect) const {
|
||||
if (texture.is_null())
|
||||
return;
|
||||
@@ -685,6 +693,19 @@ inline void adapt_values(int p_index_a, int p_index_b, int *adapted_values, cons
|
||||
adapted_values[p_index_a] = MIN(p_max_a, adapted_values[p_index_a]);
|
||||
adapted_values[p_index_b] = MIN(p_max_b, adapted_values[p_index_b]);
|
||||
}
|
||||
|
||||
Rect2 StyleBoxFlat::get_draw_rect(const Rect2 &p_rect) const {
|
||||
Rect2 draw_rect = p_rect.grow_individual(expand_margin[MARGIN_LEFT], expand_margin[MARGIN_TOP], expand_margin[MARGIN_RIGHT], expand_margin[MARGIN_BOTTOM]);
|
||||
|
||||
if (shadow_size > 0) {
|
||||
Rect2 shadow_rect = draw_rect.grow(shadow_size);
|
||||
shadow_rect.position += shadow_offset;
|
||||
draw_rect = draw_rect.merge(shadow_rect);
|
||||
}
|
||||
|
||||
return draw_rect;
|
||||
}
|
||||
|
||||
void StyleBoxFlat::draw(RID p_canvas_item, const Rect2 &p_rect) const {
|
||||
|
||||
//PREPARATIONS
|
||||
|
||||
@@ -56,6 +56,7 @@ public:
|
||||
float get_margin(Margin p_margin) const;
|
||||
virtual Size2 get_center_size() const;
|
||||
|
||||
virtual Rect2 get_draw_rect(const Rect2 &p_rect) const;
|
||||
virtual void draw(RID p_canvas_item, const Rect2 &p_rect) const = 0;
|
||||
|
||||
CanvasItem *get_current_item_drawn() const;
|
||||
@@ -133,6 +134,7 @@ public:
|
||||
void set_modulate(const Color &p_modulate);
|
||||
Color get_modulate() const;
|
||||
|
||||
virtual Rect2 get_draw_rect(const Rect2 &p_rect) const;
|
||||
virtual void draw(RID p_canvas_item, const Rect2 &p_rect) const;
|
||||
|
||||
StyleBoxTexture();
|
||||
@@ -227,6 +229,7 @@ public:
|
||||
|
||||
virtual Size2 get_center_size() const;
|
||||
|
||||
virtual Rect2 get_draw_rect(const Rect2 &p_rect) const;
|
||||
virtual void draw(RID p_canvas_item, const Rect2 &p_rect) const;
|
||||
|
||||
StyleBoxFlat();
|
||||
|
||||
Reference in New Issue
Block a user