Merge branch 'dev_puontsi' into master_merge
[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 = 0, QWidget *aParent = 0 );\r
23         //! Destructor.\r
24         virtual ~MeetingInfoDialog();\r
25         \r
26         void setMeeting( Meeting * aMeeting );\r
27 \r
28 private:\r
29         void createDialogView(Meeting *aMeeting);\r
30 \r
31         static const int width = 200;\r
32         static const int height = 400;\r
33 \r
34 };\r
35 \r
36 #endif /*MEETINGINFODIALOG_H_*/\r