mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-04 16:14:03 +01:00 
			
		
		
		
	* Removed all CVS tags. * Removed 'const char *name' parameter from all QObject contructors.
		
			
				
	
	
		
			141 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			141 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
// edit_aux_field.cpp
 | 
						|
//
 | 
						|
// Edit an Auxiliary Field for an RSS Feed
 | 
						|
//
 | 
						|
//   (C) Copyright 2002-2007,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 <qmessagebox.h>
 | 
						|
#include <rddb.h>
 | 
						|
#include <rdescape_string.h>
 | 
						|
#include <edit_aux_field.h>
 | 
						|
 | 
						|
 | 
						|
EditAuxField::EditAuxField(unsigned feed_id,QWidget *parent)
 | 
						|
  : QDialog(parent,"",true)
 | 
						|
{
 | 
						|
  QString sql;
 | 
						|
  RDSqlQuery *q;
 | 
						|
 | 
						|
  edit_field_id=feed_id;
 | 
						|
  setCaption(tr("Edit Auxiliary Metadata Fields"));
 | 
						|
 | 
						|
  //
 | 
						|
  // Fix the Window Size
 | 
						|
  //
 | 
						|
  setMinimumWidth(sizeHint().width());
 | 
						|
  setMaximumWidth(sizeHint().width());
 | 
						|
  setMinimumHeight(sizeHint().height());
 | 
						|
  setMaximumHeight(sizeHint().height());
 | 
						|
 | 
						|
  //
 | 
						|
  // Create Fonts
 | 
						|
  //
 | 
						|
  QFont bold_font=QFont("Helvetica",12,QFont::Bold);
 | 
						|
  bold_font.setPixelSize(12);
 | 
						|
  QFont font=QFont("Helvetica",12,QFont::Normal);
 | 
						|
  font.setPixelSize(12);
 | 
						|
 | 
						|
  //
 | 
						|
  // Variable Name
 | 
						|
  //
 | 
						|
  edit_varname_edit=new QLineEdit(this);
 | 
						|
  edit_varname_edit->setGeometry(120,10,130,20);
 | 
						|
  edit_varname_edit->setReadOnly(true);
 | 
						|
  QLabel *label=
 | 
						|
    new QLabel(edit_varname_edit,tr("Variable Name: "),this);
 | 
						|
  label->setGeometry(10,13,105,20);
 | 
						|
  label->setFont(bold_font);
 | 
						|
  label->setAlignment(AlignRight);
 | 
						|
 | 
						|
  //
 | 
						|
  // Variable Name
 | 
						|
  //
 | 
						|
  edit_caption_edit=new QLineEdit(this);
 | 
						|
  edit_caption_edit->setGeometry(120,37,sizeHint().width()-130,20);
 | 
						|
  edit_caption_edit->setMaxLength(64);
 | 
						|
  label=new QLabel(edit_caption_edit,tr("Caption: "),this);
 | 
						|
  label->setGeometry(10,37,105,20);
 | 
						|
  label->setFont(bold_font);
 | 
						|
  label->setAlignment(AlignRight);
 | 
						|
 | 
						|
  //
 | 
						|
  //  Ok Button
 | 
						|
  //
 | 
						|
  QPushButton *button=new QPushButton(this);
 | 
						|
  button->setGeometry(sizeHint().width()-180,sizeHint().height()-60,80,50);
 | 
						|
  button->setDefault(true);
 | 
						|
  button->setFont(bold_font);
 | 
						|
  button->setText(tr("&OK"));
 | 
						|
  connect(button,SIGNAL(clicked()),this,SLOT(okData()));
 | 
						|
 | 
						|
  //
 | 
						|
  //  Cancel Button
 | 
						|
  //
 | 
						|
  button=new QPushButton(this);
 | 
						|
  button->setGeometry(sizeHint().width()-90,sizeHint().height()-60,
 | 
						|
			     80,50);
 | 
						|
  button->setFont(bold_font);
 | 
						|
  button->setText(tr("&Cancel"));
 | 
						|
  connect(button,SIGNAL(clicked()),this,SLOT(cancelData()));
 | 
						|
 | 
						|
  //
 | 
						|
  // Load Data
 | 
						|
  //
 | 
						|
  sql=QString().sprintf("select VAR_NAME,CAPTION from AUX_METADATA \
 | 
						|
                         where ID=%u",edit_field_id);
 | 
						|
  q=new RDSqlQuery(sql);
 | 
						|
  if(q->first()) {
 | 
						|
    edit_varname_edit->setText(q->value(0).toString());
 | 
						|
    edit_caption_edit->setText(q->value(1).toString());
 | 
						|
  }
 | 
						|
  delete q;
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
QSize EditAuxField::sizeHint() const
 | 
						|
{
 | 
						|
  return QSize(400,127);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
QSizePolicy EditAuxField::sizePolicy() const
 | 
						|
{
 | 
						|
  return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void EditAuxField::okData()
 | 
						|
{
 | 
						|
  QString sql;
 | 
						|
  RDSqlQuery *q;
 | 
						|
 | 
						|
  sql=QString().sprintf("update AUX_METADATA set CAPTION=\"%s\" \
 | 
						|
                         where ID=%u",
 | 
						|
		       (const char *)RDEscapeString(edit_caption_edit->text()),
 | 
						|
		       edit_field_id);
 | 
						|
  q=new RDSqlQuery(sql);
 | 
						|
  delete q;
 | 
						|
 | 
						|
  done(0);
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
void EditAuxField::cancelData()
 | 
						|
{
 | 
						|
  done(-1);
 | 
						|
}
 |