summaryrefslogtreecommitdiff
path: root/src/libpcp_qed/src/qed_gadget.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libpcp_qed/src/qed_gadget.h')
-rw-r--r--src/libpcp_qed/src/qed_gadget.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/libpcp_qed/src/qed_gadget.h b/src/libpcp_qed/src/qed_gadget.h
new file mode 100644
index 0000000..4b3e66b
--- /dev/null
+++ b/src/libpcp_qed/src/qed_gadget.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright (c) 2013-2014, Red Hat.
+ *
+ * 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.
+ */
+#ifndef QED_GADGET_H
+#define QED_GADGET_H
+
+#include <QtGui>
+
+class QedGadget : public QWidget
+{
+ Q_OBJECT
+
+public:
+ QedGadget(QWidget *parent);
+ void dump(FILE *f);
+
+private:
+ struct {
+ int depth; // z-axis setting for rendering
+ } my;
+};
+
+#endif // QED_GADGET_H