1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-07-13 10:25:10 +02:00

Added slider info

This commit is contained in:
2015-10-17 01:33:02 +02:00
parent da81839529
commit c21ef0b587
20 changed files with 127 additions and 25 deletions

View File

@ -1,12 +1,12 @@
#include <QFont>
#include <QPainter>
#include "config.h"
#include "infoitem.h"
#define FONT_FAMILY "Arial"
#define FONT_SIZE 12
#define PADDING 10
InfoItem::InfoItem()
InfoItem::InfoItem(QGraphicsItem *parent) : QGraphicsItem(parent)
{
}
@ -73,4 +73,6 @@ void InfoItem::insert(const QString &key, const QString &value)
_list.append(kv);
else
_list[i] = kv;
prepareGeometryChange();
}