|
|
@ -1,14 +1,49 @@
|
|
|
|
#include "georges_typ_dialog.h"
|
|
|
|
#include "georges_typ_dialog.h"
|
|
|
|
|
|
|
|
#include "georges.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class GeorgesTypDialogPvt
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
GeorgesTypDialogPvt()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
typ = NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
~GeorgesTypDialogPvt()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
delete typ;
|
|
|
|
|
|
|
|
typ = NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NLGEORGES::CType *typ;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
GeorgesTypDialog::GeorgesTypDialog( QWidget *parent ) :
|
|
|
|
GeorgesTypDialog::GeorgesTypDialog( QWidget *parent ) :
|
|
|
|
GeorgesDockWidget( parent )
|
|
|
|
GeorgesDockWidget( parent )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
m_ui.setupUi( this );
|
|
|
|
m_ui.setupUi( this );
|
|
|
|
|
|
|
|
m_pvt = new GeorgesTypDialogPvt();
|
|
|
|
setupConnections();
|
|
|
|
setupConnections();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
GeorgesTypDialog::~GeorgesTypDialog()
|
|
|
|
GeorgesTypDialog::~GeorgesTypDialog()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
delete m_pvt;
|
|
|
|
|
|
|
|
m_pvt = NULL;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool GeorgesTypDialog::load( const QString &fileName )
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
GeorgesQt::CGeorges georges;
|
|
|
|
|
|
|
|
NLGEORGES::UType *utyp = georges.loadFormType( fileName.toUtf8().constData() );
|
|
|
|
|
|
|
|
if( utyp == NULL )
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
m_pvt->typ = dynamic_cast< NLGEORGES::CType* >( utyp );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -32,5 +67,7 @@ void GeorgesTypDialog::setupConnections()
|
|
|
|
|
|
|
|
|
|
|
|
void GeorgesTypDialog::log( const QString &msg )
|
|
|
|
void GeorgesTypDialog::log( const QString &msg )
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
QString logMsg = buildLogMsg( msg );
|
|
|
|
|
|
|
|
m_ui.logEdit->appendPlainText( logMsg );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|