X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fruler.hpp;h=192de791fcb79ad86c9a37eb09b3f48128eeec89;hp=923cceb5fc3d37abb998d239ae8e490ab9e5d027;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=d9ea96280ab1128427143660ae375c30b19aa0cb diff --git a/pv/view/ruler.hpp b/pv/view/ruler.hpp index 923cceb..192de79 100644 --- a/pv/view/ruler.hpp +++ b/pv/view/ruler.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_VIEW_RULER_HPP -#define PULSEVIEW_PV_VIEW_RULER_HPP +#ifndef PULSEVIEW_PV_VIEWS_TRACEVIEW_RULER_HPP +#define PULSEVIEW_PV_VIEWS_TRACEVIEW_RULER_HPP #include #include @@ -29,6 +28,11 @@ #include "marginwidget.hpp" #include +using std::function; +using std::pair; +using std::shared_ptr; +using std::vector; + namespace RulerTest { struct tick_position_test_0; struct tick_position_test_1; @@ -36,7 +40,8 @@ struct tick_position_test_2; } namespace pv { -namespace view { +namespace views { +namespace TraceView { class TimeItem; class ViewItem; @@ -109,7 +114,7 @@ private: /** * Gets the time items. */ - std::vector< std::shared_ptr > items() override; + vector< shared_ptr > items() override; /** * Gets the first view item which has a label that contains @c pt . @@ -117,8 +122,7 @@ private: * @return the view item that has been found, or and empty * @c shared_ptr if no item was found. */ - std::shared_ptr get_mouse_over_item( - const QPoint &pt) override; + shared_ptr get_mouse_over_item(const QPoint &pt) override; void paintEvent(QPaintEvent *event) override; @@ -135,8 +139,8 @@ private: struct TickPositions { - std::vector> major; - std::vector minor; + vector> major; + vector minor; }; /** @@ -162,7 +166,7 @@ private: const pv::util::Timestamp& offset, const double scale, const int width, - std::function format_function); + function format_function); protected: void resizeEvent(QResizeEvent*) override; @@ -174,7 +178,8 @@ private Q_SLOTS: void invalidate_tick_position_cache(); }; -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv -#endif // PULSEVIEW_PV_VIEW_RULER_HPP +#endif // PULSEVIEW_PV_VIEWS_TRACEVIEW_RULER_HPP