1 /***************************************************************************
2                           modifyconstraintactivitypreferredroomform.h  -  description
3                              -------------------
4     begin                : February 13, 2005
5     copyright            : (C) 2005 by Lalescu Liviu
6     email                : Please see https://lalescu.ro/liviu/ for details about contacting Liviu Lalescu (in particular, you can find here the e-mail address)
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software: you can redistribute it and/or modify  *
12  *   it under the terms of the GNU Affero General Public License as        *
13  *   published by the Free Software Foundation, either version 3 of the    *
14  *   License, or (at your option) any later version.                       *
15  *                                                                         *
16  ***************************************************************************/
17 
18 #ifndef MODIFYCONSTRAINTACTIVITYPREFERREDROOMFORM_H
19 #define MODIFYCONSTRAINTACTIVITYPREFERREDROOMFORM_H
20 
21 #include "ui_modifyconstraintactivitypreferredroomform_template.h"
22 #include "timetable_defs.h"
23 #include "timetable.h"
24 #include "fet.h"
25 
26 class ModifyConstraintActivityPreferredRoomForm : public QDialog, Ui::ModifyConstraintActivityPreferredRoomForm_template  {
27 	Q_OBJECT
28 
29 	ConstraintActivityPreferredRoom* _ctr;
30 public:
31 	ModifyConstraintActivityPreferredRoomForm(QWidget* parent, ConstraintActivityPreferredRoom* ctr);
32 	~ModifyConstraintActivityPreferredRoomForm();
33 
34 	void updateActivitiesComboBox();
35 	void updateRoomsComboBox();
36 
37 public slots:
38 	void ok();
39 	void help();
40 	void cancel();
41 
42 	void removeRealRoom();
43 	void clearRealRooms();
44 	void addRealRoom();
45 };
46 
47 #endif
48