X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fviewitempaintparams.cpp;h=5a0b815af67d20d8ed11f0f6cacacf06736ce5b3;hp=b6a179251e0605a2361439c5c7ae501f40591b40;hb=59ec98e2b704d918c236e82f41536ce833890fb0;hpb=36e7001de1e6620deeb93fa77c2ec6c4ebc4b3ea diff --git a/pv/view/viewitempaintparams.cpp b/pv/view/viewitempaintparams.cpp index b6a17925..5a0b815a 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,16 @@ #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), + bg_colour_state_(false) +{ assert(scale > 0.0); } @@ -41,10 +43,11 @@ QFont ViewItemPaintParams::font() return QApplication::font(); } -int ViewItemPaintParams::text_height() { - QFontMetrics m(font()); - return m.boundingRect(QRect(), 0, "Tg").height(); +int ViewItemPaintParams::text_height() +{ + return QFontMetrics(font()).height(); } -} // namespace view +} // namespace TraceView +} // namespace views } // namespace pv