TAMSVIZ
Visualization and annotation tool for ROS
guicommon.cpp
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #include "guicommon.h"
5 
6 #include <ros/package.h>
7 #include <ros/ros.h>
8 
9 static int g_icon_size = 128;
10 static int g_icon_alpha = 180;
11 
12 void startOnMainThreadAsync(const std::function<void()> &fun) {
13  QObject o;
14  QObject::connect(&o, &QObject::destroyed, QCoreApplication::instance(),
15  [fun](QObject *o) { fun(); });
16 }
17 
18 void startOnObjectThreadAsync(QObject *object,
19  const std::function<void()> &fun) {
20  QObject o;
21  QObject::connect(&o, &QObject::destroyed, object,
22  [fun](QObject *o) { fun(); });
23 }
24 
25 QIcon _createTextIcon(const QString &str) {
26  int w = g_icon_size;
27  int h = g_icon_size;
28  QPixmap pixmap(w, h);
29  pixmap.fill(QColor(255, 255, 255, 0));
30  QFont font;
31  font.setPixelSize(h * 0.8);
32  {
33  QPainter p(&pixmap);
34  p.setFont(font);
35  p.setPen(QColor(0, 0, 0, g_icon_alpha));
36  p.drawText(QRect(0, 0, w, h), str,
37  QTextOption(Qt::AlignHCenter | Qt::AlignVCenter));
38  }
39  int m = 2;
40  pixmap = pixmap.copy(QGraphicsPixmapItem(pixmap)
41  .opaqueArea()
42  .boundingRect()
43  .toRect()
44  .marginsAdded(QMargins(m, m, m, m)));
45  return QIcon(pixmap);
46 }
47 
48 struct IconLoader {
49  QFont font;
50  QMap<QString, QChar> glyph_map;
51  IconLoader(const std::string &font_path, const std::string &map_path) {
52  font = [&]() {
53  std::string path =
54 
55  font_path;
56  int id = QFontDatabase::addApplicationFont(path.c_str());
57  if (id < 0) {
58  LOG_ERROR("failed to load font " << path);
59  return QFont();
60  }
61  QString family = QFontDatabase::applicationFontFamilies(id).at(0);
62  QFont font(family);
63  LOG_DEBUG("font loaded " << family.toStdString() << " " << id << " "
64  << path);
65  return font;
66  }();
67  glyph_map = [&]() {
68  QFile file(map_path.c_str());
69  file.open(QFile::ReadOnly);
70  QMap<QString, QChar> map;
71  for (auto &line : QString(file.readAll()).split("\n")) {
72  auto tokens = line.trimmed().split(" ");
73  if (tokens.size() == 2) {
74  map[tokens[0]] = QChar(tokens[1].toInt(nullptr, 16));
75  }
76  }
77  return map;
78  }();
79  }
80  QIcon load(const QString &str, double margin) {
81  int w = g_icon_size;
82  int h = g_icon_size;
83  QPixmap pixmap(w, h);
84  pixmap.fill(QColor(255, 255, 255, 0));
85 
86  {
87  LOG_DEBUG("icon glyph " << str.toStdString() << " "
88  << glyph_map[str].unicode());
89  if (margin >= 0.0) {
90  font.setPixelSize(h * 0.5);
91  } else {
92  font.setPixelSize(h);
93  }
94  {
95  QPainter p(&pixmap);
96  p.setFont(font);
97  p.setPen(QColor(0, 0, 0, g_icon_alpha));
98  p.drawText(QRect(0, 0, w, h), Qt::AlignHCenter | Qt::AlignVCenter,
99  glyph_map[str]);
100  }
101  if (margin >= 0.0) {
102  auto rect =
103  QGraphicsPixmapItem(pixmap).opaqueArea().boundingRect().toRect();
104  int margins =
105  std::round(std::sqrt(rect.width() * rect.height()) * margin);
106  pixmap = pixmap.copy(
107  rect.marginsAdded(QMargins(margins, margins, margins, margins)));
108  } else {
109  auto rect = pixmap.rect();
110  int margins = std::round(std::sqrt(rect.width() * rect.height()) *
111  std::abs(margin));
112  pixmap = pixmap.copy(
113  rect.marginsRemoved(QMargins(margins, margins, margins, margins)));
114  }
115  }
116  return QIcon(pixmap);
117  }
118 };
119 
120 QIcon _createMaterialIcon(const QString &str, double padding) {
121  static IconLoader loader(
122  ros::package::getPath(ROS_PACKAGE_NAME) +
123  "/3rdparty/material-design-icons/MaterialIcons-Regular.ttf",
124  ros::package::getPath(ROS_PACKAGE_NAME) +
125  "/3rdparty/material-design-icons/codepoints.txt");
126  return loader.load(str, padding);
127 }
128 
129 QIcon _create_FA_R_Icon(const QString &str, double padding) {
130  static IconLoader loader(ros::package::getPath(ROS_PACKAGE_NAME) +
131  "/3rdparty/fontawesome/fa-regular-400.ttf",
132  ros::package::getPath(ROS_PACKAGE_NAME) +
133  "/3rdparty/fontawesome/codepoints.txt");
134  return loader.load(str, padding);
135 }
136 
137 QIcon _create_FA_S_Icon(const QString &str, double padding) {
138  static IconLoader loader(ros::package::getPath(ROS_PACKAGE_NAME) +
139  "/3rdparty/fontawesome/fa-solid-900.ttf",
140  ros::package::getPath(ROS_PACKAGE_NAME) +
141  "/3rdparty/fontawesome/codepoints.txt");
142  return loader.load(str, padding);
143 }
144 
145 void FlatButton::init() {
146  setFlat(true);
147  setFocusPolicy(Qt::TabFocus);
148  setAutoDefault(false);
149 }
150 
151 FlatButton::~FlatButton() {}
152 
153 void FlatButton::paintEvent(QPaintEvent *event) {
154  QStylePainter p(this);
155  QStyleOptionButton option;
156  initStyleOption(&option);
157  p.drawControl(QStyle::CE_PushButton, option);
158 }
159 
160 QSize FlatButton::minimumSizeHint() const {
161  return QAbstractButton::minimumSizeHint();
162 }
163 
164 QSize FlatButton::sizeHint() const {
165  int width = QFontMetrics(font()).width(text()) +
166  style()->pixelMetric(QStyle::PM_ButtonMargin) * 2;
167  if (!icon().isNull() || menu() != nullptr) {
168  width += style()->pixelMetric(QStyle::PM_ButtonMargin);
169  width += style()->pixelMetric(QStyle::PM_ButtonIconSize);
170  }
171  return QSize(width, QPushButton::sizeHint().height());
172 }