// ************************************************************************* // // 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_COMPONENTVIEW_H #define BROWSER_COMPONENTVIEW_H #include class QPixmap; class SimpleData; #include "BrowserNode.h" #include "Labeled.h" #include "Settings.h" class BrowserComponentView : public BrowserNode, public Labeled { friend class StereotypesDialog; protected: static IdDict all; static QStringList its_default_stereotypes; SimpleData * def; ComponentDiagramSettings componentdiagram_settings; //ComponentSettings component_settings; UmlColor component_color; UmlColor note_color; UmlColor fragment_color; UmlColor package_color; BrowserComponentView(int id); void make(); void exec_menu_choice(int rank); public: BrowserComponentView(QString s, BrowserNode * p, int id = 0); BrowserComponentView(const BrowserComponentView * model, BrowserNode * p); virtual ~BrowserComponentView(); virtual const QPixmap* pixmap (int) const; virtual BrowserNode * duplicate(BrowserNode * p, QString name = QString::null); virtual QString full_name(bool rev = FALSE, bool itself = TRUE) 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 bool may_contains_them(const QList &, bool & duplicable) const; virtual BasicData * get_data() const; virtual void get_componentdiagramsettings(ComponentDiagramSettings &) const; virtual void get_componentdrawingsettings(bool depl, ComponentDrawingSettings & r) const; virtual bool tool_cmd(ToolCom * com, const char * args); virtual UmlColor get_color(UmlCode) const; virtual bool get_shadow(UmlCode) const; virtual bool get_draw_all_relations(UmlCode) const; virtual bool get_auto_label_position(UmlCode who) const; virtual void save(QTextStream &, bool ref, QString & warning); virtual void DragMoveEvent(QDragMoveEvent * e); virtual void DropEvent(QDropEvent * e); virtual void DragMoveInsideEvent(QDragMoveEvent * e); virtual void DropAfterEvent(QDropEvent * e, BrowserNode * after); static BrowserComponentView * add_component_view(BrowserNode * future_parent); static const QStringList & default_stereotypes(); static void read_stereotypes(char * &, char * & k); static void save_stereotypes(QTextStream &); static BrowserComponentView * read(char * &, char *, BrowserNode *, bool); static BrowserComponentView * read_ref(char * &, char *); static BrowserNode * get_it(const char * k, int id); static BrowserNodeList & instances(BrowserNodeList &); static void clear(bool old); static void update_idmax_for_root(); virtual void renumber(int phase); }; #endif