summaryrefslogtreecommitdiffstats
path: root/src/kexportdialog.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-19 18:45:49 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-19 18:45:49 +0000
commit09a528fd59d3ea5f69575a92574f7a87898dc068 (patch)
tree9e465c49fbbe65f70d4feca3fcfb2ab3a7cf00d4 /src/kexportdialog.cpp
downloadkpicosim-09a528fd59d3ea5f69575a92574f7a87898dc068.tar.gz
kpicosim-09a528fd59d3ea5f69575a92574f7a87898dc068.zip
Added old abandoned (but very good!) KDE3 KPicoSim application
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kpicosim@1092928 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kexportdialog.cpp')
-rwxr-xr-xsrc/kexportdialog.cpp158
1 files changed, 158 insertions, 0 deletions
diff --git a/src/kexportdialog.cpp b/src/kexportdialog.cpp
new file mode 100755
index 0000000..ae5a444
--- /dev/null
+++ b/src/kexportdialog.cpp
@@ -0,0 +1,158 @@
+/***************************************************************************
+ * 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 <kfiledialog.h>
+
+KExportDialog::KExportDialog( QWidget *parent, const char *name ) : QDialog(parent, name)
+{
+ m_templateFile = "" ;
+ m_outputDir = "" ;
+
+ QLabel *label = new QLabel( this ) ;
+ label->setText( "Template file" ) ;
+ label->move( 10, 10 ) ;
+
+ label = new QLabel( this ) ;
+ label->setText( "Output directory" ) ;
+ label->move( 10, 35 ) ;
+
+ label = new QLabel( 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 ) ;
+
+ QPushButton *button = new QPushButton( this ) ;
+ button->setText( "OK" ) ;
+ button->setFixedSize( 60, 25 ) ;
+ button->move( 100, 90 ) ;
+ connect( button, SIGNAL( clicked() ), this, SLOT( btnOKClicked() ) ) ;
+
+ button = new QPushButton( this ) ;
+ button->setText( "Cancel" ) ;
+ button->setFixedSize( 60, 25 ) ;
+ button->move( 200, 90 ) ;
+ connect( button, SIGNAL( clicked() ), this, SLOT( btnCancelClicked() ) ) ;
+
+ button = new QPushButton( this ) ;
+ button->setText( "..." ) ;
+ button->setFixedSize( 25, 20 ) ;
+ button->move( 270, 10 ) ;
+ connect( button, SIGNAL( clicked() ), this, SLOT( showFileDialog() ) ) ;
+
+ button = new QPushButton( this ) ;
+ button->setText( "..." ) ;
+ button->setFixedSize( 25, 20 ) ;
+ button->move( 270, 35 ) ;
+ connect( button, SIGNAL( clicked() ), this, SLOT( showDirDialog() ) ) ;
+
+ setFixedSize( 340, 130 ) ;
+ setCaption( "Export to VHDL" ) ;
+ m_bCanceled = true ;
+}
+
+KExportDialog::~KExportDialog()
+{
+}
+
+void KExportDialog::modal()
+{
+ exec() ;
+}
+
+void KExportDialog::showFileDialog()
+{
+ KFileDialog dlg( QString::null, "*.vhd|vhdl template file", this, "template dlg", true ) ;
+ dlg.exec() ;
+
+ if ( dlg.selectedFile() != "" )
+ m_lineTemplateFile->setText( dlg.selectedFile() ) ;
+}
+
+void KExportDialog::showDirDialog()
+{
+ QString dir = KFileDialog::getExistingDirectory ( QString::null, 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( QString file )
+{
+ m_lineTemplateFile->setText( file ) ;
+}
+
+void KExportDialog::setOutputDir( QString dir )
+{
+ m_lineOutputDir->setText( dir ) ;
+}
+
+void KExportDialog::setEntityName( QString name )
+{
+ m_lineEntityName->setText( name ) ;
+}
+
+QString KExportDialog::getTemplateFile()
+{
+ return m_templateFile ;
+}
+
+QString KExportDialog::getOutputDir()
+{
+ return m_outputDir ;
+}
+
+QString KExportDialog::getEntityName()
+{
+ return m_entityName ;
+}
+
+
+#include "kexportdialog.moc"