source: trunk/form_date_ui.h @ 350

Revision 350, 1.1 KB checked in by antonbatenev.ya.ru, 18 months ago (diff)

fix #5 - резиновая форма выбора даты/времени

  • Property svn:eol-style set to native
  • Property svn:keywords set to Date Author Revision Url Id
Line 
1/*!
2 * \file
3 * \brief GUI формы выбора даты/времени
4 *
5 * $Date$
6 * $Author$
7 * $Revision$
8 * $URL$
9 */
10
11#ifndef _avalon_form_date_ui_h_
12#define _avalon_form_date_ui_h_
13
14#include "sysheaders.h"
15
16/*!
17 * \brief GUI формы выбора даты/времени
18 */
19class FormDateUI : public QDialog
20{
21        Q_OBJECT
22
23        public:
24
25                FormDateUI  (QWidget* parent);
26                ~FormDateUI ();
27
28        protected:
29
30                QHBoxLayout* m_layout;                  /*!< \brief Общий layout         */
31                   QVBoxLayout* m_calendar_layout;      /*!< \brief Layout для календаря */
32                      QCalendarWidget* m_text_date;     /*!< \brief Календарь            */
33                      QTimeEdit*       m_text_time;     /*!< \brief Время                */
34                   QVBoxLayout* m_button_layout;        /*!< \brief Layout для кнопок    */
35                      QPushButton* m_button_ok;         /*!< \brief OK                   */
36                      QPushButton* m_button_cancel;     /*!< \brief Отмена               */
37                      QSpacerItem* m_spacer_button;     /*!< \brief Выравнивание кнопок  */
38};
39
40#endif
Note: See TracBrowser for help on using the repository browser.