// rdadmin.h // // The Administration Utility for Rivendell. // // (C) Copyright 2002-2016 Fred Gleason // // 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 #include #include #include #include #include #include #define RDADMIN_USAGE "[--check-db][--mysql-admin-user=][--mysql-admin-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=\n--mysql-admin-password=\n--mysql-admin-hostname=\n--mysql-admin-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=\n When creating a new database, create a host entry called \n instead of autodetecting the hostname.\n\n--backup-filename=\n When performing a schema update, RDAdmin will automatically execute a\n database backup to the file specified in [default value\n $HOME/rdbackup--.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); ~MainWidget(); 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