]> ToastFreeware Gitweb - toast/confclerk.git/blobdiff - src/gui/eventdialog.h
Update copyright notices.
[toast/confclerk.git] / src / gui / eventdialog.h
index b4185f81dbf603a6140cdad953fca35cc3632bd4..82eff016f335560f53738177d4a49eff527d7da6 100644 (file)
@@ -1,5 +1,6 @@
 /*
  * Copyright (C) 2010 Ixonos Plc.
 /*
  * Copyright (C) 2010 Ixonos Plc.
+ * Copyright (C) 2011-2014 Philipp Spitzer, gregor herrmann, Stefan Stahl
  *
  * This file is part of ConfClerk.
  *
  *
  * This file is part of ConfClerk.
  *
 
 #include <QDialog>
 #include "ui_eventdialog.h"
 
 #include <QDialog>
 #include "ui_eventdialog.h"
-#include <event.h>
+#include "event.h"
 
 class EventDialog : public QDialog, Ui::EventDialog
 { 
     Q_OBJECT
 public:
 
 class EventDialog : public QDialog, Ui::EventDialog
 { 
     Q_OBJECT
 public:
-    EventDialog(const int &aEventId, QWidget *aParent = NULL);
+    EventDialog(int conferencdId, int eventId, QWidget *parent = 0);
     ~EventDialog() {}
 private slots:
     void favouriteClicked();
     void alarmClicked();
 signals:
     ~EventDialog() {}
 private slots:
     void favouriteClicked();
     void alarmClicked();
 signals:
-    void eventHasChanged(int aEventId, bool aReloadModel = false); // emited when user changes some event details, eg. sets it Favourite
+    void eventChanged(int aEventId, bool favouriteChanged); // emited when user changes some event details, eg. sets it Favourite
 private:
 private:
+    int mConferenceId;
     int mEventId;
 };
 
     int mEventId;
 };