2000-08-01 17:33:32 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 2000 The LyX Team.
|
|
|
|
*
|
|
|
|
* ======================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include FORMS_H_LOCATION
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include "Dialogs.h"
|
|
|
|
#include "FormCommand.h"
|
|
|
|
|
2000-09-27 05:40:29 +00:00
|
|
|
FormCommand::FormCommand( LyXView * lv, Dialogs * d, string const & t )
|
|
|
|
: FormBase( lv, d, BUFFER_DEPENDENT, t ),
|
|
|
|
inset_(0), ih_(0)
|
2000-08-01 17:33:32 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
void FormCommand::showInset( InsetCommand * const inset )
|
|
|
|
{
|
|
|
|
if( dialogIsOpen || inset == 0 ) return;
|
|
|
|
|
|
|
|
inset_ = inset;
|
2000-08-03 12:56:25 +00:00
|
|
|
ih_ = inset_->hide.connect(slot(this, &FormCommand::hide));
|
2000-08-01 17:33:32 +00:00
|
|
|
|
|
|
|
params = inset->params();
|
|
|
|
show();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FormCommand::createInset( string const & arg )
|
|
|
|
{
|
|
|
|
if( dialogIsOpen ) return;
|
|
|
|
|
|
|
|
params.setFromString( arg );
|
|
|
|
show();
|
|
|
|
}
|