summaryrefslogtreecommitdiff
path: root/src/libpcp_qed/src/qed_label.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libpcp_qed/src/qed_label.h')
-rw-r--r--src/libpcp_qed/src/qed_label.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/libpcp_qed/src/qed_label.h b/src/libpcp_qed/src/qed_label.h
new file mode 100644
index 0000000..b26b5aa
--- /dev/null
+++ b/src/libpcp_qed/src/qed_label.h
@@ -0,0 +1,38 @@
+/*
+ * 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_LABEL_H
+#define QED_LABEL_H
+
+#include <QtGui>
+#include "qed_gadget.h"
+
+class QedLabel : public QedGadget
+{
+ Q_OBJECT
+
+public:
+ QedLabel(QWidget *parent);
+ QedLabel(QWidget *parent, int x, int y, const char *t, const char *font);
+
+ void setOrientation(Qt::Orientation o) { my.oriented = o; }
+
+private:
+ struct {
+ QString text;
+ QString font;
+ Qt::Orientation oriented;
+ } my;
+};
+
+#endif // QED_LABEL_H