X-Git-Url: https://git.toastfreeware.priv.at/toast/confclerk.git/blobdiff_plain/c81f30a36004277e8f521ff6877662b59695c5d3..080dc7d603d45ba0662aa731418993ddd45b5fe8:/src/gui/eventdialog.h diff --git a/src/gui/eventdialog.h b/src/gui/eventdialog.h index 1b05073..1e4393e 100644 --- a/src/gui/eventdialog.h +++ b/src/gui/eventdialog.h @@ -1,6 +1,6 @@ /* * Copyright (C) 2010 Ixonos Plc. - * Copyright (C) 2011 Philipp Spitzer, gregor herrmann + * Copyright (C) 2011-2024 Philipp Spitzer, gregor herrmann, Stefan Stahl * * This file is part of ConfClerk. * @@ -22,13 +22,13 @@ #include #include "ui_eventdialog.h" -#include +#include "event.h" 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(); @@ -36,7 +36,9 @@ private slots: signals: void eventChanged(int aEventId, bool favouriteChanged); // emited when user changes some event details, eg. sets it Favourite private: + int mConferenceId; int mEventId; + void updateFavouriteButton(const Event& event); }; #endif /* EVENTDIALOG_H */