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/refactoring/refactoringassistant.h

91 lines
2.8 KiB

/***************************************************************************
* *
* 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) 2003 Luis De la Parra <lparrab@gmx.net> *
* copyright (C) 2004-2007 *
* Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
***************************************************************************/
#ifndef REFACTORING_ASSISTANT
#define REFACTORING_ASSISTANT
#include <tdelistview.h>
#include <tqpixmap.h>
#include <map>
class UMLObject;
class UMLClassifier;
class UMLClassifierListItem;
class UMLDoc;
class TQPopupMenu;
class TQPoint;
class RefactoringAssistant : public TDEListView
{
TQ_OBJECT
public:
typedef std::map<TQListViewItem*, UMLObject*> UMLObjectMap;
explicit RefactoringAssistant( UMLDoc *doc, UMLClassifier *obj = 0, TQWidget *parent = 0, const char *name = 0 );
virtual ~RefactoringAssistant();
void refactor( UMLClassifier *obj );
public slots:
void addBaseClassifier();
void addDerivedClassifier();
void addInterfaceImplementation();
void createOperation( );
void createAttribute( );
void editProperties( );
void umlObjectModified( const UMLObject *obj = 0 );
void operationAdded( UMLClassifierListItem *o );
void operationRemoved( UMLClassifierListItem *o );
void attributeAdded( UMLClassifierListItem *a );
void attributeRemoved( UMLClassifierListItem *a );
void itemExecuted( TQListViewItem *item );
void showContextMenu( TDEListView*, TQListViewItem*, const TQPoint&);
protected:
struct { TQPixmap Public,
Protected,
Private,
Implementation,
Generalization,
Subclass;
} m_pixmaps;
UMLObject* findUMLObject( const TQListViewItem* );
TQListViewItem* findListViewItem( const UMLObject *obj );
void editProperties( UMLObject *obj );
void addClassifier( UMLClassifier *classifier, TQListViewItem *parent = 0, bool addSuper = true, bool addSub = true, bool recurse = false );
void loadPixmaps();
virtual bool acceptDrag(TQDropEvent *event) const;
virtual void movableDropEvent (TQListViewItem* parent, TQListViewItem* afterme);
void setVisibilityIcon( TQListViewItem *item , const UMLObject *obj );
UMLClassifier *m_umlObject;
UMLDoc *m_doc;
TQPopupMenu *m_menu;
UMLObjectMap m_umlObjectMap;
};
#endif