X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fpopups%2Fchannels.hpp;h=e525b4baad13e83d30357d60a964dde096625016;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hp=5ed5d4768ff18ec4fb14a86be53ed3fe10f8d422;hpb=d9ea96280ab1128427143660ae375c30b19aa0cb;p=pulseview.git diff --git a/pv/popups/channels.hpp b/pv/popups/channels.hpp index 5ed5d47..e525b4b 100644 --- a/pv/popups/channels.hpp +++ b/pv/popups/channels.hpp @@ -14,8 +14,7 @@ * 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 @@ -32,6 +31,10 @@ #include +using std::map; +using std::shared_ptr; +using std::vector; + class QCheckBox; class QGridLayout; @@ -47,6 +50,10 @@ namespace binding { class Device; } +namespace data { +class SignalBase; +} + namespace view { class Signal; } @@ -63,11 +70,11 @@ public: 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 *event); @@ -85,9 +92,8 @@ 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_; QHBoxLayout buttons_bar_;