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/rubyclassifiercodedocument.h

128 lines
3.7 KiB

/***************************************************************************
rubyclassdeclarationblock.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> *
***************************************************************************/
#ifndef RUBYCLASSIFIERCODEDOCUMENT_H
#define RUBYCLASSIFIERCODEDOCUMENT_H
#include <tqstring.h>
#include "../codeclassfieldlist.h"
#include "../classifiercodedocument.h"
#include "../classifier.h"
#include "../hierarchicalcodeblock.h"
#include "classifierinfo.h"
#include "rubycodeclassfield.h"
#include "rubycodeoperation.h"
class RubyClassDeclarationBlock;
class RubyCodeGenerationPolicy;
/**
* class RubyClassifierCodeDocument
* A Ruby UMLClassifier Code Document.
*/
class RubyClassifierCodeDocument : public ClassifierCodeDocument
{
TQ_OBJECT
public:
// Constructors/Destructors
//
/**
* Constructor
*/
RubyClassifierCodeDocument (UMLClassifier * classifier);
/**
* Empty Destructor
*/
virtual ~RubyClassifierCodeDocument ( );
/**
* Get the dialog widget which allows user interaction with the object parameters.
* @return CodeDocumentDialog
*/
//CodeDocumentDialog getDialog ( );
TQString scopeToRubyDecl(Uml::Visibility scope);
// Make it easier on ourselves
RubyCodeGenerationPolicy * getRubyPolicy();
TQString getRubyClassName (const TQString &name);
TQString getPath();
/** add a code operation to this ruby classifier code document.
* @return bool which is true IF the code operation was added successfully
*/
bool addCodeOperation (CodeOperation * op );
protected:
// reset/clear our inventory of textblocks in this document
void resetTextBlocks();
/**
* need to overwrite this for ruby since we need to pick up the
* ruby class declaration block.
*/
virtual void loadChildTextBlocksFromNode ( TQDomElement & root);
void addOrUpdateCodeClassFieldMethodsInCodeBlock(CodeClassFieldList &list, RubyClassDeclarationBlock * codeBlock);
bool forceDoc ();
void updateContent();
private:
RubyClassDeclarationBlock * classDeclCodeBlock;
HierarchicalCodeBlock * constructorBlock;
HierarchicalCodeBlock * operationsBlock;
HierarchicalCodeBlock * publicBlock;
HierarchicalCodeBlock * privateBlock;
HierarchicalCodeBlock * protectedBlock;
// HierarchicalCodeBlock * namespaceBlock;
HierarchicalCodeBlock * pubConstructorBlock;
HierarchicalCodeBlock * protConstructorBlock;
HierarchicalCodeBlock * privConstructorBlock;
HierarchicalCodeBlock * pubOperationsBlock;
HierarchicalCodeBlock * privOperationsBlock;
HierarchicalCodeBlock * protOperationsBlock;
ClassifierInfo * info;
void init ( );
RubyClassDeclarationBlock * getClassDecl();
};
#endif // RUBYCLASSIFIERCODEDOCUMENT_H