X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fpopups%2Fchannels.hpp;h=b23af57046d808252ac7e8b6594c470926bcd87c;hb=a66e286e0276186c41b7ce07cfcbd0c4da2ca1cb;hp=61dc9e156f2f95c5b72a6725796379b3b4d5e3e1;hpb=61703a0124c7ace84caf415f7d491a3ad6f42599;p=pulseview.git diff --git a/pv/popups/channels.hpp b/pv/popups/channels.hpp index 61dc9e15..b23af570 100644 --- a/pv/popups/channels.hpp +++ b/pv/popups/channels.hpp @@ -14,12 +14,11 @@ * 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_H -#define PULSEVIEW_PV_POPUPS_CHANNELS_H +#ifndef PULSEVIEW_PV_POPUPS_CHANNELS_HPP +#define PULSEVIEW_PV_POPUPS_CHANNELS_HPP #include #include @@ -32,6 +31,10 @@ #include +using std::map; +using std::shared_ptr; +using std::vector; + class QCheckBox; class QGridLayout; @@ -44,7 +47,11 @@ namespace pv { class Session; namespace binding { -class DeviceOptions; +class Device; +} + +namespace data { +class SignalBase; } namespace view { @@ -58,19 +65,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 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); @@ -85,10 +92,10 @@ 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_; @@ -97,7 +104,7 @@ private: QSignalMapper check_box_mapper_; }; -} // popups -} // pv +} // namespace popups +} // namespace pv -#endif // PULSEVIEW_PV_POPUPS_CHANNELS_H +#endif // PULSEVIEW_PV_POPUPS_CHANNELS_HPP