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

* Fixed style inconsistencies in dialogs within rdcatch(1).
This commit is contained in:
Fred Gleason
2018-08-15 19:22:09 +00:00
parent b7d229941a
commit edca43013a
28 changed files with 347 additions and 476 deletions

View File

@@ -2,7 +2,7 @@
//
// Edit a Rivendell Netcatch Recording
//
// (C) Copyright 2002-2003,2016 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2002-2018 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
@@ -23,19 +23,14 @@
#include <vector>
#include <qbuttongroup.h>
#include <qdialog.h>
#include <qsqldatabase.h>
#include <qlineedit.h>
#include <q3datetimeedit.h>
#include <qcombobox.h>
#include <qcheckbox.h>
#include <qspinbox.h>
#include <qlabel.h>
#include <q3buttongroup.h>
//Added by qt3to4:
#include <QKeyEvent>
#include <QCloseEvent>
#include <QPaintEvent>
#include <rdrecording.h>
#include <rddeck.h>
@@ -62,7 +57,6 @@ class EditRecording : public QDialog
void cancelData();
protected:
void paintEvent(QPaintEvent *e);
void keyPressEvent(QKeyEvent *);
void closeEvent(QCloseEvent *e);
@@ -91,9 +85,9 @@ class EditRecording : public QDialog
QSpinBox *edit_startoffset_box;
QSpinBox *edit_endoffset_box;
QCheckBox *edit_oneshot_box;
Q3ButtonGroup *edit_starttype_group;
QButtonGroup *edit_starttype_group;
QLabel *edit_starttime_label;
Q3ButtonGroup *edit_endtype_group;
QButtonGroup *edit_endtype_group;
QLabel *edit_endtime_label;
QLabel *edit_endlength_label;
Q3TimeEdit *edit_starttime_edit;