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.
tdesdk/umbrello/umbrello/codegenerators/rubycodegenerationpolicy.cpp

171 lines
5.4 KiB

/***************************************************************************
rubycodegenerationpolicy.cpp
Derived from the Java code generator by thomas
begin : Thur Jul 21 2005
author : Richard Dale
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
* copyright (C) 2006-2007 *
* Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
***************************************************************************/
// own header
#include "rubycodegenerationpolicy.h"
// qt/kde includes
#include <tdeconfig.h>
// app includes
#include "rubycodegenerationpolicypage.h"
#include "rubycodegenerator.h"
#include "../uml.h"
const bool RubyCodeGenerationPolicy::DEFAULT_AUTO_GEN_ATTRIB_ACCESSORS = true;
const bool RubyCodeGenerationPolicy::DEFAULT_AUTO_GEN_ASSOC_ACCESSORS = true;
// Constructors/Destructors
//
RubyCodeGenerationPolicy::RubyCodeGenerationPolicy(TDEConfig *config)
{
init();
setDefaults(config,false);
}
RubyCodeGenerationPolicy::~RubyCodeGenerationPolicy ( ) { }
//
// Methods
//
// Accessor methods
//
// Public attribute accessor methods
//
/**
* Set the value of m_autoGenerateAttribAccessors
* @param new_var the new value
*/
void RubyCodeGenerationPolicy::setAutoGenerateAttribAccessors( bool var ) {
m_autoGenerateAttribAccessors = var;
m_commonPolicy->emitModifiedCodeContentSig();
}
/**
* Set the value of m_autoGenerateAssocAccessors
* @param new_var the new value
*/
void RubyCodeGenerationPolicy::setAutoGenerateAssocAccessors( bool var ) {
m_autoGenerateAssocAccessors = var;
m_commonPolicy->emitModifiedCodeContentSig();
}
/**
* Get the value of m_autoGenerateAttribAccessors
* @return the value of m_autoGenerateAttribAccessors
*/
bool RubyCodeGenerationPolicy::getAutoGenerateAttribAccessors( ){
return m_autoGenerateAttribAccessors;
}
/**
* Get the value of m_autoGenerateAssocAccessors
* @return the value of m_autoGenerateAssocAccessors
*/
bool RubyCodeGenerationPolicy::getAutoGenerateAssocAccessors( ){
return m_autoGenerateAssocAccessors;
}
// Other methods
//
void RubyCodeGenerationPolicy::writeConfig ( TDEConfig * config )
{
// @todo do we need to call CodeGenerationPolicy::writeConfig ???
// write ONLY the Ruby specific stuff
config->setGroup("Ruby Code Generation");
config->writeEntry("autoGenAccessors",getAutoGenerateAttribAccessors());
config->writeEntry("autoGenAssocAccessors",getAutoGenerateAssocAccessors());
}
void RubyCodeGenerationPolicy::setDefaults ( CodeGenPolicyExt * clone, bool emitUpdateSignal )
{
RubyCodeGenerationPolicy * rclone;
if (!clone)
return;
// NOW block signals for ruby param setting
blockSignals(true); // we need to do this because otherwise most of these
// settors below will each send the modifiedCodeContent() signal
// needlessly (we can just make one call at the end).
// now do ruby-specific stuff IF our clone is also a RubyCodeGenerationPolicy object
if((rclone = dynamic_cast<RubyCodeGenerationPolicy*>(clone)))
{
setAutoGenerateAttribAccessors(rclone->getAutoGenerateAttribAccessors());
setAutoGenerateAssocAccessors(rclone->getAutoGenerateAssocAccessors());
}
blockSignals(false); // "as you were citizen"
if(emitUpdateSignal)
m_commonPolicy->emitModifiedCodeContentSig();
}
void RubyCodeGenerationPolicy::setDefaults( TDEConfig * config, bool emitUpdateSignal )
{
if(!config)
return;
// call the superclass to init default stuff
m_commonPolicy->setDefaults(config, false);
// NOW block signals (because call to super-class method will leave value at "true")
blockSignals(true); // we need to do this because otherwise most of these
// settors below will each send the modifiedCodeContent() signal
// needlessly (we can just make one call at the end).
// now do ruby specific stuff
config -> setGroup("Ruby Code Generation");
setAutoGenerateAttribAccessors(config->readBoolEntry("autoGenAccessors",DEFAULT_AUTO_GEN_ATTRIB_ACCESSORS));
setAutoGenerateAssocAccessors(config->readBoolEntry("autoGenAssocAccessors",DEFAULT_AUTO_GEN_ASSOC_ACCESSORS));
blockSignals(false); // "as you were citizen"
if(emitUpdateSignal)
m_commonPolicy->emitModifiedCodeContentSig();
}
/**
* Create a new dialog interface for this object.
* @return dialog object
*/
CodeGenerationPolicyPage * RubyCodeGenerationPolicy::createPage ( TQWidget *parent, const char *name ) {
return new RubyCodeGenerationPolicyPage ( parent, name, this );
}
void RubyCodeGenerationPolicy::init() {
m_commonPolicy = UMLApp::app()->getCommonPolicy();
m_autoGenerateAttribAccessors = DEFAULT_AUTO_GEN_ATTRIB_ACCESSORS;
m_autoGenerateAssocAccessors = DEFAULT_AUTO_GEN_ASSOC_ACCESSORS;
}
#include "rubycodegenerationpolicy.moc"