mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 08:04:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			102 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rddgimport.h
 | 
						|
//
 | 
						|
// A Qt-based application for importing Dial Global CDN downloads
 | 
						|
//
 | 
						|
//   (C) Copyright 2012-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 RDDGIMPORT_H
 | 
						|
#define RDDGIMPORT_H
 | 
						|
 | 
						|
#include <vector>
 | 
						|
#include <map>
 | 
						|
 | 
						|
#include <qwidget.h>
 | 
						|
#include <qsize.h>
 | 
						|
#include <qsizepolicy.h>
 | 
						|
#include <qlabel.h>
 | 
						|
#include <qcombobox.h>
 | 
						|
#include <qlineedit.h>
 | 
						|
#include <qpushbutton.h>
 | 
						|
#include <qdatetime.h>
 | 
						|
#include <q3datetimeedit.h>
 | 
						|
#include <q3textedit.h>
 | 
						|
 | 
						|
#include <rdbusybar.h>
 | 
						|
#include <rddb.h>
 | 
						|
#include <rdgroup.h>
 | 
						|
#include <rdsvc.h>
 | 
						|
 | 
						|
#include "event.h"
 | 
						|
 | 
						|
#define RDDGIMPORT_USAGE "\n"
 | 
						|
#define RDDGIMPORT_KILLDATE_OFFSET 7
 | 
						|
#define RDDGIMPORT_FILE_EXTENSION "mp3"
 | 
						|
 | 
						|
class MainWidget : public QWidget
 | 
						|
{
 | 
						|
  Q_OBJECT
 | 
						|
 public:
 | 
						|
   MainWidget(QWidget *parent=0);
 | 
						|
   QSize sizeHint() const;
 | 
						|
 | 
						|
 private slots:
 | 
						|
  void serviceActivatedData(int index);
 | 
						|
  void filenameChangedData(const QString &str);
 | 
						|
  void filenameSelectedData();
 | 
						|
  void dateSelectedData();
 | 
						|
  void processData();
 | 
						|
  void userChangedData();
 | 
						|
  void quitMainWidget();
 | 
						|
 | 
						|
 protected:
 | 
						|
  void resizeEvent(QResizeEvent *e);
 | 
						|
 | 
						|
 private:
 | 
						|
  void SetCaption();
 | 
						|
  bool LoadEvents();
 | 
						|
  bool ImportAudio();
 | 
						|
  bool WriteTrafficFile();
 | 
						|
  bool CheckSpot(const QString &isci);
 | 
						|
  bool ImportSpot(Event *evt,QString *err_msg);
 | 
						|
  void ActivateBar(bool state);
 | 
						|
  Event *GetEvent(const QString &isci);
 | 
						|
  QTime GetTime(const QString &str) const;
 | 
						|
  int GetLength(const QString &str) const;
 | 
						|
  QString GetIsci(const QString &str) const;
 | 
						|
  void LogMessage(const QString &str);
 | 
						|
  QLabel *dg_service_label;
 | 
						|
  QComboBox *dg_service_box;
 | 
						|
  QLabel *dg_filename_label;
 | 
						|
  QLineEdit *dg_filename_edit;
 | 
						|
  QPushButton *dg_filename_button;
 | 
						|
  QLabel *dg_date_label;
 | 
						|
  Q3DateEdit *dg_date_edit;
 | 
						|
  QPushButton *dg_date_button;
 | 
						|
  QLabel *dg_messages_label;
 | 
						|
  Q3TextEdit *dg_messages_text;
 | 
						|
  RDBusyBar *dg_bar;
 | 
						|
  QPushButton *dg_process_button;
 | 
						|
  QPushButton *dg_close_button;
 | 
						|
  std::map<QString,unsigned> dg_carts;
 | 
						|
  std::vector<Event *> dg_events;
 | 
						|
  RDGroup *dg_group;
 | 
						|
  RDSvc *dg_svc;
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
#endif  // RDDGIMPORT_H
 |