a62cb322f61b5f67e93dd9711d3bd3cb823f3730
[qtmeetings] / src / UserInterface / Views / MeetingInfoDialog.h
1 #ifndef MEETINGINFODIALOG_H_\r
2 #define MEETINGINFODIALOG_H_\r
3 \r
4 #include <QDialog>\r
5 \r
6 class Meeting;\r
7 class QLabel;\r
8 \r
9 //! UserInterface class. Provides detailed information about meetings in a dialog box.\r
10 /*!\r
11  * UserInterface class. Provides detailed information about meetings in a dialog box.\r
12  */\r
13 class MeetingInfoDialog : public QDialog\r
14 {\r
15 public:\r
16         //! Constructor.\r
17         /*!\r
18          * Constructor to initialize MeetingInfoDialog instances.\r
19          * \param aMeeting The Meeting instance which is needed to be presented in detail.\r
20          * \param aParent Pointer to the parent widget. Optional.\r
21          */\r
22         MeetingInfoDialog( Meeting *aMeeting, QWidget *aParent = 0 );\r
23         //! Destructor.\r
24         virtual ~MeetingInfoDialog();\r
25 \r
26 private:\r
27 \r
28         static const int width = 200;\r
29         static const int height = 400;\r
30 \r
31 };\r
32 \r
33 #endif /*MEETINGINFODIALOG_H_*/\r