mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-07 01:13:50 +02:00
* Added an 'RDDialog' class. * Added an 'RDWidget' class. * Refactored rdadmin(1) to use 'RDDialog' and 'RDWidget' base classes.
73 lines
2.0 KiB
C++
73 lines
2.0 KiB
C++
// importfields.h
|
|
//
|
|
// Import Parser Parameters for RDAdmin.
|
|
//
|
|
// (C) Copyright 2010-2019 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.
|
|
//
|
|
//
|
|
|
|
#ifndef IMPORTFIELDS_H
|
|
#define IMPORTFIELDS_H
|
|
|
|
#include <qlabel.h>
|
|
#include <qspinbox.h>
|
|
|
|
#include <rdsvc.h>
|
|
#include <rdwidget.h>
|
|
|
|
class ImportFields : public RDWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ImportFields(QWidget *parent=0);
|
|
QSize sizeHint() const;
|
|
QSizePolicy sizePolicy() const;
|
|
bool changed() const;
|
|
void readFields(RDSvc *svc,RDSvc::ImportSource type);
|
|
void setFields(RDSvc *svc,RDSvc::ImportSource type);
|
|
|
|
private slots:
|
|
void valueChangedData(int);
|
|
|
|
private:
|
|
bool import_changed;
|
|
QSpinBox *cart_offset_spin;
|
|
QSpinBox *cart_length_spin;
|
|
QSpinBox *title_offset_spin;
|
|
QSpinBox *title_length_spin;
|
|
QSpinBox *hours_offset_spin;
|
|
QSpinBox *hours_length_spin;
|
|
QSpinBox *minutes_offset_spin;
|
|
QSpinBox *minutes_length_spin;
|
|
QSpinBox *seconds_offset_spin;
|
|
QSpinBox *seconds_length_spin;
|
|
QSpinBox *len_hours_offset_spin;
|
|
QSpinBox *len_hours_length_spin;
|
|
QSpinBox *len_minutes_offset_spin;
|
|
QSpinBox *len_minutes_length_spin;
|
|
QSpinBox *len_seconds_offset_spin;
|
|
QSpinBox *len_seconds_length_spin;
|
|
QSpinBox *annctype_offset_spin;
|
|
QSpinBox *annctype_length_spin;
|
|
QSpinBox *data_offset_spin;
|
|
QSpinBox *data_length_spin;
|
|
QSpinBox *event_id_offset_spin;
|
|
QSpinBox *event_id_length_spin;
|
|
};
|
|
|
|
|
|
#endif // IMPORTFIELDS_H
|