Rivendellaudio/rdlogmanager/rdlogmanager.h
Fred Gleason 3cc7806db1 2022-04-01 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdlogmanager(1) where attempting to generate
	a SoundExchange Statutory License report using the command-line
	option would cause a crash.
	* Added an '-h' option to rdlogmanager(1).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2022-04-01 20:26:44 -04:00

78 lines
2.1 KiB
C++

// rdlogmanager.h
//
// The Log Manager Utility for Rivendell.
//
// (C) Copyright 2002-2022 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 RDLOGMANAGER_H
#define RDLOGMANAGER_H
#include <qlabel.h>
#include <qpushbutton.h>
#include <rdlog_line.h>
#include <rdmainwindow.h>
#include <rdwidget.h>
#define RDLOGMANAGER_USAGE "[OPTIONS]\n"
//
// Command Line Operations
//
extern int RunLogOperation(int argc,char *argv[],const QString &svcname,
int start_offset,bool protect_existing,bool gen_log,
bool merge_mus,bool merge_tfc);
extern int RunReportOperation(int argc,char *argv[],const QString &rptname,
bool protect_existing,int start_offset,
int end_offset,double aggregate_tuning_hours);
class MainWidget : public RDMainWindow
{
Q_OBJECT
public:
MainWidget(RDConfig *c,QWidget *parent=0);
QSize sizeHint() const;
QSizePolicy sizePolicy() const;
protected:
void closeEvent(QCloseEvent *e);
private slots:
void userData();
void eventsData();
void clocksData();
void gridsData();
void generateData();
void reportsData();
void quitMainWidget();
private:
void LoadConfig();
// QSqlDatabase *log_db;
QString log_filename;
QLabel *log_user_label;
QPushButton *log_events_button;
QPushButton *log_clocks_button;
QPushButton *log_grids_button;
QPushButton *log_logs_button;
QPushButton *log_reports_button;
QPushButton *log_close_button;
};
#endif // RDLOGMANAGER_H