You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kpicosim/src/kexportdialog.cpp

159 lines
4.6 KiB

/***************************************************************************
* Copyright (C) 2005 by Mark Six *
* marksix@xs4all.nl *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* 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., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#include "kexportdialog.h"
#include <tdefiledialog.h>
KExportDialog::KExportDialog( TQWidget *parent, const char *name ) : TQDialog(parent, name)
{
m_templateFile = "" ;
m_outputDir = "" ;
TQLabel *label = new TQLabel( this ) ;
label->setText( "Template file" ) ;
label->move( 10, 10 ) ;
label = new TQLabel( this ) ;
label->setText( "Output directory" ) ;
label->move( 10, 35 ) ;
label = new TQLabel( this ) ;
label->setText( "Entity name" ) ;
label->move( 10, 60 ) ;
m_lineTemplateFile = new KLineEdit( this ) ;
m_lineTemplateFile->setText( "" ) ;
m_lineTemplateFile->setFixedSize( 150, 20 ) ;
m_lineTemplateFile->move( 110, 10 ) ;
m_lineOutputDir = new KLineEdit( this ) ;
m_lineOutputDir->setText( "" ) ;
m_lineOutputDir->setFixedSize( 150, 20 ) ;
m_lineOutputDir->move( 110, 35 ) ;
m_lineEntityName = new KLineEdit( this ) ;
m_lineEntityName->setText( "" ) ;
m_lineEntityName->setFixedSize( 150, 20 ) ;
m_lineEntityName->move( 110, 60 ) ;
TQPushButton *button = new TQPushButton( this ) ;
button->setText( "OK" ) ;
button->setFixedSize( 60, 25 ) ;
button->move( 100, 90 ) ;
connect( button, TQ_SIGNAL( clicked() ), this, TQ_SLOT( btnOKClicked() ) ) ;
button = new TQPushButton( this ) ;
button->setText( "Cancel" ) ;
button->setFixedSize( 60, 25 ) ;
button->move( 200, 90 ) ;
connect( button, TQ_SIGNAL( clicked() ), this, TQ_SLOT( btnCancelClicked() ) ) ;
button = new TQPushButton( this ) ;
button->setText( "..." ) ;
button->setFixedSize( 25, 20 ) ;
button->move( 270, 10 ) ;
connect( button, TQ_SIGNAL( clicked() ), this, TQ_SLOT( showFileDialog() ) ) ;
button = new TQPushButton( this ) ;
button->setText( "..." ) ;
button->setFixedSize( 25, 20 ) ;
button->move( 270, 35 ) ;
connect( button, TQ_SIGNAL( clicked() ), this, TQ_SLOT( showDirDialog() ) ) ;
setFixedSize( 340, 130 ) ;
setCaption( "Export to VHDL" ) ;
m_bCanceled = true ;
}
KExportDialog::~KExportDialog()
{
}
void KExportDialog::modal()
{
exec() ;
}
void KExportDialog::showFileDialog()
{
KFileDialog dlg( TQString(), "*.vhd|vhdl template file", this, "template dlg", true ) ;
dlg.exec() ;
if ( dlg.selectedFile() != "" )
m_lineTemplateFile->setText( dlg.selectedFile() ) ;
}
void KExportDialog::showDirDialog()
{
TQString dir = KFileDialog::getExistingDirectory ( TQString(), this, "Export directory" ) ;
if ( dir != "" )
m_lineOutputDir->setText( dir ) ;
}
void KExportDialog::btnOKClicked()
{
m_templateFile = m_lineTemplateFile->text() ;
m_outputDir = m_lineOutputDir->text() ;
m_entityName = m_lineEntityName->text() ;
m_bCanceled = false ;
close() ;
}
void KExportDialog::btnCancelClicked()
{
m_outputDir = "" ;
m_templateFile = "" ;
m_entityName = "" ;
close() ;
}
void KExportDialog::setTemplateFile( TQString file )
{
m_lineTemplateFile->setText( file ) ;
}
void KExportDialog::setOutputDir( TQString dir )
{
m_lineOutputDir->setText( dir ) ;
}
void KExportDialog::setEntityName( TQString name )
{
m_lineEntityName->setText( name ) ;
}
TQString KExportDialog::getTemplateFile()
{
return m_templateFile ;
}
TQString KExportDialog::getOutputDir()
{
return m_outputDir ;
}
TQString KExportDialog::getEntityName()
{
return m_entityName ;
}
#include "kexportdialog.moc"