165 lines
4.8 KiB
C++
165 lines
4.8 KiB
C++
// -*- C++ -*-
|
|
//
|
|
// This file is part of the Coriolis Software.
|
|
// Copyright (c) UPMC 2008-2016, All Rights Reserved
|
|
//
|
|
// +-----------------------------------------------------------------+
|
|
// | C O R I O L I S |
|
|
// | U n i c o r n - M a i n G U I |
|
|
// | |
|
|
// | Author : Jean-Paul CHAPUT |
|
|
// | E-mail : Jean-Paul.Chaput@asim.lip6.fr |
|
|
// | =============================================================== |
|
|
// | C++ Module : "./OpenCellDialog.cpp" |
|
|
// +-----------------------------------------------------------------+
|
|
|
|
|
|
#include <iostream>
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
#include <QPushButton>
|
|
#include <QRadioButton>
|
|
#include <QButtonGroup>
|
|
#include <QCheckBox>
|
|
#include <QHBoxLayout>
|
|
#include <QVBoxLayout>
|
|
#include "hurricane/Warning.h"
|
|
#include "hurricane/viewer/Graphics.h"
|
|
#include "crlcore/Environment.h"
|
|
#include "crlcore/AllianceFramework.h"
|
|
#include "unicorn/OpenCellDialog.h"
|
|
|
|
|
|
namespace Unicorn {
|
|
|
|
using namespace std;
|
|
using Hurricane::Warning;
|
|
using Hurricane::Graphics;
|
|
using CRL::Environment;
|
|
using CRL::AllianceFramework;
|
|
|
|
|
|
// -------------------------------------------------------------------
|
|
// Class : "OpenCellDialog".
|
|
|
|
|
|
OpenCellDialog::OpenCellDialog ( QWidget* parent )
|
|
: QDialog (parent)
|
|
, _lineEdit (NULL)
|
|
, _viewerCheckBox(NULL)
|
|
{
|
|
setWindowTitle ( tr("Open Cell") );
|
|
|
|
QLabel* label = new QLabel ();
|
|
label->setText ( tr("Enter Cell name (without extention)") );
|
|
label->setFont ( Graphics::getNormalFont(true) );
|
|
|
|
_lineEdit = new QLineEdit ();
|
|
_lineEdit->setMinimumWidth ( 400 );
|
|
|
|
_viewerCheckBox = new QCheckBox ();
|
|
_viewerCheckBox->setText ( tr("Open in new Viewer") );
|
|
|
|
QPushButton* okButton = new QPushButton ();
|
|
okButton->setText ( "OK" );
|
|
okButton->setDefault ( true );
|
|
|
|
QPushButton* cancelButton = new QPushButton ();
|
|
cancelButton->setText ( "Cancel" );
|
|
|
|
QHBoxLayout* hLayout1 = new QHBoxLayout ();
|
|
hLayout1->addStretch ();
|
|
hLayout1->addWidget ( okButton );
|
|
hLayout1->addStretch ();
|
|
hLayout1->addWidget ( cancelButton );
|
|
hLayout1->addStretch ();
|
|
|
|
#if DEPRECATED
|
|
QFrame* separator = new QFrame ();
|
|
separator->setFrameShape ( QFrame::HLine );
|
|
separator->setFrameShadow ( QFrame::Sunken );
|
|
|
|
QHBoxLayout* hLayout2 = new QHBoxLayout ();
|
|
QButtonGroup* formatGroup = new QButtonGroup ();
|
|
|
|
QRadioButton* formatButton = new QRadioButton ();
|
|
formatButton->setText ( tr("vst/ap") );
|
|
formatButton->setChecked ( true );
|
|
formatGroup->setId ( formatButton, 0 );
|
|
formatGroup->addButton ( formatButton );
|
|
hLayout2->addWidget ( formatButton );
|
|
|
|
formatButton = new QRadioButton ();
|
|
formatButton->setText ( tr("DEF") );
|
|
formatButton->setChecked ( false );
|
|
formatGroup->setId ( formatButton, 1 );
|
|
formatGroup->addButton ( formatButton );
|
|
hLayout2->addWidget ( formatButton );
|
|
#endif // DEPRECATED
|
|
|
|
QVBoxLayout* vLayout = new QVBoxLayout ();
|
|
vLayout->setSizeConstraint ( QLayout::SetFixedSize );
|
|
vLayout->addWidget ( label );
|
|
vLayout->addWidget ( _lineEdit );
|
|
vLayout->addWidget ( _viewerCheckBox );
|
|
vLayout->addLayout ( hLayout1 );
|
|
//vLayout->addWidget ( separator );
|
|
//vLayout->addLayout ( hLayout2 );
|
|
|
|
setLayout ( vLayout );
|
|
//setModal ( true );
|
|
|
|
connect ( okButton, SIGNAL(clicked()) , this, SLOT(accept()) );
|
|
connect ( cancelButton, SIGNAL(clicked()) , this, SLOT(reject()) );
|
|
//connect ( formatGroup , SIGNAL(buttonClicked(int)), this, SLOT(formatChanged(int)) );
|
|
}
|
|
|
|
|
|
const QString OpenCellDialog::getCellName () const
|
|
{
|
|
return _lineEdit->text();
|
|
}
|
|
|
|
|
|
bool OpenCellDialog::newViewerRequest () const
|
|
{
|
|
return _viewerCheckBox->isChecked();
|
|
}
|
|
|
|
|
|
bool OpenCellDialog::runDialog ( QWidget* parent, QString& name, bool& newViewerRequest )
|
|
{
|
|
OpenCellDialog* dialog = new OpenCellDialog ( parent );
|
|
bool dialogResult = (dialog->exec() == Accepted);
|
|
|
|
name = dialog->getCellName ();
|
|
newViewerRequest = dialog->newViewerRequest ();
|
|
|
|
delete dialog;
|
|
|
|
return dialogResult;
|
|
}
|
|
|
|
|
|
#if DEPRECATED
|
|
void OpenCellDialog::formatChanged ( int index )
|
|
{
|
|
Environment* environment = AllianceFramework::get()->getEnvironment();
|
|
switch ( index ) {
|
|
case 0:
|
|
environment->setIN_LO ( "vst" );
|
|
environment->setIN_PH ( "ap" );
|
|
break;
|
|
case 1:
|
|
environment->setIN_LO ( "def" );
|
|
environment->setIN_PH ( "def" );
|
|
break;
|
|
default:
|
|
cerr << Warning("Unknown input format: %d.",index) << endl;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
|
|
} // End of Unicorn namespace.
|