]> sigrok.org Git - pulseview.git/blobdiff - pv/popups/channels.hpp
Build fixes for Qt5 Windows/mingw/MXE support.
[pulseview.git] / pv / popups / channels.hpp
index 61dc9e156f2f95c5b72a6725796379b3b4d5e3e1..6fe9159d3f854f862b989645fb6b410001a848e8 100644 (file)
  * 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
+ * along with this program; if not, see <http://www.gnu.org/licenses/>.
  */
 
-#ifndef PULSEVIEW_PV_POPUPS_CHANNELS_H
-#define PULSEVIEW_PV_POPUPS_CHANNELS_H
+#ifndef PULSEVIEW_PV_POPUPS_CHANNELS_HPP
+#define PULSEVIEW_PV_POPUPS_CHANNELS_HPP
 
 #include <map>
 #include <memory>
@@ -44,7 +43,11 @@ namespace pv {
 class Session;
 
 namespace binding {
-class DeviceOptions;
+class Device;
+}
+
+namespace data {
+class SignalBase;
 }
 
 namespace view {
@@ -58,19 +61,19 @@ class Channels : public pv::widgets::Popup
        Q_OBJECT
 
 public:
-       Channels(Session &session_, QWidget *parent);
+       Channels(Session &session, QWidget *parent);
 
 private:
        void set_all_channels(bool set);
 
        void populate_group(std::shared_ptr<sigrok::ChannelGroup> group,
-               const std::vector< std::shared_ptr<pv::view::Signal> > sigs);
+               const std::vector< std::shared_ptr<pv::data::SignalBase> > sigs);
 
        QGridLayout* create_channel_group_grid(
-               const std::vector< std::shared_ptr<pv::view::Signal> > sigs);
+               const std::vector< std::shared_ptr<pv::data::SignalBase> > sigs);
 
 private:
-       void showEvent(QShowEvent *e);
+       void showEvent(QShowEvent *event);
 
 private Q_SLOTS:
        void on_channel_checked(QWidget *widget);
@@ -85,9 +88,9 @@ private:
 
        bool updating_channels_;
 
-       std::vector< std::shared_ptr<pv::binding::DeviceOptions> >
+       std::vector< std::shared_ptr<pv::binding::Device> >
                 group_bindings_;
-       std::map< QCheckBox*, std::shared_ptr<pv::view::Signal> >
+       std::map< QCheckBox*, std::shared_ptr<pv::data::SignalBase> >
                check_box_signal_map_;
 
        QHBoxLayout buttons_bar_;
@@ -100,4 +103,4 @@ private:
 } // popups
 } // pv
 
-#endif // PULSEVIEW_PV_POPUPS_CHANNELS_H
+#endif // PULSEVIEW_PV_POPUPS_CHANNELS_HPP