// edit_playout.h // // Edit a Rivendell RDCatch Playout // // (C) Copyright 2002-2021 Fred Gleason / // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public // License along with this program; if not, write to the Free Software // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // #ifndef EDIT_PLAYOUT_H #define EDIT_PLAYOUT_H #include #include #include #include #include #include #include #include #include "eventwidget.h" #include "dowselector.h" class EditPlayout : public RDDialog { Q_OBJECT public: EditPlayout(QString *filter,QWidget *parent=0); ~EditPlayout(); QSize sizeHint() const; QSizePolicy sizePolicy() const; public slots: int exec(int id,std::vector *adds); private slots: void locationChangedData(const QString &station,int decknum); void selectCutData(); void saveasData(); void okData(); void cancelData(); protected: void resizeEvent(QResizeEvent *e); void keyPressEvent(QKeyEvent *); void closeEvent(QCloseEvent *e); private: void Save(); RDDeck *edit_deck; RDCutDialog *edit_cut_dialog; RDRecording *edit_recording; EventWidget *edit_event_widget; DowSelector *edit_dow_selector; QLabel *edit_description_label; QLineEdit *edit_description_edit; QString edit_cutname; QLabel *edit_destination_label; QLineEdit *edit_destination_edit; QPushButton *edit_destination_button; QCheckBox *edit_oneshot_box; QLabel *edit_oneshot_label; QPushButton *edit_saveas_button; QPushButton *edit_ok_button; QPushButton *edit_cancel_button; std::vector *edit_added_events; QString *edit_filter; }; #endif // EDIT_PLAYOUT_H