mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-12 09:33:37 +02:00
2018-05-18 Fred Gleason <fredg@paravelsystems.com>
* Renamed rdvairplay(1) to rdvairplayd(8).
This commit is contained in:
66
rdvairplayd/rdvairplayd.h
Normal file
66
rdvairplayd/rdvairplayd.h
Normal file
@@ -0,0 +1,66 @@
|
||||
// rdvairplayd.h
|
||||
//
|
||||
// Headless log player
|
||||
//
|
||||
// (C) Copyright 2018 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
|
||||
// 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 RDVAIRPLAYD_H
|
||||
#define RDVAIRPLAYD_H
|
||||
|
||||
#include <qobject.h>
|
||||
#include <qsocketdevice.h>
|
||||
|
||||
#include <rdevent_player.h>
|
||||
#include <rd.h>
|
||||
#include <rdlogplay.h>
|
||||
#include <rdmacro.h>
|
||||
#include <rdrlmhost.h>
|
||||
|
||||
#define RDVAIRPLAYD_USAGE "[options]\n"
|
||||
|
||||
class MainObject : public QObject
|
||||
{
|
||||
Q_OBJECT;
|
||||
public:
|
||||
MainObject(QObject *parent=0);
|
||||
|
||||
private slots:
|
||||
void ripcConnectedData(bool state);
|
||||
void userData();
|
||||
void rmlReceivedData(RDMacro*);
|
||||
void logReloadedData(int log);
|
||||
void exitData();
|
||||
|
||||
private:
|
||||
void SetAutoMode(int index);
|
||||
void SetLiveAssistMode(int index);
|
||||
void SetManualMode(int index);
|
||||
int LogMachineIndex(int log_mach,bool *all=NULL) const;
|
||||
RDLogPlay *air_logs[RD_RDVAIRPLAY_LOG_QUAN];
|
||||
QString air_start_lognames[RD_RDVAIRPLAY_LOG_QUAN];
|
||||
int air_start_lines[RD_RDVAIRPLAY_LOG_QUAN];
|
||||
bool air_start_starts[RD_RDVAIRPLAY_LOG_QUAN];
|
||||
std::vector<RDRLMHost *> air_plugin_hosts;
|
||||
RDEventPlayer *air_event_player;
|
||||
QSocketDevice *air_nownext_socket;
|
||||
QDateTime air_startup_datetime;
|
||||
RDAirPlayConf::ExitCode air_previous_exit_code;
|
||||
QTimer *air_exit_timer;
|
||||
};
|
||||
|
||||
|
||||
#endif // RDVAIRPLAYD_H
|
Reference in New Issue
Block a user