X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fpopups%2Fchannels.hpp;h=54d24340d7d85229db92576df8efc17bab24a7fc;hp=6fe9159d3f854f862b989645fb6b410001a848e8;hb=3782d8609d2f4bd66855dc4f72c0f74d9bc11c23;hpb=efdec55aec1a137460fa362a381ed1904182bfed diff --git a/pv/popups/channels.hpp b/pv/popups/channels.hpp index 6fe9159d..54d24340 100644 --- a/pv/popups/channels.hpp +++ b/pv/popups/channels.hpp @@ -20,19 +20,24 @@ #ifndef PULSEVIEW_PV_POPUPS_CHANNELS_HPP #define PULSEVIEW_PV_POPUPS_CHANNELS_HPP +#include #include #include #include +#include #include -#include +#include +#include #include #include #include -class QCheckBox; -class QGridLayout; +using std::function; +using std::map; +using std::shared_ptr; +using std::vector; namespace sigrok { class ChannelGroup; @@ -66,13 +71,17 @@ public: private: void set_all_channels(bool set); - void populate_group(std::shared_ptr group, - const std::vector< std::shared_ptr > sigs); + void enable_channels_conditionally( + function)> cond_func); + void disable_channels_conditionally( + function)> cond_func); + + void populate_group(shared_ptr group, + const vector< shared_ptr > sigs); QGridLayout* create_channel_group_grid( - const std::vector< std::shared_ptr > sigs); + const vector< shared_ptr > sigs); -private: void showEvent(QShowEvent *event); private Q_SLOTS: @@ -80,6 +89,14 @@ private Q_SLOTS: void enable_all_channels(); void disable_all_channels(); + void enable_all_logic_channels(); + void disable_all_logic_channels(); + void enable_all_analog_channels(); + void disable_all_analog_channels(); + void enable_all_named_channels(); + void disable_all_unnamed_channels(); + void enable_all_changing_channels(); + void disable_all_non_changing_channels(); private: pv::Session &session_; @@ -88,19 +105,22 @@ private: bool updating_channels_; - std::vector< std::shared_ptr > - group_bindings_; - std::map< QCheckBox*, std::shared_ptr > + vector< shared_ptr > group_bindings_; + map< QCheckBox*, shared_ptr > check_box_signal_map_; + map< shared_ptr, QLabel*> group_label_map_; - QHBoxLayout buttons_bar_; - QPushButton enable_all_channels_; - QPushButton disable_all_channels_; + QGridLayout filter_buttons_bar_; + QPushButton enable_all_channels_, disable_all_channels_; + QPushButton enable_all_logic_channels_, disable_all_logic_channels_; + QPushButton enable_all_analog_channels_, disable_all_analog_channels_; + QPushButton enable_all_named_channels_, disable_all_unnamed_channels_; + QPushButton enable_all_changing_channels_, disable_all_non_changing_channels_; QSignalMapper check_box_mapper_; }; -} // popups -} // pv +} // namespace popups +} // namespace pv #endif // PULSEVIEW_PV_POPUPS_CHANNELS_HPP