From de3d0823fb3cefc710f6b0f3bcc35b2fc22112f8 Mon Sep 17 00:00:00 2001 From: xypwn Date: Fri, 3 Apr 2020 19:37:54 +0200 Subject: [PATCH] Add saveable labels for parts and connectors --- Label.cpp | 6 ++++++ Label.h | 11 +++++++++++ eAlignMode.h | 4 ++++ 3 files changed, 21 insertions(+) create mode 100644 Label.cpp create mode 100644 Label.h create mode 100644 eAlignMode.h diff --git a/Label.cpp b/Label.cpp new file mode 100644 index 0000000..90daa2e --- /dev/null +++ b/Label.cpp @@ -0,0 +1,6 @@ +#include "Label.h" + +Label::Label() +{ + +} diff --git a/Label.h b/Label.h new file mode 100644 index 0000000..9666a62 --- /dev/null +++ b/Label.h @@ -0,0 +1,11 @@ +#ifndef LABEL_H +#define LABEL_H + + +class Label : public QGraphicsTextItem +{ +public: + Label(); +}; + +#endif // LABEL_H diff --git a/eAlignMode.h b/eAlignMode.h new file mode 100644 index 0000000..fa37175 --- /dev/null +++ b/eAlignMode.h @@ -0,0 +1,4 @@ +#ifndef EALIGNMODE_H +#define EALIGNMODE_H + +#endif // EALIGNMODE_H