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
--- /dev/null
+/*
+ * 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
#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
--- /dev/null
+/*
+ * 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
--- /dev/null
+/*
+ * 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