diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-03-05 16:44:50 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-03-05 16:44:50 +0100 |
commit | 5dbf1809c6e3e905b94b8764e99491e608122261 (patch) | |
tree | 5e5a5360db15d86d59ec8c6e4f7eb511388c5a9a /core/translation.h | |
parent | 45438e9918d421b244bfd7776a30e67dc7f2d3e3 (diff) | |
download | redot-engine-5dbf1809c6e3e905b94b8764e99491e608122261.tar.gz |
A Whole New World (clang-format edition)
I can show you the code
Pretty, with proper whitespace
Tell me, coder, now when did
You last write readable code?
I can open your eyes
Make you see your bad indent
Force you to respect the style
The core devs agreed upon
A whole new world
A new fantastic code format
A de facto standard
With some sugar
Enforced with clang-format
A whole new world
A dazzling style we all dreamed of
And when we read it through
It's crystal clear
That now we're in a whole new world of code
Diffstat (limited to 'core/translation.h')
-rw-r--r-- | core/translation.h | 39 |
1 files changed, 17 insertions, 22 deletions
diff --git a/core/translation.h b/core/translation.h index feed352549..90ec3fddce 100644 --- a/core/translation.h +++ b/core/translation.h @@ -31,12 +31,10 @@ #include "resource.h" - class Translation : public Resource { - - GDCLASS( Translation, Resource ); - OBJ_SAVE_TYPE( Translation ); + GDCLASS(Translation, Resource); + OBJ_SAVE_TYPE(Translation); RES_BASE_EXTENSION("xl"); String locale; @@ -45,19 +43,18 @@ class Translation : public Resource { PoolVector<String> _get_message_list() const; PoolVector<String> _get_messages() const; - void _set_messages(const PoolVector<String>& p_messages); + void _set_messages(const PoolVector<String> &p_messages); + protected: static void _bind_methods(); public: - - - void set_locale(const String& p_locale); + void set_locale(const String &p_locale); _FORCE_INLINE_ String get_locale() const { return locale; } - void add_message( const StringName& p_src_text, const StringName& p_xlated_text ); - virtual StringName get_message(const StringName& p_src_text) const; //overridable for other implementations - void erase_message(const StringName& p_src_text); + void add_message(const StringName &p_src_text, const StringName &p_xlated_text); + virtual StringName get_message(const StringName &p_src_text) const; //overridable for other implementations + void erase_message(const StringName &p_src_text); void get_message_list(List<StringName> *r_messages) const; int get_message_count() const; @@ -65,7 +62,6 @@ public: Translation(); }; - class TranslationServer : public Object { GDCLASS(TranslationServer, Object); @@ -73,39 +69,38 @@ class TranslationServer : public Object { String locale; String fallback; - - Set< Ref<Translation> > translations; + Set<Ref<Translation> > translations; Ref<Translation> tool_translation; bool enabled; static TranslationServer *singleton; - bool _load_translations(const String& p_from); + bool _load_translations(const String &p_from); static void _bind_methods(); -public: +public: _FORCE_INLINE_ static TranslationServer *get_singleton() { return singleton; } //yes, portuguese is supported! - void set_enabled(bool p_enabled) { enabled=p_enabled; } + void set_enabled(bool p_enabled) { enabled = p_enabled; } _FORCE_INLINE_ bool is_enabled() const { return enabled; } - void set_locale(const String& p_locale); + void set_locale(const String &p_locale); String get_locale() const; void add_translation(const Ref<Translation> &p_translation); void remove_translation(const Ref<Translation> &p_translation); - StringName translate(const StringName& p_message) const; + StringName translate(const StringName &p_message) const; static Vector<String> get_all_locales(); static Vector<String> get_all_locale_names(); - static bool is_locale_valid(const String& p_locale); + static bool is_locale_valid(const String &p_locale); - void set_tool_translation(const Ref<Translation>& p_translation); - StringName tool_translate(const StringName& p_message) const; + void set_tool_translation(const Ref<Translation> &p_translation); + StringName tool_translate(const StringName &p_message) const; void setup(); |