mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-14 16:49:17 +02:00
73 lines
1.7 KiB
C++
73 lines
1.7 KiB
C++
// rdxport.h
|
|
//
|
|
// Rivendell web service portal
|
|
//
|
|
// (C) Copyright 2010 Fred Gleason <fredg@paravelsystems.com>
|
|
//
|
|
// $Id: rdxport.h,v 1.7.2.3 2013/10/14 04:23:54 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 RDXPORT_H
|
|
#define RDXPORT_H
|
|
|
|
#include <qobject.h>
|
|
|
|
#include <rdconfig.h>
|
|
#include <rduser.h>
|
|
#include <rdsystem.h>
|
|
|
|
class Xport : public QObject
|
|
{
|
|
public:
|
|
Xport(QObject *parent=0,const char *name=0);
|
|
|
|
private:
|
|
bool Authenticate();
|
|
void Export();
|
|
void Import();
|
|
void DeleteAudio();
|
|
void AddCart();
|
|
void ListCarts();
|
|
void ListCart();
|
|
void EditCart();
|
|
void RemoveCart();
|
|
void AddCut();
|
|
void ListCuts();
|
|
void ListCut();
|
|
void EditCut();
|
|
void RemoveCut();
|
|
void ListGroups();
|
|
void ListGroup();
|
|
void ExportPeaks();
|
|
void TrimAudio();
|
|
void CopyAudio();
|
|
void AudioInfo();
|
|
void ListLogs();
|
|
void ListLog();
|
|
void ListServices();
|
|
void Exit(int code);
|
|
void XmlExit(const QString &str,int code,
|
|
RDAudioConvert::ErrorCode err=RDAudioConvert::ErrorOk);
|
|
RDFormPost *xport_post;
|
|
RDUser *xport_user;
|
|
RDConfig *xport_config;
|
|
RDSystem *xport_system;
|
|
};
|
|
|
|
|
|
#endif // RDXPORT_H
|