2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* texture_progress.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 02:10:30 +01:00
|
|
|
/*************************************************************************/
|
2017-01-01 22:01:57 +01:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-08 00:11:42 +02:00
|
|
|
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 02:10:30 +01:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
|
|
|
#ifndef TEXTURE_PROGRESS_H
|
|
|
|
#define TEXTURE_PROGRESS_H
|
|
|
|
|
|
|
|
#include "scene/gui/range.h"
|
|
|
|
|
|
|
|
class TextureProgress : public Range {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(TextureProgress, Range);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Ref<Texture> under;
|
|
|
|
Ref<Texture> progress;
|
|
|
|
Ref<Texture> over;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
void _notification(int p_what);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2015-10-18 04:37:39 +02:00
|
|
|
enum FillMode {
|
2017-03-05 16:44:50 +01:00
|
|
|
FILL_LEFT_TO_RIGHT = 0,
|
2015-10-18 04:37:39 +02:00
|
|
|
FILL_RIGHT_TO_LEFT,
|
|
|
|
FILL_TOP_TO_BOTTOM,
|
|
|
|
FILL_BOTTOM_TO_TOP,
|
|
|
|
FILL_CLOCKWISE,
|
|
|
|
FILL_COUNTER_CLOCKWISE
|
|
|
|
};
|
|
|
|
|
|
|
|
void set_fill_mode(int p_fill);
|
|
|
|
int get_fill_mode();
|
|
|
|
|
|
|
|
void set_radial_initial_angle(float p_angle);
|
|
|
|
float get_radial_initial_angle();
|
|
|
|
|
2015-10-18 06:21:53 +02:00
|
|
|
void set_fill_degrees(float p_angle);
|
|
|
|
float get_fill_degrees();
|
|
|
|
|
2015-10-18 04:37:39 +02:00
|
|
|
void set_radial_center_offset(const Point2 &p_off);
|
|
|
|
Point2 get_radial_center_offset();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_under_texture(const Ref<Texture> &p_texture);
|
2014-02-10 02:10:30 +01:00
|
|
|
Ref<Texture> get_under_texture() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_progress_texture(const Ref<Texture> &p_texture);
|
2014-02-10 02:10:30 +01:00
|
|
|
Ref<Texture> get_progress_texture() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_over_texture(const Ref<Texture> &p_texture);
|
2014-02-10 02:10:30 +01:00
|
|
|
Ref<Texture> get_over_texture() const;
|
|
|
|
|
2017-08-21 06:01:06 +02:00
|
|
|
void set_stretch_margin(Margin p_margin, int p_size);
|
|
|
|
int get_stretch_margin(Margin p_margin) const;
|
|
|
|
|
|
|
|
void set_nine_patch_stretch(bool p_stretch);
|
|
|
|
bool get_nine_patch_stretch() const;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Size2 get_minimum_size() const;
|
|
|
|
|
|
|
|
TextureProgress();
|
2015-10-18 04:37:39 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
FillMode mode;
|
|
|
|
float rad_init_angle;
|
2015-10-18 06:21:53 +02:00
|
|
|
float rad_max_degrees;
|
2015-10-18 04:37:39 +02:00
|
|
|
Point2 rad_center_off;
|
2017-08-21 06:01:06 +02:00
|
|
|
bool nine_patch_stretch;
|
|
|
|
int stretch_margin[4];
|
2015-10-18 04:37:39 +02:00
|
|
|
|
|
|
|
Point2 unit_val_to_uv(float val);
|
|
|
|
Point2 get_relative_center();
|
2017-08-21 06:01:06 +02:00
|
|
|
void draw_nine_patch_stretched(const Ref<Texture> &p_texture, FillMode p_mode, double p_ratio);
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2017-08-20 17:45:01 +02:00
|
|
|
VARIANT_ENUM_CAST(TextureProgress::FillMode);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#endif // TEXTURE_PROGRESS_H
|