X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fwidgets%2Fpopuptoolbutton.cpp;h=75aa76a552777e2fe44aa056cd7f8711f401e9e5;hb=360ab9be5d6060d05cd7d40f5a50f7eafb787290;hp=c3e938e05b2a117f240fbc6a82a224a413ef4e1f;hpb=afc864a06f3486ec00588151ade19ee6375de049;p=pulseview.git diff --git a/pv/widgets/popuptoolbutton.cpp b/pv/widgets/popuptoolbutton.cpp index c3e938e..75aa76a 100644 --- a/pv/widgets/popuptoolbutton.cpp +++ b/pv/widgets/popuptoolbutton.cpp @@ -20,37 +20,38 @@ #include -#include "popuptoolbutton.h" +#include "popuptoolbutton.hpp" namespace pv { namespace widgets { PopupToolButton::PopupToolButton(QWidget *parent) : - QToolButton(parent) + QToolButton(parent), + popup_(NULL) { connect(this, SIGNAL(clicked(bool)), this, SLOT(on_clicked(bool))); } Popup* PopupToolButton::popup() const { - return _popup; + return popup_; } void PopupToolButton::set_popup(Popup *popup) { assert(popup); - _popup = popup; + popup_ = popup; } void PopupToolButton::on_clicked(bool) { - if(!_popup) + if(!popup_) return; const QRect r = rect(); - _popup->set_position(mapToGlobal(QPoint((r.left() + r.right()) / 2, + popup_->set_position(mapToGlobal(QPoint((r.left() + r.right()) / 2, ((r.top() + r.bottom() * 3) / 4))), Popup::Bottom); - _popup->show(); + popup_->show(); } } // widgets