summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/CurveEditor.H20
-rw-r--r--src/CurveEditor.cxx19
-rw-r--r--src/Makefile.am1
3 files changed, 40 insertions, 0 deletions
diff --git a/src/CurveEditor.H b/src/CurveEditor.H
new file mode 100644
index 0000000..4e58e6e
--- /dev/null
+++ b/src/CurveEditor.H
@@ -0,0 +1,20 @@
+//
+// Copyright 2008 Johannes Hofmann <Johannes.Hofmann@gmx.de>
+//
+// This software may be used and distributed according to the terms
+// of the GNU General Public License, incorporated herein by reference.
+
+#ifndef CurveEditor_H
+#define CurveEditor_H
+
+#include <FL/Fl_Widget.H>
+
+class CurveEditor : public Fl_Widget {
+ private:
+
+ public:
+ CurveEditor(int _x, int _y, int _w, int _h);
+
+};
+
+#endif
diff --git a/src/CurveEditor.cxx b/src/CurveEditor.cxx
new file mode 100644
index 0000000..edc3a46
--- /dev/null
+++ b/src/CurveEditor.cxx
@@ -0,0 +1,19 @@
+//
+// Copyright 2008 Johannes Hofmann <Johannes.Hofmann@gmx.de>
+//
+// This software may be used and distributed according to the terms
+// of the GNU General Public License, incorporated herein by reference.
+
+#include <stdio.h>
+#include <string.h>
+
+#include <FL/Fl.H>
+
+#include "CurveEditor.H"
+
+
+CurveEditor::CurveEditor(int my_x, int my_y, int my_w, int my_h) :
+ Fl_Widget(my_x, my_y, my_w, my_h) {
+
+}
+
diff --git a/src/Makefile.am b/src/Makefile.am
index 12380e5..1715549 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -8,4 +8,5 @@ noinst_HEADERS = \
pnm.h
flcurve_SOURCES = \
+ CurveEditor.cxx \
flcurve.cxx