mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-11 00:53:53 +02:00
Initial import of CVS-v2_8_branch
This commit is contained in:
154
rdlogedit/add_meta.cpp
Normal file
154
rdlogedit/add_meta.cpp
Normal file
@@ -0,0 +1,154 @@
|
||||
// add_meta.cpp
|
||||
//
|
||||
// Add a Rivendell RDCatch Event
|
||||
//
|
||||
// (C) Copyright 2002-2004 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// $Id: add_meta.cpp,v 1.9 2010/07/29 19:32:37 cvs Exp $
|
||||
//
|
||||
// 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 <qpushbutton.h>
|
||||
#include <qlistbox.h>
|
||||
#include <qtextedit.h>
|
||||
#include <qpainter.h>
|
||||
#include <qevent.h>
|
||||
#include <qmessagebox.h>
|
||||
#include <qcheckbox.h>
|
||||
#include <qsqldatabase.h>
|
||||
|
||||
#include <rd.h>
|
||||
#include <rdlog_line.h>
|
||||
|
||||
#include <add_meta.h>
|
||||
|
||||
|
||||
AddMeta::AddMeta(QWidget *parent,const char *name)
|
||||
: QDialog(parent,name,true,Qt::WStyle_Customize|Qt::WStyle_DialogBorder)
|
||||
{
|
||||
setCaption("");
|
||||
|
||||
//
|
||||
// Fix the Window Size
|
||||
//
|
||||
setMinimumWidth(sizeHint().width());
|
||||
setMaximumWidth(sizeHint().width());
|
||||
setMinimumHeight(sizeHint().height());
|
||||
setMaximumHeight(sizeHint().height());
|
||||
|
||||
//
|
||||
// Generate Fonts
|
||||
//
|
||||
QFont button_font=QFont("Helvetica",12,QFont::Bold);
|
||||
button_font.setPixelSize(12);
|
||||
QFont label_font=QFont("Helvetica",12,QFont::Bold);
|
||||
label_font.setPixelSize(12);
|
||||
QFont day_font=QFont("Helvetica",12,QFont::Normal);
|
||||
day_font.setPixelSize(12);
|
||||
|
||||
//
|
||||
// Title Label
|
||||
//
|
||||
QLabel *label=new QLabel(tr("Insert a:"),this,"title_label");
|
||||
label->setGeometry(0,0,sizeHint().width(),30);
|
||||
label->setFont(label_font);
|
||||
label->setAlignment(AlignCenter);
|
||||
|
||||
//
|
||||
// Marker Button
|
||||
//
|
||||
QPushButton *button=new QPushButton(this,"marker_button");
|
||||
button->setGeometry(10,30,sizeHint().width()-20,50);
|
||||
button->setFont(button_font);
|
||||
button->setText(tr("&Marker"));
|
||||
connect(button,SIGNAL(clicked()),this,SLOT(markerData()));
|
||||
|
||||
//
|
||||
// Voice Track Button
|
||||
//
|
||||
button=new QPushButton(this,"track_button");
|
||||
button->setGeometry(10,80,sizeHint().width()-20,50);
|
||||
button->setFont(button_font);
|
||||
button->setText(tr("Voice &Track"));
|
||||
connect(button,SIGNAL(clicked()),this,SLOT(trackData()));
|
||||
|
||||
//
|
||||
// Chain Button
|
||||
//
|
||||
button=new QPushButton(this,"chain_button");
|
||||
button->setGeometry(10,130,sizeHint().width()-20,50);
|
||||
button->setFont(button_font);
|
||||
button->setText(tr("Log C&hain"));
|
||||
connect(button,SIGNAL(clicked()),this,SLOT(chainData()));
|
||||
|
||||
//
|
||||
// Cancel Button
|
||||
//
|
||||
button=new QPushButton(this,"cancel_button");
|
||||
button->setGeometry(10,sizeHint().height()-60,sizeHint().width()-20,50);
|
||||
button->setFont(button_font);
|
||||
button->setText(tr("&Cancel"));
|
||||
button->setDefault(true);
|
||||
connect(button,SIGNAL(clicked()),this,SLOT(cancelData()));
|
||||
}
|
||||
|
||||
|
||||
AddMeta::~AddMeta()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
QSize AddMeta::sizeHint() const
|
||||
{
|
||||
return QSize(200,240);
|
||||
}
|
||||
|
||||
|
||||
QSizePolicy AddMeta::sizePolicy() const
|
||||
{
|
||||
return QSizePolicy(QSizePolicy::Fixed,QSizePolicy::Fixed);
|
||||
}
|
||||
|
||||
|
||||
void AddMeta::closeEvent(QCloseEvent *e)
|
||||
{
|
||||
cancelData();
|
||||
}
|
||||
|
||||
|
||||
void AddMeta::markerData()
|
||||
{
|
||||
done(RDLogLine::Marker);
|
||||
}
|
||||
|
||||
|
||||
void AddMeta::chainData()
|
||||
{
|
||||
done(RDLogLine::Chain);
|
||||
}
|
||||
|
||||
|
||||
void AddMeta::trackData()
|
||||
{
|
||||
done(RDLogLine::Track);
|
||||
}
|
||||
|
||||
|
||||
void AddMeta::cancelData()
|
||||
{
|
||||
done(-1);
|
||||
}
|
Reference in New Issue
Block a user