summaryrefslogtreecommitdiffstats
path: root/umbrello/umbrello/dialogs/assocpage.h
diff options
context:
space:
mode:
Diffstat (limited to 'umbrello/umbrello/dialogs/assocpage.h')
-rw-r--r--umbrello/umbrello/dialogs/assocpage.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/umbrello/umbrello/dialogs/assocpage.h b/umbrello/umbrello/dialogs/assocpage.h
new file mode 100644
index 00000000..60e1e339
--- /dev/null
+++ b/umbrello/umbrello/dialogs/assocpage.h
@@ -0,0 +1,76 @@
+/***************************************************************************
+ * *
+ * 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) 2002-2006 *
+ * Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
+ ***************************************************************************/
+
+
+#ifndef ASSOCPAGE_H
+#define ASSOCPAGE_H
+
+#include <qwidget.h>
+#include <qgroupbox.h>
+#include <qlistbox.h>
+#include <qptrlist.h>
+
+#include "../umlobject.h"
+#include "../umlview.h"
+#include "../associationwidgetlist.h"
+#include "../associationwidget.h"
+#include "../listpopupmenu.h"
+
+
+/**
+ * Displays a page on the tabbed dialog window of @ref ClassPropDlg.
+ * The page shows all the Associations that belong to a UMLClassifier.
+ *
+ *
+ * @see ClassPropDlg
+
+ * @see UMLClassifier
+ *
+ * @short The page shows all the Associations that belong to a UMLClassifier.
+ * @author Paul Hensgen <phensgen@techie.com>
+ * Bugs and comments to uml-devel@lists.sf.net or http://bugs.kde.org
+ */
+class AssocPage : public QWidget {
+ Q_OBJECT
+public:
+ /**
+ * Constructs an instance of AssocPage.
+ *
+ * @param parent The parent of the page
+ * @param v The view the UMLObject being represented.
+ * @param o The UMLObject being represented
+ */
+ AssocPage(QWidget *parent, UMLView * v, UMLObject * o);
+
+ /**
+ * Standard deconstructor.
+ */
+ ~AssocPage();
+private:
+ UMLObject * m_pObject;
+ UMLView * m_pView;
+ QListBox * m_pAssocLB;
+ QGroupBox * m_pAssocGB;
+ AssociationWidgetList m_List;
+ ListPopupMenu * m_pMenu;
+
+ /**
+ * Fills the list box with the objects associations.
+ */
+ void fillListBox();
+public slots:
+ void slotDoubleClick(QListBoxItem * i);
+ void slotRightButtonClicked(QListBoxItem */* item*/, const QPoint &/* p*/);
+ void slotRightButtonPressed(QListBoxItem * item, const QPoint & p);
+ void slotPopupMenuSel(int id);
+};
+
+#endif