mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 08:04:12 +01:00 
			
		
		
		
	* Refactored the RDListLogs class to use RDApplication. * Converted rdadmin(1) to use RDApplication.
		
			
				
	
	
		
			68 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rdadmin.h
 | 
						|
//
 | 
						|
// The Administration Utility for Rivendell.
 | 
						|
//
 | 
						|
//   (C) Copyright 2002-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 RDADMIN_H
 | 
						|
#define RDADMIN_H
 | 
						|
 | 
						|
#include <qwidget.h>
 | 
						|
#include <qsize.h>
 | 
						|
#include <qsizepolicy.h>
 | 
						|
#include <qsqldatabase.h>
 | 
						|
#include <qpixmap.h>
 | 
						|
 | 
						|
#define RDADMIN_USAGE "[--check-db][--mysql-admin-user=<username>][--mysql-admin-password=<password>]\n\n--check-db'\n     Check and (if necessary) create or update the database schema to the\n     current version, then exit.\n\n--mysql-admin-user=<username>\n--mysql-admin-password=<password>\n--mysql-admin-hostname=<hostname>\n--mysql-admin-dbname=<dbname>\n     When creating a new database, use the supplied credentials for the\n     MySQL administrative user instead of prompting for them.\n\n--create-db-hostname=<hostname>\n     When creating a new database, create a host entry called <hostname>\n     instead of autodetecting the hostname.\n\n--backup-filename=<file-path>\n     When performing a schema update, RDAdmin will automatically execute a\n     database backup to the file specified in <file-path> [default value\n     $HOME/rdbackup-<date>-<old-schema-ver>.sql.gz].\n\n--skip-backup\n     When doing a schema update, suppress generation of an automatic backup.\n"
 | 
						|
 | 
						|
class MainWidget : public QWidget
 | 
						|
{
 | 
						|
  Q_OBJECT
 | 
						|
 public:
 | 
						|
  MainWidget(QWidget *parent=0);
 | 
						|
  QSize sizeHint() const;
 | 
						|
  QSizePolicy sizePolicy() const;
 | 
						|
  
 | 
						|
 private slots:
 | 
						|
  void manageUsersData();
 | 
						|
  void manageGroupsData();
 | 
						|
  void manageServicesData();
 | 
						|
  void manageStationsData();
 | 
						|
  void systemSettingsData();
 | 
						|
  void reportsData();
 | 
						|
  void podcastsData();
 | 
						|
  void quitMainWidget();
 | 
						|
  void manageSchedCodes();
 | 
						|
  void manageReplicatorsData();
 | 
						|
  void systemInfoData();
 | 
						|
  void backupData();
 | 
						|
  void restoreData();
 | 
						|
  
 | 
						|
 private:
 | 
						|
  void ClearTables();
 | 
						|
  QString admin_username;
 | 
						|
  QString admin_password;
 | 
						|
  QPixmap *admin_rivendell_map;
 | 
						|
  QString admin_filter;
 | 
						|
  QString admin_group;
 | 
						|
  QString admin_schedcode;
 | 
						|
};
 | 
						|
 | 
						|
 | 
						|
#endif  // RDADMIN_H
 |