📄 dataform.h
字号:
/* Copyright (c) 2005-2008 by Jakob Schroeter <js@camaya.net> This file is part of the gloox library. http://camaya.net/gloox This software is distributed under a license. The full license agreement can be found in the file LICENSE in this distribution. This software may not be copied, modified, sold or distributed other than expressed in the named license agreement. This software is distributed without any warranty.*/#ifndef DATAFORM_H__#define DATAFORM_H__#include "dataformbase.h"#include <string>#include <list>namespace gloox{ class Tag; /** * @brief An abstraction of a XEP-0004 Data Form. * * * * @author Jakob Schroeter <js@camaya.net> * @since 0.7 */ class GLOOX_API DataForm : public DataFormBase { public: /** * Describes the possible Form Types. */ enum DataFormType { FormTypeForm, /**< The forms-processing entity is asking the forms-submitting entity to * complete a form. */ FormTypeSubmit, /**< The forms-submitting entity is submitting data to the * forms-processing entity. */ FormTypeCancel, /**< The forms-submitting entity has cancelled submission of data to the * forms-processing entity. */ FormTypeResult, /**< The forms-processing entity is returning data (e.g., search results) * to the forms-submitting entity, or the data is a generic data set. */ FormTypeInvalid /**< The form is invalid. Only possible if the form was created from an * Tag which doesn't correctly describe a Data Form. */ }; /** * Constructs a new, empty form. * @param type The form type. * @param instructions Natural-language instructions for filling out the form. Should not contain * newlines (\\n, \\r). * @param title The natural-language title of the form. Should not contain newlines (\\n, \\r). */ DataForm( DataFormType type, const StringList& instructions, const std::string& title = "" ); /** * Constructs a new, empty form without any instructions or title set. Probably best suited for * result forms. * @param type The form type. * @param title The natural-language title of the form. Should not contain newlines (\\n, \\r). * @since 0.9 */ DataForm( DataFormType type, const std::string& title = "" ); /** * Constructs a new DataForm from an existing Tag/XML representation. * @param tag The existing form to parse. */ DataForm( Tag *tag ); /** * Constructs an empty DataForm. Its type is FormTypeInvalid. */ DataForm(); /** * Virtual destructor. */ virtual ~DataForm(); /** * Use this function to create a Tag representation of the form. * @return A Tag hierarchically describing the form, or NULL if the form is invalid (i.e. * created from a Tag not correctly describing a Data Form). * @note The caller is responsible for deleting the Tag. */ Tag* tag() const; /** * Use this function to retrieve the title of the form. * @return The title of the form. */ const std::string& title() const { return m_title; } /** * Use this function to set the title of the form. * @param title The new title of the form. * @note The title should not contain newlines (\\n, \\r). */ void setTitle( const std::string& title ) { m_title = title; } /** * Retrieves the natural-language instructions for the form. * @return The fill-in instructions for the form. */ const StringList& instructions() const { return m_instructions; } /** * Use this function to set natural-language instructions for the form. * @param instructions The instructions for the form. * @note The instructions should not contain newlines (\\n, \\r). Instead, every line should be an * element of the StringMap. This allows for platform dependent newline handling on the target * platform. */ void setInstructions( const StringList& instructions ) { m_instructions = instructions; } /** * Returns the form's type. * @return The form's type. * @since 0.9 */ DataForm::DataFormType type() const { return m_type; } /** * Parses the given Tag and creates an appropriate DataForm representation. * @param tag The Tag to parse. * @return @b True on success, @b false otherwise. * @since 0.9 */ bool parse( Tag *tag ); private: StringList m_instructions; DataFormType m_type; std::string m_title; };}#endif // DATAFORM_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -