Rivendellaudio/rdadmin/edit_vguest_resource.h
Fred Gleason f9234e4391 2021-01-31 Fred Gleason <fredg@paravelsystems.com>
* Added 'RDVguestResourceListModel'.
	* Refactored the 'vGuest Switches'/'vGuest Displays' dialogs in
	rdadmin(1) to use the model-based API.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2021-01-31 11:04:24 -05:00

59 lines
1.5 KiB
C++

// edit_vguest_resource.h
//
// Edit a vGuest Resource Record.
//
// (C) Copyright 2002-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.
//
#ifndef EDIT_VGUEST_RESOURCE_H
#define EDIT_VGUEST_RESOURCE_H
#include <QLineEdit>
#include <QPushButton>
#include <rddialog.h>
#include <rdmatrix.h>
#include <rduser.h>
class EditVguestResource : public RDDialog
{
Q_OBJECT
public:
EditVguestResource(QWidget *parent=0);
QSize sizeHint() const;
QSizePolicy sizePolicy() const;
public slots:
int exec(RDMatrix::VguestType type,unsigned id);
private slots:
void okData();
void cancelData();
private:
RDMatrix::VguestType edit_type;
unsigned edit_id;
QLineEdit *edit_enginenum_edit;
QLineEdit *edit_devicenum_edit;
QLineEdit *edit_surfacenum_edit;
QLabel *edit_relaynum_label;
QLineEdit *edit_relaynum_edit;
};
#endif // EDIT_ENDPOINT