2018-08-07 Fred Gleason <fredg@paravelsystems.com>

* Removed the 'pam_rd' plug-in.
	* Removed rdchunk(1).
	* Upgraded Qt3 to Qt4.
This commit is contained in:
Fred Gleason
2018-08-07 10:09:49 -04:00
parent 6b1a06a910
commit 796e1bebc3
774 changed files with 10347 additions and 10823 deletions

View File

@@ -24,10 +24,14 @@
#include <signal.h>
#include <fcntl.h>
#include <unistd.h>
#include <qfiledialog.h>
#include <q3filedialog.h>
#include <qlineedit.h>
#include <qmessagebox.h>
#include <qpushbutton.h>
//Added by qt3to4:
#include <QCloseEvent>
#include <QResizeEvent>
#include <QLabel>
#include <rd.h>
#include <rdconf.h>
@@ -65,7 +69,7 @@ RenderDialog::RenderDialog(RDStation *station,RDSystem *system,RDConfig *config,
// Dialogs
//
render_progress_dialog=
new QProgressDialog(tr("Rendering Log..."),tr("Cancel"),0,this,"",true);
new Q3ProgressDialog(tr("Rendering Log..."),tr("Cancel"),0,this,"",true);
render_progress_dialog->setCaption("RDLogEdit - "+tr("Render Progress"));
//
@@ -128,7 +132,7 @@ RenderDialog::RenderDialog(RDStation *station,RDSystem *system,RDConfig *config,
render_starttime_label=new QLabel(tr("Virtual Start Time")+":",this);
render_starttime_label->setFont(button_font);
render_starttime_label->setAlignment(Qt::AlignRight|Qt::AlignVCenter);
render_starttime_edit=new QTimeEdit(this);
render_starttime_edit=new Q3TimeEdit(this);
render_starttime_edit->setDisabled(true);
//
@@ -225,7 +229,7 @@ void RenderDialog::selectData()
{
if(render_to_box->currentItem()) {
QString filename=
QFileDialog::getSaveFileName(render_save_path,RD_AUDIO_FILE_FILTER,
Q3FileDialog::getSaveFileName(render_save_path,RD_AUDIO_FILE_FILTER,
this,"","RDLogEdit - "+tr("Render Log"));
if(!filename.isEmpty()) {
render_filename_edit->setText(filename);