// rdmarkerdialog.h // // Rivendell Audio Marker Editor // // (C) Copyright 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 RDMARKERDIALOG_H #define RDMARKERDIALOG_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include class RDMarkerDialog : public RDDialog { Q_OBJECT public: enum PlayMode {FromStart=1,FromCursor=2,Region=3}; enum GainChange {GainNone=0,GainUp=1,GainDown=2}; RDMarkerDialog(const QString &caption,int card,int port,QWidget *parent=0); ~RDMarkerDialog(); QSize sizeHint() const; public slots: int exec(unsigned cartnum,int cutnum); private slots: void amplitudeUpData(); void amplitudeDownData(); void okData(); void cancelData(); protected: void closeEvent(QCloseEvent *e); void resizeEvent(QResizeEvent *e); private: RDMarkerView *d_marker_view; QGroupBox *d_amplitude_box; RDTransportButton *d_amplitude_up_button; RDTransportButton *d_amplitude_down_button; QGroupBox *d_time_box; QPushButton *d_time_fullin_button; RDTransportButton *d_time_in_button; RDTransportButton *d_time_out_button; QPushButton *d_time_fullout_button; RDMarkerPlayer *d_player; QPushButton *d_ok_button; QPushButton *d_cancel_button; unsigned d_cart_number; int d_cut_number; QString d_caption; }; #endif // RDMARKERDIALOG_H