summaryrefslogtreecommitdiff
path: root/src/diagramitemfactory.cpp
diff options
context:
space:
mode:
authorLukáš Lalinský <lalinsky@gmail.com>2008-12-08 09:13:28 +0100
committerLukáš Lalinský <lalinsky@gmail.com>2008-12-08 09:13:28 +0100
commit8fe7f4f0f2d9a3864c21426df99569481882503b (patch)
tree101a4805d8786bf06849c037e7fc565f2ce0f29e /src/diagramitemfactory.cpp
parent05ef6e8c7847f06d27c2001d1845367c674cdedb (diff)
downloaddbmodel-8fe7f4f0f2d9a3864c21426df99569481882503b.tar.gz
dbmodel-8fe7f4f0f2d9a3864c21426df99569481882503b.tar.bz2
Rename DiagramItemRegistry to DiagramItemFactory
Diffstat (limited to 'src/diagramitemfactory.cpp')
-rw-r--r--src/diagramitemfactory.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/diagramitemfactory.cpp b/src/diagramitemfactory.cpp
new file mode 100644
index 0000000..093d980
--- /dev/null
+++ b/src/diagramitemfactory.cpp
@@ -0,0 +1,46 @@
+// Copyright (C) 2008 Lukas Lalinsky
+//
+// 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.,
+// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+#include <QDebug>
+#include "diagramitem.h"
+#include "diagramitemfactory.h"
+
+DiagramItemFactory *DiagramItemFactory::m_registry = 0;
+
+template <class T> DiagramItem *__createItem() { return new T(); }
+#define ADD_TYPE(x) m_map[x::staticTypeName()] = &(__createItem<x>);
+
+DiagramItem *
+DiagramItemFactory::createItem(const QString &typeName)
+{
+ if (!DiagramItemFactory::m_registry)
+ DiagramItemFactory::m_registry = new DiagramItemFactory();
+ if (!DiagramItemFactory::m_registry->m_map.contains(typeName))
+ return 0;
+ return DiagramItemFactory::m_registry->m_map[typeName]();
+}
+
+// =========================================================================
+// =========================================================================
+
+#include "items/database/databasetable.h"
+#include "items/database/databaserelationship.h"
+
+DiagramItemFactory::DiagramItemFactory()
+{
+ ADD_TYPE(DatabaseTable);
+ ADD_TYPE(DatabaseRelationship);
+}