// ************************************************************************* // // Copyleft 2004-2007 Bruno PAGES . // // This file is part of the BOUML Uml Toolkit. // // 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. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // // e-mail : bouml@free.fr // home : http://bouml.free.fr // // ************************************************************************* #ifndef BROWSER_EXPANSION_REGION_H #define BROWSER_EXPANSION_REGION_H #include "BrowserNode.h" #include "Labeled.h" class QPixmap; class ExpansionRegionData; class BrowserExpansionNode; class BrowserActivityDiagram; class BrowserExpansionRegion : public BrowserNode, public Labeled { friend class StereotypesDialog; protected: static IdDict all; static QStringList its_default_stereotypes; ExpansionRegionData * def; BrowserActivityDiagram * associated_diagram; protected: BrowserExpansionRegion(int id); void exec_menu_choice(int rank, BrowserNode * item_above); public: BrowserExpansionRegion(QString s, BrowserNode * p, int id = 0); BrowserExpansionRegion(const BrowserExpansionRegion * model, BrowserNode * p); virtual ~BrowserExpansionRegion(); virtual bool may_contains_them(const QList & l, bool & duplicable) const; virtual BrowserNode * duplicate(BrowserNode * p, QString name = QString::null); static BrowserExpansionRegion * add_expansionregion(BrowserNode * future_parent); static BrowserExpansionRegion * add_expansionregion(BrowserNode * future_parent, const char * name); static BrowserExpansionRegion * get_expansionregion(BrowserNode * parent); QValueList get_nodes() const; BrowserNode * add_expansionnode(); virtual const QPixmap* pixmap (int) const; virtual void menu(); virtual void apply_shortcut(QString s); virtual void open(bool); virtual UmlCode get_type() const; virtual int get_identifier() const; virtual void modified(); virtual void on_delete(); virtual BasicData * get_data() const; virtual QString full_name(bool rev = FALSE, bool itself = TRUE) const; virtual bool allow_empty() const; virtual BrowserNode * get_associated() const; void set_associated_diagram(BrowserActivityDiagram *, bool on_read = FALSE); virtual void save(QTextStream &, bool ref, QString & warning); static BrowserExpansionRegion * read(char * &, char *, BrowserNode *); static BrowserExpansionRegion * read_ref(char * & st); static BrowserNode * get_it(const char * k, int id); static void clear(bool old); static void update_idmax_for_root(); virtual void renumber(int phase); virtual bool tool_cmd(ToolCom * com, const char * args); virtual bool api_compatible(unsigned v) const; static void init(); static const QStringList & default_stereotypes(); static void read_stereotypes(char * &, char * & k); static void save_stereotypes(QTextStream &); static QString drag_key(BrowserNode * p); virtual QString drag_key() const; virtual QString drag_postfix() const; virtual void DragMoveEvent(QDragMoveEvent * e); virtual void DropEvent(QDropEvent * e); virtual void DragMoveInsideEvent(QDragMoveEvent * e); virtual void DropAfterEvent(QDropEvent * e, BrowserNode * after); }; #endif