summaryrefslogtreecommitdiff
path: root/src/line.h
diff options
context:
space:
mode:
authorLukáš Lalinský <lalinsky@gmail.com>2008-12-30 10:47:25 +0100
committerLukáš Lalinský <lalinsky@gmail.com>2008-12-30 10:47:25 +0100
commit0cf95269987931e0315fa902cc467eaf314a8a6d (patch)
tree1699c9f0a6e0e71e363743ae0f42a7c8db23cffb /src/line.h
parent54e094e752be4db874d06bf38bff0d16962c7151 (diff)
downloaddbmodel-0cf95269987931e0315fa902cc467eaf314a8a6d.tar.gz
dbmodel-0cf95269987931e0315fa902cc467eaf314a8a6d.tar.bz2
Rename DiagramConnection to Line
Diffstat (limited to 'src/line.h')
-rw-r--r--src/line.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/line.h b/src/line.h
new file mode 100644
index 0000000..ff71d82
--- /dev/null
+++ b/src/line.h
@@ -0,0 +1,48 @@
+// 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.
+
+#ifndef DIAGRAMCONNECTION_H
+#define DIAGRAMCONNECTION_H
+
+#include "diagramitem.h"
+class Connector;
+class DiagramObject;
+
+class Line : public DiagramItem
+{
+ Q_OBJECT
+
+public:
+ Line(DiagramItem *parent = 0);
+
+ enum LineLayout
+ {
+ StraightLineLayout,
+ OrthogonalLineLayout
+ };
+
+ Connector *connector(int index) const;
+
+ virtual void updatePositions();
+
+ virtual void loadFromXml(QDomElement element, DiagramDocument *document = 0);
+ void saveToXml(QDomDocument doc, QDomElement element);
+
+private:
+ Connector *m_connectors[2];
+};
+
+#endif