Merge branch 'master' of https://git.maemo.org/projects/qtmeetings
[qtmeetings] / src / UserInterface / Views / WeeklyViewWidget.cpp
1 #include "WeeklyViewWidget.h"\r
2 \r
3 #include <QLabel>\r
4 #include <QPushButton>\r
5 #include <QVBoxLayout>\r
6 #include <QPixmap>\r
7 #include <QTimer>\r
8 #include <QKeyEvent>\r
9 #include <QTabletEvent>\r
10 #include "Configuration.h"\r
11 #include "DisplaySettings.h"\r
12 #include "Meeting.h"\r
13 #include "Room.h"\r
14 #include "MeetingRoomCombo.h"\r
15 #include "DigitalTimeDisplayWidget.h"\r
16 #include "ScheduleWidget.h"\r
17 #include "ToolBox.h"\r
18 #include "MeetingInfoDialog.h"\r
19 \r
20 #include <QtDebug>\r
21 \r
22 WeeklyViewWidget::WeeklyViewWidget( QDateTime aCurrentDateTime, Configuration *aConfiguration, QWidget *aParent ) :\r
23                 ObservedWidget( aParent ), iConfiguration( aConfiguration )\r
24 {\r
25 \r
26         // *****************************************\r
27         //              Construct all the needed widgets\r
28         QFont importantTextFont;\r
29         importantTextFont.setBold( true );\r
30         importantTextFont.setPointSize( 20 );\r
31 \r
32         QFont regularTextFont;\r
33         regularTextFont.setBold( true );\r
34         regularTextFont.setPointSize( 12 );\r
35 \r
36         iSettingsButton = new QPushButton;\r
37         iSettingsButton->setIcon( QPixmap( ":button_settings" ) );\r
38         iSettingsButton->setFixedWidth( 36 );\r
39         connect( iSettingsButton, SIGNAL( clicked() ), this, SIGNAL( showSettingsView() ) );\r
40 \r
41         iCurrentDayLabel = ToolBox::createLabel( aCurrentDateTime.toString( iConfiguration->displaySettings()->dateFormat() ), regularTextFont );\r
42         iCurrentWeekLabel = ToolBox::createLabel( tr( "Wk %1" ).arg( aCurrentDateTime.date().weekNumber() ), regularTextFont );\r
43 \r
44         iRoomsCombo = new MeetingRoomCombo( iConfiguration->rooms(), this );\r
45         iRoomsCombo->setCurrentRoom( iConfiguration->defaultRoom() );\r
46         connect( iRoomsCombo, SIGNAL( observedEventDetected() ), this, SIGNAL( observedEventDetected() ) );\r
47 \r
48         iTimeDisplay = new DigitalTimeDisplayWidget( aCurrentDateTime.time(), iConfiguration->displaySettings()->timeFormat(), this );\r
49         iTimeDisplay->setFrameVisible( false );\r
50         iTimeDisplay->setFont( regularTextFont );\r
51         connect( iTimeDisplay, SIGNAL( observedEventDetected() ), this, SIGNAL( observedEventDetected() ) );\r
52 \r
53         iSchedule = new ScheduleWidget( aCurrentDateTime, iConfiguration->displaySettings(), this );\r
54         connect( iSchedule, SIGNAL( shownWeekChanged( QDate ) ), this, SIGNAL( shownWeekChanged( QDate ) ) );\r
55         connect( iSchedule, SIGNAL( observedEventDetected() ), this, SIGNAL( observedEventDetected() ) );\r
56         connect( iSchedule, SIGNAL( meetingActivated( Meeting* ) ), this, SIGNAL( meetingActivated( Meeting* ) ) );\r
57 \r
58         iPreviousWeekButton = new QPushButton( this );\r
59         iPreviousWeekButton->setText( tr( "<<" ) );\r
60         iPreviousWeekButton->setFixedWidth( 60 );\r
61         connect( iPreviousWeekButton, SIGNAL( clicked() ), iSchedule, SLOT( showPreviousWeek() ) );\r
62 \r
63         iCurrentWeekButton = new QPushButton( this );\r
64         iCurrentWeekButton->setFixedWidth( 100 );\r
65         iCurrentWeekButton->setText( tr( "Current" ) );\r
66         connect( iCurrentWeekButton, SIGNAL( clicked() ), iSchedule, SLOT( showCurrentWeek() ) );\r
67 \r
68         iNextWeekButton = new QPushButton( this );\r
69         iNextWeekButton->setFixedWidth( 60 );\r
70         iNextWeekButton->setText( tr( ">>" ) );\r
71         connect( iNextWeekButton, SIGNAL( clicked() ), iSchedule, SLOT( showNextWeek() ) );\r
72 \r
73         // **********************************\r
74         //              Create the view's layout\r
75         QHBoxLayout *tableLayout = new QHBoxLayout;\r
76         tableLayout->addWidget( iSchedule );\r
77 \r
78         QHBoxLayout *bottomLayout = new QHBoxLayout;\r
79         bottomLayout->addWidget( iRoomsCombo );\r
80         bottomLayout->addWidget( iTimeDisplay );\r
81         QVBoxLayout *dateLayout = new QVBoxLayout;\r
82         dateLayout->addWidget( iCurrentDayLabel );\r
83         dateLayout->addWidget( iCurrentWeekLabel );\r
84         bottomLayout->addLayout( dateLayout );\r
85         bottomLayout->addWidget( iPreviousWeekButton );\r
86         bottomLayout->addWidget( iCurrentWeekButton );\r
87         bottomLayout->addWidget( iNextWeekButton );\r
88         bottomLayout->addWidget( iSettingsButton );\r
89 \r
90         QVBoxLayout *mainLayout = new QVBoxLayout;\r
91         mainLayout->addLayout( tableLayout );\r
92         mainLayout->addLayout( bottomLayout );\r
93         setLayout( mainLayout );\r
94 \r
95         QPalette palette;\r
96         palette.setColor( QPalette::Window, Qt::white );\r
97         palette.setColor( QPalette::Foreground, Qt::darkGray );\r
98         setPalette( palette );\r
99 \r
100         // ******************************************\r
101         //              Handle all the signal connections\r
102         // TODO : this solution if interaction monitoring is not elegant enough\r
103         connect( iPreviousWeekButton, SIGNAL( clicked() ), this, SIGNAL( observedEventDetected() ) );\r
104         connect( iCurrentWeekButton, SIGNAL( clicked() ), this, SIGNAL( observedEventDetected() ) );\r
105         connect( iNextWeekButton, SIGNAL( clicked() ), this, SIGNAL( observedEventDetected() ) );\r
106         connect( iRoomsCombo, SIGNAL( currentRoomChanged( Room * ) ), this, SIGNAL( observedEventDetected() ) );\r
107         connect( iRoomsCombo, SIGNAL( currentIndexChanged( int ) ), this, SIGNAL( observedEventDetected() ) );\r
108         // TODO: connect RoomCombo signals to change meetings data.\r
109         connect( iRoomsCombo, SIGNAL( currentRoomChanged( Room * ) ), this, SIGNAL( currentRoomChanged( Room * ) ) );\r
110         connect( iRoomsCombo, SIGNAL( currentRoomChanged( Room * ) ), iSchedule, SLOT( refresh() ) );\r
111 }\r
112 \r
113 WeeklyViewWidget::~WeeklyViewWidget()\r
114 {\r
115         if ( iRoomsCombo )\r
116         {\r
117                 delete iRoomsCombo;\r
118                 iRoomsCombo = 0;\r
119         }\r
120         if ( iTimeDisplay )\r
121         {\r
122                 delete iTimeDisplay;\r
123                 iTimeDisplay = 0;\r
124         }\r
125         if ( iSchedule )\r
126         {\r
127                 delete iSchedule;\r
128                 iSchedule = 0;\r
129         }\r
130         if ( iCurrentDayLabel )\r
131         {\r
132                 delete iCurrentDayLabel;\r
133                 iCurrentDayLabel = 0;\r
134         }\r
135         if ( iCurrentWeekLabel )\r
136         {\r
137                 delete iCurrentWeekLabel;\r
138                 iCurrentWeekLabel = 0;\r
139         }\r
140         if ( iPreviousWeekButton )\r
141         {\r
142                 delete iPreviousWeekButton;\r
143                 iPreviousWeekButton = 0;\r
144         }\r
145         if ( iCurrentWeekButton )\r
146         {\r
147                 delete iCurrentWeekButton;\r
148                 iCurrentWeekButton = 0;\r
149         }\r
150         if ( iNextWeekButton )\r
151         {\r
152                 delete iNextWeekButton;\r
153                 iNextWeekButton = 0;\r
154         }\r
155         if ( iSettingsButton )\r
156         {\r
157                 delete iSettingsButton;\r
158                 iSettingsButton = 0;\r
159         }\r
160 }\r
161 \r
162 Room* WeeklyViewWidget::currentRoom()\r
163 {\r
164         return iRoomsCombo->currentRoom();\r
165 }\r
166 \r
167 void WeeklyViewWidget::setCurrentDateTime( QDateTime aCurrentDateTime )\r
168 {\r
169         iCurrentDayLabel->setText( aCurrentDateTime.date().toString( iConfiguration->displaySettings()->dateFormat() ) );\r
170         \r
171         iCurrentWeekLabel->setText( tr( "Wk %1" ).arg( aCurrentDateTime.date().weekNumber() ) );\r
172 \r
173         iTimeDisplay->setTime( aCurrentDateTime.time() );\r
174 \r
175         iSchedule->setCurrentDateTime( aCurrentDateTime );\r
176 }\r
177 \r
178 QDate WeeklyViewWidget::beginnigOfShownWeek()\r
179 {\r
180         return iSchedule->beginningOfShownWeek();\r
181 }\r
182 \r
183 void WeeklyViewWidget::refreshMeetings( const QList<Meeting*> &aMeetings )\r
184 {\r
185         qDebug() << "WeeklyViewWidget::refreshMeetings()";\r
186         iSchedule->refreshMeetings( aMeetings );\r
187 }\r
188 \r
189 void WeeklyViewWidget::showCurrentWeek()\r
190 {\r
191         iSchedule->showCurrentWeek();\r
192 }\r
193 \r
194 void WeeklyViewWidget::setDefaultRoom()\r
195 {\r
196         iRoomsCombo->setCurrentRoom( iConfiguration->defaultRoom() );\r
197 }\r