mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-07-07 16:02:51 +02:00
Project structure refactoring
This commit is contained in:
20
src/GUI/tooltip.cpp
Normal file
20
src/GUI/tooltip.cpp
Normal file
@ -0,0 +1,20 @@
|
||||
#include "tooltip.h"
|
||||
|
||||
void ToolTip::insert(const QString &key, const QString &value)
|
||||
{
|
||||
QPair<QString, QString> entry(key, value);
|
||||
_list.append(entry);
|
||||
}
|
||||
|
||||
QString ToolTip::toString()
|
||||
{
|
||||
QString ret = "<table>";
|
||||
|
||||
for (int i = 0; i < _list.count(); i++)
|
||||
ret += "<tr><td align=\"right\"><b>" + _list.at(i).first
|
||||
+ ": </b></td><td>" + _list.at(i).second + "</td></tr>";
|
||||
|
||||
ret += "</table>";
|
||||
|
||||
return ret;
|
||||
}
|
Reference in New Issue
Block a user