diff options
author | Mattes D <github@xoft.cz> | 2016-09-25 12:42:05 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-09-25 12:42:05 +0200 |
commit | e169043a841824eacebeb7db7ecb202a7d3c4b02 (patch) | |
tree | 2867c0814251c68764cae34745447d2904a2c0b3 /src/CompositeChat.h | |
parent | InfoReg: Don't fail if there are no commands to register. (diff) | |
download | cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.tar cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.tar.gz cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.tar.bz2 cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.tar.lz cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.tar.xz cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.tar.zst cuberite-e169043a841824eacebeb7db7ecb202a7d3c4b02.zip |
Diffstat (limited to '')
-rw-r--r-- | src/CompositeChat.h | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/src/CompositeChat.h b/src/CompositeChat.h index 2c1ff5fab..ab16e9f72 100644 --- a/src/CompositeChat.h +++ b/src/CompositeChat.h @@ -122,25 +122,23 @@ public: typedef std::vector<cBasePart *> cParts; - // tolua_begin - - /** Creates a new empty chat message */ + /** Creates a new empty chat message. + Exported manually due to the other overload needing a manual export. */ cCompositeChat(void); /** Creates a new chat message and parses the text into parts. Recognizes "http:" and "https:" links and @color-codes. - Uses ParseText() for the actual parsing. */ + Uses ParseText() for the actual parsing. + Exported manually due to ToLua++ generating extra output parameter. */ cCompositeChat(const AString & a_ParseText, eMessageType a_MessageType = mtCustom); - ~cCompositeChat(); + ~cCompositeChat(); // tolua_export + + // The following are exported in ManualBindings in order to support chaining - they return "self" in Lua (#755) /** Removes all parts from the object. */ void Clear(void); - // tolua_end - - // The following are exported in ManualBindings in order to support chaining - they return *this in Lua (#755) - /** Adds a plain text part, with optional style. The default style is plain white text. */ void AddTextPart(const AString & a_Message, const AString & a_Style = ""); @@ -148,8 +146,6 @@ public: /** Adds a part that is translated client-side, with the formatting parameters and optional style. */ void AddClientTranslatedPart(const AString & a_TranslationID, const AStringVector & a_Parameters, const AString & a_Style = ""); - // tolua_begin - /** Adds a part that opens an URL when clicked. The default style is underlined light blue text. */ void AddUrlPart(const AString & a_Text, const AString & a_Url, const AString & a_Style = "u@c"); @@ -171,14 +167,14 @@ public: Recognizes "http:" and "https:" URLs and @color-codes. */ void ParseText(const AString & a_ParseText); + /** Adds the "underline" style to each part that is an URL. */ + void UnderlineUrls(void); + /** Sets the message type, which is indicated by prefixes added to the message when serializing Takes optional AdditionalMessageTypeData to set m_AdditionalMessageTypeData. See said variable for more documentation. - */ + Exported manually, because ToLua++ would generate extra return values. */ void SetMessageType(eMessageType a_MessageType, const AString & a_AdditionalMessageTypeData = ""); - /** Adds the "underline" style to each part that is an URL. */ - void UnderlineUrls(void); - // tolua_begin /** Returns the message type set previously by SetMessageType(). */ |