source: trunk/form_input.h @ 236

Revision 236, 864 bytes checked in by antonbatenev.ya.ru, 3 years ago (diff)

fix #41 - Дозагрузка тем/сообщений по URL; Исправление ошибки с получением поломанных веток из хранилища

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Author Revision Url Id
Line 
1/*!
2 * \file
3 * \brief GUI формы запроса ввода пользователя (аналог InputBox)
4 *
5 * $Date$
6 * $Author$
7 * $Revision$
8 * $URL$
9 */
10
11#ifndef _avalon_form_input_h_
12#define _avalon_form_input_h_
13
14#include "form_input_ui.h"
15
16/*!
17 * \brief GUI формы запроса ввода пользователя (аналог InputBox)
18 */
19class FormInput : public FormInputUI
20{
21        Q_OBJECT
22
23        public:
24
25                /*!
26                 * \brief Конструктор
27                 * \param parent Родительский виджет (форма)
28                 * \param header Заголовок окна
29                 * \param message Текст приглашения
30                 * \param text Текст ввода
31                 */
32                FormInput  (QWidget* parent, const QString& header = QString(), const QString& message = QString(), const QString& text = QString());
33                ~FormInput ();
34
35                QString text ();
36};
37
38#endif
Note: See TracBrowser for help on using the repository browser.