X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fviewitempaintparams.cpp;h=cf0e5b3c8d5dbabe5591abe66c6921c5f861dee3;hp=83dda4e59e0a02bee325662655c08aa007a1a7bf;hb=39ab01e794a0c13cfc012e90dd17eaebc234fb38;hpb=c009650038207adcb66938170cbeb36bdf9ed63f diff --git a/pv/view/viewitempaintparams.cpp b/pv/view/viewitempaintparams.cpp index 83dda4e5..cf0e5b3c 100644 --- a/pv/view/viewitempaintparams.cpp +++ b/pv/view/viewitempaintparams.cpp @@ -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 . */ #include @@ -26,13 +25,15 @@ #include "viewitempaintparams.hpp" namespace pv { -namespace view { +namespace views { +namespace TraceView { ViewItemPaintParams::ViewItemPaintParams( - const QRect &rect, double scale, double offset) : + const QRect &rect, double scale, const pv::util::Timestamp& offset) : rect_(rect), scale_(scale), - offset_(offset) { + offset_(offset) +{ assert(scale > 0.0); } @@ -41,9 +42,11 @@ QFont ViewItemPaintParams::font() return QApplication::font(); } -int ViewItemPaintParams::text_height() { +int ViewItemPaintParams::text_height() +{ return QFontMetrics(font()).height(); } -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv