2016-05-18 Fred Gleason <fredg@paravelsystems.com>

* Added an entry for the Broadcast Tools SRC-16 in
	'docs/SWITCHERS.txt'.
	* Added a 'CUT_EVENTS' table to the database.
	* Added a 'DECK_EVENTS' table to the database.
	* Incremented the database version to 256.
	* Implemented a 'Cut Event' ['CE'] RML.
	* Added a 'Event Carts' section to the Edit Deck dialog in
	'rdadmin/edit_deck.cpp' and 'rdadmin/edit_deck.h'.
This commit is contained in:
Fred Gleason
2016-05-18 13:43:21 -04:00
parent df9ac7cff1
commit 3b766a5e7d
34 changed files with 689 additions and 44 deletions

View File

@@ -2,9 +2,7 @@
//
// Edit Rivendell Netcatcher Configuration
//
// (C) Copyright 2002-2004 Fred Gleason <fredg@paravelsystems.com>
//
// $Id: edit_decks.h,v 1.15.6.1 2012/11/28 18:49:36 cvs Exp $
// (C) Copyright 2002-2016 Fred Gleason <fredg@paravelsystems.com>
//
// 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
@@ -55,6 +53,8 @@ class EditDecks : public QDialog
void formatActivatedData(int);
void stationActivatedData(const QString &);
void matrixActivatedData(const QString &);
void playSettingsChangedData(int id,int card,int port);
void eventCartSelectedData(int n);
void closeData();
protected:
@@ -97,6 +97,10 @@ class EditDecks : public QDialog
QSpinBox *edit_swdelay_box;
QSpinBox *edit_threshold_box;
QLineEdit *edit_errorrml_edit;
QLabel *edit_event_section_label;
QLabel *edit_event_labels[RD_CUT_EVENT_ID_QUAN];
QLineEdit *edit_event_edits[RD_CUT_EVENT_ID_QUAN];
QPushButton *edit_event_buttons[RD_CUT_EVENT_ID_QUAN];
};