mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-03 23:53:59 +01:00 
			
		
		
		
	* Added a 'STATIONS.SHORT_NAME' field to the database. * Incremented the database version to 270. * Added 'RDStation::shortName()' and 'RDStation::setShortName()' methods. * Removed the 'Broadcast Security Model' control from the 'Edit Host' dialog. * Added a 'Short Name' control to the 'Edit Host' dialog. * Implemented a '%R' wildcard for Rivendell Host Short Name.
		
			
				
	
	
		
			225 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			225 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// list_svcs.cpp
 | 
						|
//
 | 
						|
// List Rivendell Services
 | 
						|
//
 | 
						|
//   (C) Copyright 2002-2003,2016 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.
 | 
						|
//
 | 
						|
 | 
						|
#include <qdialog.h>
 | 
						|
#include <qstring.h>
 | 
						|
#include <qpushbutton.h>
 | 
						|
#include <qlistbox.h>
 | 
						|
#include <qtextedit.h>
 | 
						|
#include <qlabel.h>
 | 
						|
#include <qpainter.h>
 | 
						|
#include <qevent.h>
 | 
						|
#include <qmessagebox.h>
 | 
						|
#include <qbuttongroup.h>
 | 
						|
#include <rddb.h>
 | 
						|
 | 
						|
#include "add_svc.h"
 | 
						|
#include "edit_svc.h"
 | 
						|
#include "globals.h"
 | 
						|
#include "list_svcs.h"
 | 
						|
 | 
						|
ListSvcs::ListSvcs(QWidget *parent)
 | 
						|
  : QDialog(parent,"",true)
 | 
						|
{
 | 
						|
  //
 | 
						|
  // Fix the Window Size
 | 
						|
  //
 | 
						|
  setMinimumWidth(sizeHint().width());
 | 
						|
  setMaximumWidth(sizeHint().width());
 | 
						|
  setMinimumHeight(sizeHint().height());
 | 
						|
  setMaximumHeight(sizeHint().height());
 | 
						|
 | 
						|
  setCaption(tr("Services"));
 | 
						|
 | 
						|
  //
 | 
						|
  // Create Fonts
 | 
						|
  //
 | 
						|
  QFont font=QFont("Helvetica",12,QFont::Bold);
 | 
						|
  font.setPixelSize(12);
 | 
						|
  QFont small_font=QFont("Helvetica",10,QFont::Normal);
 | 
						|
  small_font.setPixelSize(10);
 | 
						|
 | 
						|
  //
 | 
						|
  //  Add Button
 | 
						|
  //
 | 
						|
  QPushButton *add_button=new QPushButton(this);
 | 
						|
  add_button->setGeometry(100,30,80,50);
 | 
						|
  add_button->setFont(font);
 | 
						|
  add_button->setText(tr("&Add"));
 | 
						|
  connect(add_button,SIGNAL(clicked()),this,SLOT(addData()));
 | 
						|
 | 
						|
  //
 | 
						|
  //  Edit Button
 | 
						|
  //
 | 
						|
  QPushButton *edit_button=new QPushButton(this);
 | 
						|
  edit_button->setGeometry(100,90,80,50);
 | 
						|
  edit_button->setFont(font);
 | 
						|
  edit_button->setText(tr("&Edit"));
 | 
						|
  connect(edit_button,SIGNAL(clicked()),this,SLOT(editData()));
 | 
						|
 | 
						|
  //
 | 
						|
  //  Delete Button
 | 
						|
  //
 | 
						|
  QPushButton *delete_button=new QPushButton(this);
 | 
						|
  delete_button->setGeometry(100,150,80,50);
 | 
						|
  delete_button->setFont(font);
 | 
						|
  delete_button->setText(tr("&Delete"));
 | 
						|
  connect(delete_button,SIGNAL(clicked()),this,SLOT(deleteData()));
 | 
						|
 | 
						|
  //
 | 
						|
  //  Close Button
 | 
						|
  //
 | 
						|
  QPushButton *close_button=new QPushButton(this);
 | 
						|
  close_button->setGeometry(100,240,80,50);
 | 
						|
  close_button->setDefault(true);
 | 
						|
  close_button->setFont(font);
 | 
						|
  close_button->setText(tr("&Close"));
 | 
						|
  connect(close_button,SIGNAL(clicked()),this,SLOT(closeData()));
 | 
						|
 | 
						|
  //
 | 
						|
  // Services List Box
 | 
						|
  //
 | 
						|
  list_box=new QListBox(this);
 | 
						|
  list_box->setGeometry(10,30,80,260);
 | 
						|
  QLabel *list_box_label=new QLabel(list_box,tr("&Services:"),this);
 | 
						|
  list_box_label->setFont(font);
 | 
						|
  list_box_label->setGeometry(14,11,85,19);
 | 
						|
  connect(list_box,SIGNAL(doubleClicked(QListBoxItem *)),
 | 
						|
	  this,SLOT(doubleClickedData(QListBoxItem *)));
 | 
						|
 | 
						|
  RefreshList();
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
ListSvcs::~ListSvcs()
 | 
						|
{
 | 
						|
  delete list_box;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
QSize ListSvcs::sizeHint() const
 | 
						|
{
 | 
						|
  return QSize(200,300);
 | 
						|
} 
 | 
						|
 | 
						|
 | 
						|
QSizePolicy ListSvcs::sizePolicy() const
 | 
						|
{
 | 
						|
  return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void ListSvcs::addData()
 | 
						|
{
 | 
						|
  QString svcname;
 | 
						|
 | 
						|
  AddSvc *add_svc=new AddSvc(&svcname,this);
 | 
						|
  if(add_svc->exec()<0) {
 | 
						|
    delete add_svc;
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  delete add_svc;
 | 
						|
  RefreshList(svcname);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void ListSvcs::editData()
 | 
						|
{
 | 
						|
  if(list_box->currentItem()<0) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  EditSvc *edit_svc=new EditSvc(list_box->currentText(),this);
 | 
						|
  edit_svc->exec();
 | 
						|
  delete edit_svc;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void ListSvcs::deleteData()
 | 
						|
{
 | 
						|
  QString str1;
 | 
						|
  QString str2;
 | 
						|
  QString sql;
 | 
						|
  RDSqlQuery *q;
 | 
						|
 | 
						|
  str1=QString(tr("Are you sure you want to delete service"));
 | 
						|
  if(QMessageBox::warning(this,tr("Delete Service"),
 | 
						|
			  QString().sprintf(
 | 
						|
			    "%s %s?",(const char *)str1,
 | 
						|
			    (const char *)list_box->currentText()),
 | 
						|
			  QMessageBox::Yes,QMessageBox::No)!=
 | 
						|
     QMessageBox::Yes) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  sql=QString().sprintf("select NAME from LOGS where SERVICE=\"%s\"",
 | 
						|
			(const char *)list_box->currentText());
 | 
						|
  q=new RDSqlQuery(sql);
 | 
						|
  if(q->first()) {
 | 
						|
    str1=tr("There are");
 | 
						|
    str2=tr("logs owned by this service that will also be deleted.\nDo you still want to proceed?");
 | 
						|
    if(QMessageBox::warning(this,tr("Logs Exist"),
 | 
						|
			 QString().sprintf("%s %d %s",
 | 
						|
					   (const char *)str1,
 | 
						|
					   q->size(),
 | 
						|
					   (const char *)str2),
 | 
						|
			    QMessageBox::Yes,QMessageBox::No)!=
 | 
						|
       QMessageBox::Yes) {
 | 
						|
      delete q;
 | 
						|
      return;
 | 
						|
    }
 | 
						|
  }
 | 
						|
  delete q;
 | 
						|
  RDSvc *svc=new RDSvc(list_box->currentText(),admin_station,admin_config);
 | 
						|
  svc->remove();
 | 
						|
  delete svc;
 | 
						|
  list_box->removeItem(list_box->currentItem());
 | 
						|
  if(list_box->currentItem()>=0) {
 | 
						|
    list_box->setSelected(list_box->currentItem(),true);
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void ListSvcs::closeData()
 | 
						|
{
 | 
						|
  done(0);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void ListSvcs::doubleClickedData(QListBoxItem *item)
 | 
						|
{
 | 
						|
  editData();
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void ListSvcs::RefreshList(QString svcname)
 | 
						|
{
 | 
						|
  QString sql;
 | 
						|
  RDSqlQuery *q;
 | 
						|
 | 
						|
  list_box->clear();
 | 
						|
  q=new RDSqlQuery("select NAME from SERVICES");
 | 
						|
  while (q->next()) {
 | 
						|
    list_box->insertItem(q->value(0).toString());
 | 
						|
    if(svcname==list_box->text(list_box->count()-1)) {
 | 
						|
      list_box->setCurrentItem(list_box->count()-1);
 | 
						|
    }
 | 
						|
  }
 | 
						|
  delete q;
 | 
						|
}
 |