mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-12 07:35:55 +01:00
Initial import of CVS-v2_8_branch
This commit is contained in:
184
rdcatch/rdcatch.h
Normal file
184
rdcatch/rdcatch.h
Normal file
@@ -0,0 +1,184 @@
|
||||
// rdcatch.h
|
||||
//
|
||||
// The Netcatch Manager for Rivendell.
|
||||
//
|
||||
// (C) Copyright 2002-2004 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: rdcatch.h,v 1.51 2011/08/30 23:35:44 cvs Exp $
|
||||
//
|
||||
// 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 RDCATCH_H
|
||||
#define RDCATCH_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include <qwidget.h>
|
||||
#include <qsize.h>
|
||||
#include <qsizepolicy.h>
|
||||
#include <qsqldatabase.h>
|
||||
#include <qpixmap.h>
|
||||
#include <qtimer.h>
|
||||
#include <qcheckbox.h>
|
||||
#include <qcombobox.h>
|
||||
#include <qpixmap.h>
|
||||
#include <qscrollview.h>
|
||||
|
||||
#include <rdtransportbutton.h>
|
||||
#include <rdlistviewitem.h>
|
||||
#include <rd.h>
|
||||
#include <rduser.h>
|
||||
#include <rdripc.h>
|
||||
#include <rdcae.h>
|
||||
#include <rddeck.h>
|
||||
#include <rdconfig.h>
|
||||
#include <rdcatch_connect.h>
|
||||
|
||||
#include <catch_listview.h>
|
||||
#include <deckmon.h>
|
||||
#include <catch_monitor.h>
|
||||
#include <vbox.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
/*
|
||||
* Widget Settings
|
||||
*/
|
||||
#define RDCATCH_AUDITION_LENGTH 5000
|
||||
#define RDCATCH_GEOMETRY_FILE ".rdcatch"
|
||||
#define RDCATCH_MAX_VISIBLE_MONITORS 8
|
||||
#define RDCATCH_USAGE "[--offline-host-warnings=yes|no]\n"
|
||||
|
||||
class MainWidget : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
MainWidget(QWidget *parent=0,const char *name=0);
|
||||
QSize sizeHint() const;
|
||||
QSizePolicy sizePolicy() const;
|
||||
|
||||
private slots:
|
||||
void log(RDConfig::LogPriority prio,const QString &msg);
|
||||
void resizeData();
|
||||
void connectedData(int serial,bool state);
|
||||
void nextEventData();
|
||||
void addData();
|
||||
void editData();
|
||||
void deleteData();
|
||||
void ripcConnectedData(bool);
|
||||
void ripcUserData();
|
||||
void statusChangedData(int,unsigned,RDDeck::Status,int,
|
||||
const QString &cutname);
|
||||
void monitorChangedData(int serial,unsigned chan,bool state);
|
||||
void scrollButtonData();
|
||||
void reportsButtonData();
|
||||
void headButtonData();
|
||||
void tailButtonData();
|
||||
void stopButtonData();
|
||||
void initData(bool);
|
||||
void playedData(int);
|
||||
void playStoppedData(int);
|
||||
void meterLevelData(int,int,int,int);
|
||||
void abortData(int);
|
||||
void monitorData(int);
|
||||
void selectionChangedData(QListViewItem *item);
|
||||
void doubleClickedData(QListViewItem *,const QPoint &,int);
|
||||
void filterChangedData(bool state);
|
||||
void dowChangedData(int id);
|
||||
void clockData();
|
||||
void midnightData();
|
||||
void eventUpdatedData(int id);
|
||||
void eventPurgedData(int id);
|
||||
void heartbeatFailedData(int id);
|
||||
void quitMainWidget();
|
||||
|
||||
protected:
|
||||
void closeEvent(QCloseEvent *e);
|
||||
void resizeEvent(QResizeEvent *e);
|
||||
|
||||
private:
|
||||
void ShowEvent(RDListViewItem *item);
|
||||
int ShowNextEvents(int day,QTime time,QTime *next);
|
||||
int AddRecord();
|
||||
void ProcessNewRecords(std::vector<int> *adds);
|
||||
void EnableScroll(bool state);
|
||||
void UpdateScroll();
|
||||
void RefreshList();
|
||||
void RefreshLine(RDListViewItem *item);
|
||||
void UpdateExitCode(RDListViewItem *item);
|
||||
void DisplayExitCode(RDListViewItem *item,RDRecording::ExitCode code,
|
||||
const QString &err_text);
|
||||
QString GetSourceName(QString station,int matrix,int input);
|
||||
QString GetDestinationName(QString station,int matrix,int output);
|
||||
RDListViewItem *GetItem(int id);
|
||||
int GetMonitor(int serial,int chan);
|
||||
int GetConnection(QString station,unsigned chan=0);
|
||||
void LoadGeometry();
|
||||
void SaveGeometry();
|
||||
std::vector<CatchMonitor *> catch_monitor;
|
||||
QScrollView *catch_monitor_view;
|
||||
VBox *catch_monitor_vbox;
|
||||
struct {
|
||||
RDCatchConnect *connect;
|
||||
QString station;
|
||||
vector<unsigned> chan;
|
||||
vector<unsigned> mon_id;
|
||||
} catch_connect[RD_MAX_STATIONS];
|
||||
int catch_station_count;
|
||||
QSqlDatabase *catch_db;
|
||||
int catch_audition_stream;
|
||||
int catch_play_handle;
|
||||
CatchListView *catch_recordings_list;
|
||||
RDTransportButton *catch_head_button;
|
||||
RDTransportButton *catch_tail_button;
|
||||
RDTransportButton *catch_stop_button;
|
||||
QPushButton *catch_add_button;
|
||||
QPushButton *catch_edit_button;
|
||||
QPushButton *catch_delete_button;
|
||||
QPushButton *catch_close_button;
|
||||
QPushButton *catch_scroll_button;
|
||||
QPushButton *catch_reports_button;
|
||||
bool head_playing;
|
||||
bool tail_playing;
|
||||
QString catch_filter;
|
||||
QString catch_group;
|
||||
QString catch_schedcode;
|
||||
QPixmap *catch_record_map;
|
||||
QPixmap *catch_playout_map;
|
||||
QPixmap *catch_macro_map;
|
||||
QPixmap *catch_switch_map;
|
||||
QPixmap *catch_download_map;
|
||||
QPixmap *catch_upload_map;
|
||||
QTimer *catch_next_timer;
|
||||
QPalette catch_scroll_color[2];
|
||||
bool catch_scroll;
|
||||
QLabel *catch_clock_label;
|
||||
QTimer *catch_clock_timer;
|
||||
QLabel *catch_show_active_label;
|
||||
QCheckBox *catch_show_active_box;
|
||||
QLabel *catch_show_today_label;
|
||||
QCheckBox *catch_show_today_box;
|
||||
QLabel *catch_dow_label;
|
||||
QComboBox *catch_dow_box;
|
||||
QString catch_filter_string;
|
||||
QTimer *catch_midnight_timer;
|
||||
int catch_time_offset;
|
||||
QPixmap *catch_rivendell_map;
|
||||
bool catch_host_warnings;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user