X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fpopups%2Fchannels.hpp;h=344d21a824e7bb79e27bc28f0f44054e78d6b24c;hp=6ba86469f04ff64b44e22f8aa427736f7101d6e8;hb=7ceb2376de956f72e2055467efe0a16a68da4bd8;hpb=7a01bd3654ed046216308fa64edfd79be7cd525f diff --git a/pv/popups/channels.hpp b/pv/popups/channels.hpp index 6ba86469..344d21a8 100644 --- a/pv/popups/channels.hpp +++ b/pv/popups/channels.hpp @@ -14,26 +14,31 @@ * 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 . */ #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; @@ -47,6 +52,10 @@ namespace binding { class Device; } +namespace data { +class SignalBase; +} + namespace view { class Signal; } @@ -58,25 +67,31 @@ 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 enable_channels_conditionally( + function)> cond_func); - void populate_group(std::shared_ptr group, - const std::vector< std::shared_ptr > sigs); + 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 *e); + void showEvent(QShowEvent *event); private Q_SLOTS: void on_channel_checked(QWidget *widget); void enable_all_channels(); void disable_all_channels(); + void enable_all_logic_channels(); + void enable_all_analog_channels(); + void enable_all_named_channels(); + void enable_all_changing_channels(); private: pv::Session &session_; @@ -85,19 +100,20 @@ 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_; + QPushButton enable_all_channels_, disable_all_channels_; + QPushButton enable_all_logic_channels_, enable_all_analog_channels_; + QPushButton enable_all_named_channels_, enable_all_changing_channels_; QSignalMapper check_box_mapper_; }; -} // popups -} // pv +} // namespace popups +} // namespace pv #endif // PULSEVIEW_PV_POPUPS_CHANNELS_HPP