mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-07 01:13:50 +02:00
* Refactored dialogs in the convenience library to use the 'RDDialog' and 'RDWidget' base classes.
97 lines
2.5 KiB
C++
97 lines
2.5 KiB
C++
// rdedit_panel_name.cpp
|
|
//
|
|
// Edit a SoundPanel Panel Name
|
|
//
|
|
// (C) Copyright 2002-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.
|
|
//
|
|
|
|
#include <qlabel.h>
|
|
#include <qpushbutton.h>
|
|
|
|
#include <rdedit_panel_name.h>
|
|
|
|
RDEditPanelName::RDEditPanelName(QString *panelname,QWidget *parent)
|
|
: RDDialog(parent)
|
|
{
|
|
panel_name=panelname;
|
|
|
|
//
|
|
// Fix the Window Size
|
|
//
|
|
setMinimumSize(sizeHint());
|
|
setMaximumSize(sizeHint());
|
|
|
|
setWindowTitle(tr("Edit Panel Name"));
|
|
|
|
//
|
|
// Panel Name
|
|
//
|
|
panel_name_edit=new QLineEdit(this,"panel_name_edit");
|
|
panel_name_edit->setGeometry(95,11,sizeHint().width()-105,19);
|
|
panel_name_edit->setMaxLength(64);
|
|
panel_name_edit->setText(*panel_name);
|
|
panel_name_edit->selectAll();
|
|
QLabel *panel_name_label=new QLabel(panel_name_edit,tr("Panel &Name:"),this,
|
|
"panel_name_label");
|
|
panel_name_label->setGeometry(10,13,80,19);
|
|
panel_name_label->setFont(labelFont());
|
|
panel_name_label->setAlignment(Qt::AlignRight|Qt::TextShowMnemonic);
|
|
|
|
//
|
|
// Ok Button
|
|
//
|
|
QPushButton *ok_button=new QPushButton(this,"ok_button");
|
|
ok_button->setGeometry(sizeHint().width()-180,45,80,50);
|
|
ok_button->setDefault(true);
|
|
ok_button->setFont(buttonFont());
|
|
ok_button->setText(tr("&OK"));
|
|
connect(ok_button,SIGNAL(clicked()),this,SLOT(okData()));
|
|
|
|
//
|
|
// Cancel Button
|
|
//
|
|
QPushButton *cancel_button=new QPushButton(this,"cancel_button");
|
|
cancel_button->setGeometry(sizeHint().width()-90,45,80,50);
|
|
cancel_button->setFont(buttonFont());
|
|
cancel_button->setText(tr("&Cancel"));
|
|
connect(cancel_button,SIGNAL(clicked()),this,SLOT(cancelData()));
|
|
}
|
|
|
|
|
|
QSize RDEditPanelName::sizeHint() const
|
|
{
|
|
return QSize(400,110);
|
|
}
|
|
|
|
|
|
QSizePolicy RDEditPanelName::sizePolicy() const
|
|
{
|
|
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
|
|
}
|
|
|
|
|
|
void RDEditPanelName::okData()
|
|
{
|
|
*panel_name=panel_name_edit->text();
|
|
done(0);
|
|
}
|
|
|
|
|
|
void RDEditPanelName::cancelData()
|
|
{
|
|
done(-1);
|
|
}
|