added utility funtions for expand margins (in styleBox)
This commit is contained in:
parent
4717d37bfa
commit
32f4918f02
2 changed files with 42 additions and 0 deletions
|
@ -191,6 +191,22 @@ void StyleBoxTexture::set_expand_margin_size(Margin p_expand_margin, float p_siz
|
||||||
emit_changed();
|
emit_changed();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void StyleBoxTexture::set_expand_margin_size_individual(float p_left, float p_top, float p_right, float p_bottom) {
|
||||||
|
expand_margin[MARGIN_LEFT] = p_left;
|
||||||
|
expand_margin[MARGIN_TOP] = p_top;
|
||||||
|
expand_margin[MARGIN_RIGHT] = p_right;
|
||||||
|
expand_margin[MARGIN_BOTTOM] = p_bottom;
|
||||||
|
emit_changed();
|
||||||
|
}
|
||||||
|
|
||||||
|
void StyleBoxTexture::set_expand_margin_size_all(float p_expand_margin_size) {
|
||||||
|
for (int i = 0; i < 4; i++) {
|
||||||
|
|
||||||
|
expand_margin[i] = p_expand_margin_size;
|
||||||
|
}
|
||||||
|
emit_changed();
|
||||||
|
}
|
||||||
|
|
||||||
float StyleBoxTexture::get_expand_margin_size(Margin p_expand_margin) const {
|
float StyleBoxTexture::get_expand_margin_size(Margin p_expand_margin) const {
|
||||||
|
|
||||||
ERR_FAIL_INDEX_V(p_expand_margin, 4, 0);
|
ERR_FAIL_INDEX_V(p_expand_margin, 4, 0);
|
||||||
|
@ -257,6 +273,8 @@ void StyleBoxTexture::_bind_methods() {
|
||||||
ClassDB::bind_method(D_METHOD("get_margin_size", "margin"), &StyleBoxTexture::get_margin_size);
|
ClassDB::bind_method(D_METHOD("get_margin_size", "margin"), &StyleBoxTexture::get_margin_size);
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("set_expand_margin_size", "margin", "size"), &StyleBoxTexture::set_expand_margin_size);
|
ClassDB::bind_method(D_METHOD("set_expand_margin_size", "margin", "size"), &StyleBoxTexture::set_expand_margin_size);
|
||||||
|
ClassDB::bind_method(D_METHOD("set_expand_margin_all", "size"), &StyleBoxFlat::set_expand_margin_size_all);
|
||||||
|
ClassDB::bind_method(D_METHOD("set_expand_margin_individual", "size_left", "size_top", "size_right", "size_bottom"), &StyleBoxFlat::set_expand_margin_size_individual);
|
||||||
ClassDB::bind_method(D_METHOD("get_expand_margin_size", "margin"), &StyleBoxTexture::get_expand_margin_size);
|
ClassDB::bind_method(D_METHOD("get_expand_margin_size", "margin"), &StyleBoxTexture::get_expand_margin_size);
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("set_region_rect", "region"), &StyleBoxTexture::set_region_rect);
|
ClassDB::bind_method(D_METHOD("set_region_rect", "region"), &StyleBoxTexture::set_region_rect);
|
||||||
|
@ -421,7 +439,25 @@ void StyleBoxFlat::set_expand_margin_size(Margin p_expand_margin, float p_size)
|
||||||
expand_margin[p_expand_margin] = p_size;
|
expand_margin[p_expand_margin] = p_size;
|
||||||
emit_changed();
|
emit_changed();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void StyleBoxFlat::set_expand_margin_size_individual(float p_left, float p_top, float p_right, float p_bottom) {
|
||||||
|
expand_margin[MARGIN_LEFT] = p_left;
|
||||||
|
expand_margin[MARGIN_TOP] = p_top;
|
||||||
|
expand_margin[MARGIN_RIGHT] = p_right;
|
||||||
|
expand_margin[MARGIN_BOTTOM] = p_bottom;
|
||||||
|
emit_changed();
|
||||||
|
}
|
||||||
|
|
||||||
|
void StyleBoxFlat::set_expand_margin_size_all(float p_expand_margin_size) {
|
||||||
|
for (int i = 0; i < 4; i++) {
|
||||||
|
|
||||||
|
expand_margin[i] = p_expand_margin_size;
|
||||||
|
}
|
||||||
|
emit_changed();
|
||||||
|
}
|
||||||
|
|
||||||
float StyleBoxFlat::get_expand_margin_size(Margin p_expand_margin) const {
|
float StyleBoxFlat::get_expand_margin_size(Margin p_expand_margin) const {
|
||||||
|
|
||||||
return expand_margin[p_expand_margin];
|
return expand_margin[p_expand_margin];
|
||||||
}
|
}
|
||||||
void StyleBoxFlat::set_filled(bool p_filled) {
|
void StyleBoxFlat::set_filled(bool p_filled) {
|
||||||
|
@ -736,6 +772,8 @@ void StyleBoxFlat::_bind_methods() {
|
||||||
ClassDB::bind_method(D_METHOD("get_corner_radius", "corner"), &StyleBoxFlat::get_corner_radius);
|
ClassDB::bind_method(D_METHOD("get_corner_radius", "corner"), &StyleBoxFlat::get_corner_radius);
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("set_expand_margin", "margin", "size"), &StyleBoxFlat::set_expand_margin_size);
|
ClassDB::bind_method(D_METHOD("set_expand_margin", "margin", "size"), &StyleBoxFlat::set_expand_margin_size);
|
||||||
|
ClassDB::bind_method(D_METHOD("set_expand_margin_all", "size"), &StyleBoxFlat::set_expand_margin_size_all);
|
||||||
|
ClassDB::bind_method(D_METHOD("set_expand_margin_individual", "size_left", "size_top", "size_right", "size_bottom"), &StyleBoxFlat::set_expand_margin_size_individual);
|
||||||
ClassDB::bind_method(D_METHOD("get_expand_margin", "margin"), &StyleBoxFlat::get_expand_margin_size);
|
ClassDB::bind_method(D_METHOD("get_expand_margin", "margin"), &StyleBoxFlat::get_expand_margin_size);
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("set_filled", "filled"), &StyleBoxFlat::set_filled);
|
ClassDB::bind_method(D_METHOD("set_filled", "filled"), &StyleBoxFlat::set_filled);
|
||||||
|
|
|
@ -101,6 +101,8 @@ protected:
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void set_expand_margin_size(Margin p_expand_margin, float p_size);
|
void set_expand_margin_size(Margin p_expand_margin, float p_size);
|
||||||
|
void set_expand_margin_size_all(float p_expand_margin_size);
|
||||||
|
void set_expand_margin_size_individual(float p_left, float p_top, float p_right, float p_bottom);
|
||||||
float get_expand_margin_size(Margin p_expand_margin) const;
|
float get_expand_margin_size(Margin p_expand_margin) const;
|
||||||
|
|
||||||
void set_margin_size(Margin p_margin, float p_size);
|
void set_margin_size(Margin p_margin, float p_size);
|
||||||
|
@ -196,6 +198,8 @@ public:
|
||||||
|
|
||||||
//EXPANDS
|
//EXPANDS
|
||||||
void set_expand_margin_size(Margin p_expand_margin, float p_size);
|
void set_expand_margin_size(Margin p_expand_margin, float p_size);
|
||||||
|
void set_expand_margin_size_all(float p_expand_margin_size);
|
||||||
|
void set_expand_margin_size_individual(float p_left, float p_top, float p_right, float p_bottom);
|
||||||
float get_expand_margin_size(Margin p_expand_margin) const;
|
float get_expand_margin_size(Margin p_expand_margin) const;
|
||||||
|
|
||||||
//FILLED
|
//FILLED
|
||||||
|
|
Loading…
Reference in a new issue