mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-09 22:43:11 +02:00
112 lines
2.6 KiB
C++
112 lines
2.6 KiB
C++
// edit_track.cpp
|
|
//
|
|
// Edit a Rivendell LogManager Track
|
|
//
|
|
// (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
|
|
// 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 <qdialog.h>
|
|
#include <qstring.h>
|
|
#include <q3textedit.h>
|
|
#include <qpainter.h>
|
|
#include <qmessagebox.h>
|
|
|
|
#include <rd.h>
|
|
#include <rdevent.h>
|
|
|
|
#include "edit_track.h"
|
|
|
|
EditTrack::EditTrack(QString *text,QWidget *parent)
|
|
: QDialog(parent)
|
|
{
|
|
setWindowTitle("RDLogManager - "+tr("Edit Voice Track Marker"));
|
|
edit_text=text;
|
|
|
|
//
|
|
// Fix the Window Size
|
|
//
|
|
setMinimumWidth(sizeHint().width());
|
|
setMaximumWidth(sizeHint().width());
|
|
setMinimumHeight(sizeHint().height());
|
|
setMaximumHeight(sizeHint().height());
|
|
|
|
//
|
|
// Create Fonts
|
|
//
|
|
QFont bold_font=QFont("Helvetica",12,QFont::Bold);
|
|
bold_font.setPixelSize(12);
|
|
QFont font=QFont("Helvetica",12,QFont::Normal);
|
|
font.setPixelSize(12);
|
|
|
|
//
|
|
// The Text Editor
|
|
//
|
|
edit_text_edit=new Q3TextEdit(this);
|
|
edit_text_edit->setGeometry(10,10,
|
|
sizeHint().width()-20,sizeHint().height()-80);
|
|
edit_text_edit->setText(*edit_text);
|
|
|
|
//
|
|
// OK Button
|
|
//
|
|
QPushButton *button=new QPushButton(this);
|
|
button->setGeometry(sizeHint().width()-180,sizeHint().height()-60,80,50);
|
|
button->setDefault(true);
|
|
button->setFont(bold_font);
|
|
button->setText(tr("&OK"));
|
|
connect(button,SIGNAL(clicked()),this,SLOT(okData()));
|
|
|
|
//
|
|
// Cancel Button
|
|
//
|
|
button=new QPushButton(this);
|
|
button->setGeometry(sizeHint().width()-90,sizeHint().height()-60,80,50);
|
|
button->setFont(bold_font);
|
|
button->setText(tr("&Cancel"));
|
|
connect(button,SIGNAL(clicked()),this,SLOT(cancelData()));
|
|
}
|
|
|
|
|
|
QSize EditTrack::sizeHint() const
|
|
{
|
|
return QSize(400,250);
|
|
}
|
|
|
|
|
|
QSizePolicy EditTrack::sizePolicy() const
|
|
{
|
|
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
|
|
}
|
|
|
|
|
|
void EditTrack::okData()
|
|
{
|
|
*edit_text=edit_text_edit->text();
|
|
done(0);
|
|
}
|
|
|
|
|
|
void EditTrack::cancelData()
|
|
{
|
|
done(-1);
|
|
}
|
|
|
|
|
|
void EditTrack::closeEvent(QCloseEvent *e)
|
|
{
|
|
cancelData();
|
|
}
|