summaryrefslogtreecommitdiff
path: root/src/gui/dialogs/gd_devInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/dialogs/gd_devInfo.h')
-rw-r--r--src/gui/dialogs/gd_devInfo.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/gui/dialogs/gd_devInfo.h b/src/gui/dialogs/gd_devInfo.h
new file mode 100644
index 0000000..c5a06ca
--- /dev/null
+++ b/src/gui/dialogs/gd_devInfo.h
@@ -0,0 +1,47 @@
+/* ---------------------------------------------------------------------
+ *
+ * Giada - Your Hardcore Loopmachine
+ *
+ * gd_devInfo
+ *
+ * ---------------------------------------------------------------------
+ *
+ * Copyright (C) 2010-2015 Giovanni A. Zuliani | Monocasual
+ *
+ * This file is part of Giada - Your Hardcore Loopmachine.
+ *
+ * Giada - Your Hardcore Loopmachine 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 3 of the License, or (at your option) any later version.
+ *
+ * Giada - Your Hardcore Loopmachine 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 Giada - Your Hardcore Loopmachine. If not, see
+ * <http://www.gnu.org/licenses/>.
+ *
+ * ------------------------------------------------------------------ */
+
+
+#ifndef GD_DEV_INFO_H
+#define GD_DEV_INFO_H
+
+#include <FL/Fl.H>
+#include <FL/Fl_Window.H>
+
+
+class gdDevInfo : public Fl_Window {
+private:
+ class gBox *text;
+ class gClick *close;
+
+public:
+ gdDevInfo(unsigned dev);
+ ~gdDevInfo();
+};
+
+#endif