| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2017-01-14 10:52:54 +01:00
										 |  |  | /*  patch_9_rect.h                                                       */ | 
					
						
							| 
									
										
										
										
											2016-06-18 14:46:12 +02:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                    http://www.godotengine.org                         */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											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)    */ | 
					
						
							| 
									
										
										
										
											2016-06-18 14:46:12 +02: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.                */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2015-08-24 09:39:16 -03:00
										 |  |  | #ifndef PATCH_9_FRAME_H
 | 
					
						
							|  |  |  | #define PATCH_9_FRAME_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "scene/gui/control.h"
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  | 	@author Juan Linietsky <reduzio@gmail.com> | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2017-01-12 18:27:27 -03:00
										 |  |  | class NinePatchRect : public Control { | 
					
						
							| 
									
										
										
										
											2015-08-24 09:39:16 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(NinePatchRect, Control); | 
					
						
							| 
									
										
										
										
											2015-08-24 09:39:16 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-21 23:37:25 -03:00
										 |  |  | public: | 
					
						
							|  |  |  | 	enum AxisStretchMode { | 
					
						
							|  |  |  | 		AXIS_STRETCH_MODE_STRETCH, | 
					
						
							|  |  |  | 		AXIS_STRETCH_MODE_TILE, | 
					
						
							|  |  |  | 		AXIS_STRETCH_MODE_TILE_FIT, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-24 09:39:16 -03:00
										 |  |  | 	bool draw_center; | 
					
						
							|  |  |  | 	int margin[4]; | 
					
						
							| 
									
										
										
										
											2016-06-04 00:54:53 +08:00
										 |  |  | 	Rect2 region_rect; | 
					
						
							| 
									
										
										
										
											2015-08-24 09:39:16 -03:00
										 |  |  | 	Ref<Texture> texture; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-21 23:37:25 -03:00
										 |  |  | 	AxisStretchMode axis_h, axis_v; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | protected: | 
					
						
							| 
									
										
										
										
											2015-08-24 09:39:16 -03:00
										 |  |  | 	void _notification(int p_what); | 
					
						
							|  |  |  | 	virtual Size2 get_minimum_size() const; | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void set_texture(const Ref<Texture> &p_tex); | 
					
						
							| 
									
										
										
										
											2015-08-24 09:39:16 -03:00
										 |  |  | 	Ref<Texture> get_texture() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void set_patch_margin(Margin p_margin, int p_size); | 
					
						
							| 
									
										
										
										
											2015-08-24 09:39:16 -03:00
										 |  |  | 	int get_patch_margin(Margin p_margin) const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void set_region_rect(const Rect2 &p_region_rect); | 
					
						
							| 
									
										
										
										
											2016-06-04 00:54:53 +08:00
										 |  |  | 	Rect2 get_region_rect() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-24 09:39:16 -03:00
										 |  |  | 	void set_draw_center(bool p_enable); | 
					
						
							|  |  |  | 	bool get_draw_center() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-21 23:37:25 -03:00
										 |  |  | 	void set_h_axis_stretch_mode(AxisStretchMode p_mode); | 
					
						
							|  |  |  | 	AxisStretchMode get_h_axis_stretch_mode() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	void set_v_axis_stretch_mode(AxisStretchMode p_mode); | 
					
						
							|  |  |  | 	AxisStretchMode get_v_axis_stretch_mode() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-12 18:27:27 -03:00
										 |  |  | 	NinePatchRect(); | 
					
						
							|  |  |  | 	~NinePatchRect(); | 
					
						
							| 
									
										
										
										
											2015-08-24 09:39:16 -03:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2017-06-21 23:37:25 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | VARIANT_ENUM_CAST(NinePatchRect::AxisStretchMode) | 
					
						
							| 
									
										
										
										
											2015-08-24 09:39:16 -03:00
										 |  |  | #endif // PATCH_9_FRAME_H
 |