mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 16:14:03 +01:00 
			
		
		
		
	* Added 'RDMainWindow' to rdselect(1). Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
		
			
				
	
	
		
			326 lines
		
	
	
		
			8.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			326 lines
		
	
	
		
			8.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// rdselect.h
 | 
						|
//
 | 
						|
// System Selector for Rivendell
 | 
						|
//
 | 
						|
//   (C) Copyright 2012-2021 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 <QApplication>
 | 
						|
#include <QDesktopWidget>
 | 
						|
#include <QDir>
 | 
						|
#include <QMessageBox>
 | 
						|
#include <QProcess>
 | 
						|
#include <QTranslator>
 | 
						|
 | 
						|
#include <dbversion.h>
 | 
						|
#include <rdpaths.h>
 | 
						|
#include <rdstatus.h>
 | 
						|
 | 
						|
#include "rdselect.h"
 | 
						|
 | 
						|
//
 | 
						|
// Icons
 | 
						|
//
 | 
						|
#include "../icons/rivendell-22x22.xpm"
 | 
						|
#include "../icons/greencheckmark.xpm"
 | 
						|
#include "../icons/redx.xpm"
 | 
						|
 | 
						|
MainWidget::MainWidget(RDConfig *c,QWidget *parent)
 | 
						|
  : RDMainWindow("rdselect",c)
 | 
						|
{
 | 
						|
  //
 | 
						|
  // Read Command Options
 | 
						|
  //
 | 
						|
  RDCmdSwitch *cmd=new RDCmdSwitch("rdselect","\n");
 | 
						|
  delete cmd;
 | 
						|
 | 
						|
  //
 | 
						|
  // Read Configuration
 | 
						|
  //
 | 
						|
  monitor_config=new RDMonitorConfig();
 | 
						|
  monitor_config->load();
 | 
						|
  QDesktopWidget *dw=qApp->desktop();
 | 
						|
  int width=sizeHint().width();
 | 
						|
  int height=sizeHint().height();
 | 
						|
  switch(monitor_config->position()) {
 | 
						|
  case RDMonitorConfig::UpperLeft:
 | 
						|
    setGeometry(0,RDMONITOR_HEIGHT,width,sizeHint().height());
 | 
						|
    break;
 | 
						|
 | 
						|
  case RDMonitorConfig::UpperCenter:
 | 
						|
    setGeometry((dw->size().width()-width)/2,RDMONITOR_HEIGHT,width,height);
 | 
						|
    break;
 | 
						|
 | 
						|
  case RDMonitorConfig::UpperRight:
 | 
						|
    setGeometry(dw->size().width()-width,RDMONITOR_HEIGHT,width,height);
 | 
						|
    break;
 | 
						|
 | 
						|
  case RDMonitorConfig::LowerLeft:
 | 
						|
    setGeometry(0,dw->size().height()-height+RDMONITOR_HEIGHT,width,height);
 | 
						|
    break;
 | 
						|
 | 
						|
  case RDMonitorConfig::LowerCenter:
 | 
						|
    setGeometry((dw->size().width()-width)/2,
 | 
						|
		dw->size().height()-height+RDMONITOR_HEIGHT,width,height);
 | 
						|
    break;
 | 
						|
 | 
						|
  case RDMonitorConfig::LowerRight:
 | 
						|
    setGeometry(dw->size().width()-width,
 | 
						|
		dw->size().height()-height+RDMONITOR_HEIGHT,width,height);
 | 
						|
    break;
 | 
						|
 | 
						|
  case RDMonitorConfig::LastPosition:
 | 
						|
    break;
 | 
						|
  }
 | 
						|
 | 
						|
  //
 | 
						|
  // Fix the Window Size
 | 
						|
  //
 | 
						|
  setMinimumSize(sizeHint());
 | 
						|
 | 
						|
  //
 | 
						|
  // Create And Set Icons
 | 
						|
  //
 | 
						|
  login_rivendell_map=new QPixmap(rivendell_22x22_xpm);
 | 
						|
  setWindowIcon(*login_rivendell_map);
 | 
						|
  setWindowTitle(QString("RDSelect - v")+VERSION);
 | 
						|
  greencheckmark_map=new QPixmap(greencheckmark_xpm);
 | 
						|
  redx_map=new QPixmap(redx_xpm);
 | 
						|
 | 
						|
  //
 | 
						|
  // Load Configs
 | 
						|
  //
 | 
						|
  select_current_id=-1;
 | 
						|
  char target[1500];
 | 
						|
  ssize_t n;
 | 
						|
  if((n=readlink(RD_CONF_FILE,target,1500))>0) {
 | 
						|
    target[n]=0;
 | 
						|
  }
 | 
						|
  else {
 | 
						|
    target[0]=0;
 | 
						|
  }
 | 
						|
  QDir config_dir(RD_DEFAULT_RDSELECT_DIR);
 | 
						|
  config_dir.setFilter(QDir::Files|QDir::Readable);
 | 
						|
  QStringList filters;
 | 
						|
  filters.push_back("*.conf");
 | 
						|
  config_dir.setNameFilters(filters);
 | 
						|
  select_filenames=config_dir.entryList();
 | 
						|
  for(int i=0;i<select_filenames.size();i++) {
 | 
						|
    select_filenames[i]=
 | 
						|
      QString(RD_DEFAULT_RDSELECT_DIR)+"/"+select_filenames[i];
 | 
						|
    if(select_filenames[i]==target) {
 | 
						|
      select_current_id=i;
 | 
						|
    }
 | 
						|
    select_configs.push_back(new RDConfig());
 | 
						|
    select_configs.back()->setFilename(select_filenames[i]);
 | 
						|
    select_configs.back()->load();
 | 
						|
    select_configs.back()->setModuleName("RDSelect");
 | 
						|
  }
 | 
						|
 | 
						|
  //
 | 
						|
  // Current System Label
 | 
						|
  //
 | 
						|
  select_current_label=new QLabel(this);
 | 
						|
  select_current_label->setFont(progressFont());
 | 
						|
  select_current_label->setAlignment(Qt::AlignCenter);
 | 
						|
 | 
						|
  //
 | 
						|
  // Selector Box
 | 
						|
  //
 | 
						|
  select_box=new QListWidget(this);
 | 
						|
  select_box->setSelectionMode(QAbstractItemView::SingleSelection);
 | 
						|
  connect(select_box,SIGNAL(doubleClicked(const QModelIndex &)),
 | 
						|
	  this,SLOT(doubleClickedData(const QModelIndex &)));
 | 
						|
  for(unsigned i=0;i<select_configs.size();i++) {
 | 
						|
    select_box->insertItem(select_box->count(),select_configs[i]->label());
 | 
						|
  }
 | 
						|
  select_label=new QLabel(tr("Available Systems"),this);
 | 
						|
  select_label->setFont(labelFont());
 | 
						|
 | 
						|
  //
 | 
						|
  // Ok Button
 | 
						|
  //
 | 
						|
  ok_button=new QPushButton(this);
 | 
						|
  ok_button->setFont(buttonFont());
 | 
						|
  ok_button->setText(tr("Select"));
 | 
						|
  connect(ok_button,SIGNAL(clicked()),this,SLOT(okData()));
 | 
						|
 | 
						|
  //
 | 
						|
  // Cancel Button
 | 
						|
  //
 | 
						|
  cancel_button=new QPushButton(this);
 | 
						|
  cancel_button->setFont(buttonFont());
 | 
						|
  cancel_button->setText(tr("Cancel"));
 | 
						|
  connect(cancel_button,SIGNAL(clicked()),this,SLOT(cancelData()));
 | 
						|
 | 
						|
  SetSystem(select_current_id);
 | 
						|
  SetCurrentItem(select_current_id);
 | 
						|
  select_box->clearSelection();
 | 
						|
 | 
						|
  loadSettings(true);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
QSize MainWidget::sizeHint() const
 | 
						|
{
 | 
						|
  return QSize(400,300);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
QSizePolicy MainWidget::sizePolicy() const
 | 
						|
{
 | 
						|
  return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::doubleClickedData(const QModelIndex &index)
 | 
						|
{
 | 
						|
  okData();
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::okData()
 | 
						|
{
 | 
						|
  QStringList args;
 | 
						|
  QProcess *proc=NULL;
 | 
						|
 | 
						|
  QModelIndexList rows=select_box->selectionModel()->selectedRows();
 | 
						|
 | 
						|
  if(rows.size()!=1) {
 | 
						|
    return;
 | 
						|
  }
 | 
						|
 | 
						|
  QStringList f0=select_configs[rows.first().row()]->filename().
 | 
						|
    split("/",QString::SkipEmptyParts);
 | 
						|
  args.push_back(f0.last());
 | 
						|
  proc=new QProcess(this);
 | 
						|
  proc->start(QString(RD_PREFIX)+"/bin/rdselect_helper",args);
 | 
						|
  proc->waitForFinished();
 | 
						|
  if(proc->exitStatus()!=QProcess::NormalExit) {
 | 
						|
    QMessageBox::critical(this,"RDSelect - "+tr("Error"),
 | 
						|
			  tr("RDSelect helper process crashed!"));
 | 
						|
    delete proc;
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  if(proc->exitCode()!=0) {
 | 
						|
    QMessageBox::critical(this,"RDSelect - "+tr("Error"),
 | 
						|
			  tr("Unable to select configuration:")+"\n"+
 | 
						|
			  RDConfig::rdselectExitCodeText((RDConfig::RDSelectExitCode)proc->exitCode()));
 | 
						|
    delete proc;
 | 
						|
    return;
 | 
						|
  }
 | 
						|
  delete proc;
 | 
						|
 | 
						|
  saveSettings();
 | 
						|
  exit(0);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::cancelData()
 | 
						|
{
 | 
						|
  saveSettings();
 | 
						|
  exit(0);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::closeEvent(QCloseEvent *e)
 | 
						|
{
 | 
						|
  cancelData();
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::resizeEvent(QResizeEvent *e)
 | 
						|
{
 | 
						|
  select_current_label->setGeometry(0,10,size().width(),21);
 | 
						|
  select_label->setGeometry(10,35,size().width()-20,20);
 | 
						|
  select_box->setGeometry(10,55,size().width()-20,size().height()-125);
 | 
						|
  ok_button->setGeometry(size().width()-180,size().height()-60,80,50);
 | 
						|
  cancel_button->setGeometry(size().width()-90,size().height()-60,80,50);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::SetSystem(int id)
 | 
						|
{
 | 
						|
  QString text=tr("None");
 | 
						|
  if(id>=0) {
 | 
						|
    text=select_configs[id]->label();
 | 
						|
  }
 | 
						|
  select_current_label->setText(tr("Current System:")+" "+text);
 | 
						|
  select_current_id=id;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void MainWidget::SetCurrentItem(int id)
 | 
						|
{
 | 
						|
  QPixmap *pix=redx_map;
 | 
						|
  int schema=0;
 | 
						|
  bool db_ok=RDDbValid(select_configs[select_current_id],&schema);
 | 
						|
  bool snd_ok=RDAudioStoreValid(select_configs[select_current_id]);
 | 
						|
  
 | 
						|
  if(db_ok&(schema==RD_VERSION_DATABASE)&&snd_ok) {
 | 
						|
    pix=greencheckmark_map;
 | 
						|
  }
 | 
						|
  for(int i=0;i<select_box->count();i++) {
 | 
						|
    QListWidgetItem *item=select_box->item(i);
 | 
						|
    if(i==id) {
 | 
						|
      item->setData(Qt::DisplayRole,select_configs[i]->label());
 | 
						|
      item->setData(Qt::DecorationRole,*pix);
 | 
						|
    }
 | 
						|
    else {
 | 
						|
      item->setData(Qt::DisplayRole,select_configs[i]->label());
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
int main(int argc,char *argv[])
 | 
						|
{
 | 
						|
  QApplication::setStyle(RD_GUI_STYLE);
 | 
						|
  QApplication a(argc,argv);
 | 
						|
  
 | 
						|
  //
 | 
						|
  // Load Translations
 | 
						|
  //
 | 
						|
  QString loc=RDApplication::locale();
 | 
						|
  if(!loc.isEmpty()) {
 | 
						|
    QTranslator qt(0);
 | 
						|
    qt.load(QString("/usr/share/qt4/translations/qt_")+loc,
 | 
						|
	    ".");
 | 
						|
    a.installTranslator(&qt);
 | 
						|
 | 
						|
    QTranslator rd(0);
 | 
						|
    rd.load(QString(PREFIX)+QString("/share/rivendell/librd_")+loc,".");
 | 
						|
    a.installTranslator(&rd);
 | 
						|
 | 
						|
    QTranslator rdhpi(0);
 | 
						|
    rdhpi.load(QString(PREFIX)+QString("/share/rivendell/librdhpi_")+loc,".");
 | 
						|
    a.installTranslator(&rdhpi);
 | 
						|
 | 
						|
    QTranslator tr(0);
 | 
						|
    tr.load(QString(PREFIX)+QString("/share/rivendell/rdselect_")+loc,".");
 | 
						|
    a.installTranslator(&tr);
 | 
						|
  }
 | 
						|
 | 
						|
  //
 | 
						|
  // Start Event Loop
 | 
						|
  //
 | 
						|
  RDConfig *config=new RDConfig();
 | 
						|
  config->load();
 | 
						|
  MainWidget *w=new MainWidget(config);
 | 
						|
  w->show();
 | 
						|
  return a.exec();
 | 
						|
}
 |