]> sigrok.org Git - pulseview.git/commitdiff
Added Property
authorJoel Holdsworth <redacted>
Fri, 28 Dec 2012 10:09:41 +0000 (10:09 +0000)
committerJoel Holdsworth <redacted>
Fri, 28 Dec 2012 10:09:41 +0000 (10:09 +0000)
CMakeLists.txt
pv/prop/binding/binding.cpp [new file with mode: 0644]
pv/prop/binding/binding.h
pv/prop/property.cpp [new file with mode: 0644]
pv/prop/property.h [new file with mode: 0644]

index 189e778ae27edc819d04b08885b26b00b5088746..9aaf6f3c5d85937d7bb7e88aca32c90ba856842c 100644 (file)
@@ -91,6 +91,8 @@ set(pulseview_SOURCES
        pv/data/snapshot.cpp
        pv/dialogs/about.cpp
        pv/dialogs/hwcap.cpp
+       pv/prop/property.cpp
+       pv/prop/binding/binding.cpp
        pv/prop/binding/hwcap.cpp
        pv/view/analogsignal.cpp
        pv/view/cursor.cpp
diff --git a/pv/prop/binding/binding.cpp b/pv/prop/binding/binding.cpp
new file mode 100644 (file)
index 0000000..e75b955
--- /dev/null
@@ -0,0 +1,61 @@
+/*
+ * This file is part of the PulseView project.
+ *
+ * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ */
+
+#include <QFormLayout>
+#include <QWidget>
+
+#include <boost/foreach.hpp>
+
+#include "binding.h"
+
+#include <pv/prop/property.h>
+
+using namespace boost;
+
+namespace pv {
+namespace prop {
+namespace binding {
+
+Binding::Binding() :
+       _form(NULL)
+{
+}
+
+QWidget* Binding::get_form(QWidget *parent)
+{
+       if(_form)
+               return _form;
+
+       _form = new QWidget(parent);
+       QFormLayout *const layout = new QFormLayout(_form);
+       _form->setLayout(layout);
+
+       BOOST_FOREACH(shared_ptr<Property> p, _properties)
+       {
+               assert(p);
+               layout->addRow(p->name(), p->get_widget(_form));
+       }
+
+       return _form;
+}
+
+} // binding
+} // prop
+} // pv
index bddca8624588ff6bf4efe4af0737bc362d355d38..b6f12141c33fed9cc368bc840330a96945b58794 100644 (file)
 #ifndef PULSEVIEW_PV_PROP_BINDING_BINDING_H
 #define PULSEVIEW_PV_PROP_BINDING_BINDING_H
 
+#include <vector>
+#include <boost/shared_ptr.hpp>
+
+class QWidget;
+
 namespace pv {
 namespace prop {
+
+class Property;
+
 namespace binding {
 
 class Binding
 {
+public:
+       Binding();
+
+public:
+       QWidget* get_form(QWidget *parent);
+
+protected:
+       std::vector< boost::shared_ptr<Property> > _properties;
+
+       QWidget *_form;
 };
 
 } // binding
diff --git a/pv/prop/property.cpp b/pv/prop/property.cpp
new file mode 100644 (file)
index 0000000..0a14d24
--- /dev/null
@@ -0,0 +1,37 @@
+/*
+ * This file is part of the PulseView project.
+ *
+ * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ */
+
+#include "property.h"
+
+namespace pv {
+namespace prop {
+
+Property::Property(QString name) :
+       _name(name)
+{
+}
+
+const QString& Property::name() const
+{
+       return _name;
+}
+
+} // prop
+} // pv
diff --git a/pv/prop/property.h b/pv/prop/property.h
new file mode 100644 (file)
index 0000000..e6745a1
--- /dev/null
@@ -0,0 +1,49 @@
+/*
+ * This file is part of the PulseView project.
+ *
+ * Copyright (C) 2012 Joel Holdsworth <joel@airwebreathe.org.uk>
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+ */
+
+#ifndef PULSEVIEW_PV_PROP_PROPERTY_H
+#define PULSEVIEW_PV_PROP_PROPERTY_H
+
+#include <QString>
+#include <QWidget>
+
+class QWidget;
+
+namespace pv {
+namespace prop {
+
+class Property
+{
+protected:
+       Property(QString name);
+
+public:
+       const QString& name() const;
+
+       virtual QWidget* get_widget(QWidget *parent) = 0;
+
+private:
+       QString _name;
+};
+
+} // prop
+} // pv
+
+#endif // PULSEVIEW_PV_PROP_PROPERTY_H