17#include <application.h>
20namespace NAV::gui::widgets
33template<
typename Scalar,
typename RowKeyType,
typename ColKeyType,
int Rows,
int Cols>
35 float tableHeight = -1.0F,
36 ImGuiTableFlags tableFlags = ImGuiTableFlags_Borders
37 | ImGuiTableFlags_NoHostExtendX
38 | ImGuiTableFlags_SizingFixedFit
39 | ImGuiTableFlags_ScrollX
40 | ImGuiTableFlags_ScrollY)
42 ImGui::PushFont(Application::MonoFont());
43 float height = ImGui::GetTextLineHeightWithSpacing() *
static_cast<float>(matrix->
rows() + 1);
44 ImVec2 outer_size = ImVec2(0.0F, tableHeight > 0.0F ? std::min(tableHeight, height) : height);
45 if (ImGui::BeginTable(label,
static_cast<int>(matrix->
cols()) + 1, tableFlags, outer_size))
47 ImGui::TableSetupScrollFreeze(1, 1);
48 ImGui::TableSetupColumn(
"");
50 constexpr size_t colMinLength = 10UL;
51 std::vector<size_t> colKeysLength;
52 colKeysLength.reserve(
static_cast<size_t>(matrix->
cols()));
54 for (int64_t col = 0; col < matrix->
cols(); col++)
56 std::string colKeyStr = fmt::format(
"{}", matrix->
colKeys().at(
static_cast<size_t>(col)));
57 colKeysLength.push_back(colKeyStr.length());
58 ImGui::TableSetupColumn(colKeyStr.c_str());
60 ImGui::TableHeadersRow();
62 for (int64_t row = 0; row < matrix->
rows(); row++)
64 ImGui::TableNextColumn();
65 ImGui::TextUnformatted(fmt::format(
"{}", matrix->
rowKeys().at(
static_cast<size_t>(row))).c_str());
66 ImU32 cell_bg_color = ImGui::GetColorU32(ImGui::GetStyle().Colors[ImGuiCol_TableHeaderBg]);
67 ImGui::TableSetBgColor(ImGuiTableBgTarget_CellBg, cell_bg_color);
69 for (int64_t col = 0; col < matrix->
cols(); col++)
71 ImGui::TableNextColumn();
73 auto colLength = std::max(colKeysLength.at(
static_cast<size_t>(col)), colMinLength);
74 std::string text = fmt::format(
" {:> {}.{}g}", (*matrix)(
NAV::all,
NAV::all)(row, col), colLength, colLength - 2);
75 if (text.length() > colLength)
77 text = fmt::format(
" {:> {}.{}g}", (*matrix)(
NAV::all,
NAV::all)(row, col), colLength, colLength - 6);
79 ImGui::TextUnformatted(text.c_str());
80 if (ImGui::IsItemHovered())
99template<
typename Scalar,
typename RowKeyType,
int Rows>
101 float tableHeight = -1.0F,
102 ImGuiTableFlags tableFlags = ImGuiTableFlags_Borders
103 | ImGuiTableFlags_NoHostExtendX
104 | ImGuiTableFlags_SizingFixedFit
105 | ImGuiTableFlags_ScrollY)
107 ImGui::PushFont(Application::MonoFont());
108 float height = ImGui::GetTextLineHeightWithSpacing() *
static_cast<float>(matrix->
rows());
109 ImVec2 outer_size = ImVec2(0.0F, tableHeight > 0.0F ? std::min(tableHeight, height) : height);
110 if (ImGui::BeginTable(label, 2, tableFlags, outer_size))
112 ImGui::TableSetupScrollFreeze(1, 0);
114 constexpr size_t colLength = 10UL;
116 for (int64_t row = 0; row < matrix->
rows(); row++)
118 ImGui::TableNextColumn();
119 ImGui::TextUnformatted(fmt::format(
"{}", matrix->
rowKeys().at(
static_cast<size_t>(row))).c_str());
120 ImU32 cell_bg_color = ImGui::GetColorU32(ImGui::GetStyle().Colors[ImGuiCol_TableHeaderBg]);
121 ImGui::TableSetBgColor(ImGuiTableBgTarget_CellBg, cell_bg_color);
123 ImGui::TableNextColumn();
125 std::string text = fmt::format(
" {:> {}.{}g}", (*matrix)(
NAV::all)(row), colLength, colLength - 2);
126 if (text.length() > colLength)
128 text = fmt::format(
" {:> {}.{}g}", (*matrix)(
NAV::all)(row), colLength, colLength - 6);
130 ImGui::TextUnformatted(text.c_str());
131 if (ImGui::IsItemHovered())
133 ImGui::SetTooltip(
"%.8g", (*matrix)(
NAV::all)(row));
148template<
typename Scalar,
typename ColKeyType,
int Cols>
150 ImGuiTableFlags tableFlags = ImGuiTableFlags_Borders
151 | ImGuiTableFlags_NoHostExtendX
152 | ImGuiTableFlags_SizingFixedFit
153 | ImGuiTableFlags_ScrollX)
155 ImGui::PushFont(Application::MonoFont());
156 ImVec2 outer_size = ImVec2(0.0F, ImGui::GetTextLineHeightWithSpacing() * 2.0F);
157 if (ImGui::BeginTable(label,
static_cast<int>(matrix->
cols()) + 1, tableFlags, outer_size))
159 ImGui::TableSetupScrollFreeze(0, 1);
161 constexpr size_t colMinLength = 10UL;
162 std::vector<size_t> colKeysLength;
163 colKeysLength.reserve(
static_cast<size_t>(matrix->
cols()));
165 for (int64_t col = 0; col < matrix->
cols(); col++)
167 std::string colKeyStr = fmt::format(
"{}", matrix->
colKeys().at(
static_cast<size_t>(col)));
168 colKeysLength.push_back(colKeyStr.length());
169 ImGui::TableSetupColumn(colKeyStr.c_str());
171 ImGui::TableHeadersRow();
173 for (int64_t col = 0; col < matrix->
cols(); col++)
175 ImGui::TableNextColumn();
177 auto colLength = std::max(colKeysLength.at(
static_cast<size_t>(col)), colMinLength);
178 std::string text = fmt::format(
" {:> {}.{}g}", (*matrix)(
NAV::all)(col), colLength, colLength - 2);
179 if (text.length() > colLength)
181 text = fmt::format(
" {:> {}.{}g}", (*matrix)(
NAV::all)(col), colLength, colLength - 6);
183 ImGui::TextUnformatted(text.c_str());
184 if (ImGui::IsItemHovered())
186 ImGui::SetTooltip(
"%.8g", (*matrix)(
NAV::all)(col));
195#if defined(__GNUC__) || defined(__clang__)
196 #pragma GCC diagnostic push
197 #pragma GCC diagnostic ignored "-Wformat-nonliteral"
215template<
typename Scalar,
typename RowKeyType,
typename ColKeyType,
int Rows,
int Cols>
217 float tableHeight = -1.0F,
218 ImGuiTableFlags tableFlags = ImGuiTableFlags_Borders
219 | ImGuiTableFlags_NoHostExtendX
220 | ImGuiTableFlags_SizingFixedFit
221 | ImGuiTableFlags_ScrollX
222 | ImGuiTableFlags_ScrollY,
223 double step = 0.0,
double step_fast = 0.0,
224 const char* format =
"%.4g",
225 ImGuiInputTextFlags inputTextFlags = ImGuiInputTextFlags_None)
227 bool changed =
false;
228 ImGui::PushFont(Application::MonoFont());
229 const float TEXT_BASE_WIDTH = ImGui::CalcTextSize(
"A").x;
230 float height = ImGui::GetTextLineHeightWithSpacing()
231 + (ImGui::GetTextLineHeightWithSpacing() + 1.5F * ImGui::GetStyle().ItemSpacing.y)
232 *
static_cast<float>(matrix->
rows());
233 ImVec2 outer_size = ImVec2(0.0F, tableHeight > 0.0F ? std::min(tableHeight, height) : height);
234 if (ImGui::BeginTable(label,
static_cast<int>(matrix->
cols()) + 1, tableFlags, outer_size))
236 ImGui::TableSetupScrollFreeze(1, 1);
237 ImGui::TableSetupColumn(
"");
239 constexpr size_t colMinLength = 11UL;
240 std::vector<size_t> colKeysLength;
241 colKeysLength.reserve(
static_cast<size_t>(matrix->
cols()));
243 for (int64_t col = 0; col < matrix->
cols(); col++)
245 std::string colKeyStr = fmt::format(
"{}", matrix->
colKeys().at(
static_cast<size_t>(col)));
246 colKeysLength.push_back(colKeyStr.length());
247 ImGui::TableSetupColumn(colKeyStr.c_str());
249 ImGui::TableHeadersRow();
251 for (int64_t row = 0; row < matrix->
rows(); row++)
253 ImGui::TableNextColumn();
254 ImGui::TextUnformatted(fmt::format(
"{}", matrix->
rowKeys().at(
static_cast<size_t>(row))).c_str());
255 ImU32 cell_bg_color = ImGui::GetColorU32(ImGui::GetStyle().Colors[ImGuiCol_TableHeaderBg]);
256 ImGui::TableSetBgColor(ImGuiTableBgTarget_CellBg, cell_bg_color);
258 for (int64_t col = 0; col < matrix->
cols(); col++)
260 ImGui::TableNextColumn();
262 auto colLength = std::max(colKeysLength.at(
static_cast<size_t>(col)), colMinLength);
263 ImGui::SetNextItemWidth(TEXT_BASE_WIDTH *
static_cast<float>(colLength));
264 if (ImGui::InputDouble(fmt::format(
"##{} ({}, {})", label, row, col).c_str(), &(*matrix)(
NAV::all,
NAV::all)(row, col), step, step_fast, format, inputTextFlags))
268 if (ImGui::IsItemHovered())
294template<
typename Scalar,
typename RowKeyType,
int Rows>
296 float tableHeight = -1.0F,
297 ImGuiTableFlags tableFlags = ImGuiTableFlags_Borders
298 | ImGuiTableFlags_NoHostExtendX
299 | ImGuiTableFlags_SizingFixedFit
300 | ImGuiTableFlags_ScrollY,
301 double step = 0.0,
double step_fast = 0.0,
302 const char* format =
"%.4g",
303 ImGuiInputTextFlags inputTextFlags = ImGuiInputTextFlags_None)
305 bool changed =
false;
306 ImGui::PushFont(Application::MonoFont());
307 const float TEXT_BASE_WIDTH = ImGui::CalcTextSize(
"A").x;
308 float height = (ImGui::GetTextLineHeightWithSpacing() + 1.5F * ImGui::GetStyle().ItemSpacing.y) *
static_cast<float>(matrix->
rows());
309 ImVec2 outer_size = ImVec2(0.0F, tableHeight > 0.0F ? std::min(tableHeight, height) : height);
310 if (ImGui::BeginTable(label, 2, tableFlags, outer_size))
312 ImGui::TableSetupScrollFreeze(1, 0);
314 constexpr size_t colLength = 11UL;
316 for (int64_t row = 0; row < matrix->
rows(); row++)
318 ImGui::TableNextColumn();
319 ImGui::TextUnformatted(fmt::format(
"{}", matrix->
rowKeys().at(
static_cast<size_t>(row))).c_str());
320 ImU32 cell_bg_color = ImGui::GetColorU32(ImGui::GetStyle().Colors[ImGuiCol_TableHeaderBg]);
321 ImGui::TableSetBgColor(ImGuiTableBgTarget_CellBg, cell_bg_color);
323 ImGui::TableNextColumn();
325 ImGui::SetNextItemWidth(TEXT_BASE_WIDTH *
static_cast<float>(colLength));
326 if (ImGui::InputDouble(fmt::format(
"##{} ({})", label, row).c_str(), &(*matrix)(
NAV::all)(row), step, step_fast, format, inputTextFlags))
330 if (ImGui::IsItemHovered())
332 ImGui::SetTooltip(
"%.8g", (*matrix)(
NAV::all)(row));
354template<
typename Scalar,
typename ColKeyType,
int Cols>
356 ImGuiTableFlags tableFlags = ImGuiTableFlags_Borders
357 | ImGuiTableFlags_NoHostExtendX
358 | ImGuiTableFlags_SizingFixedFit
359 | ImGuiTableFlags_ScrollX,
360 double step = 0.0,
double step_fast = 0.0,
361 const char* format =
"%.4g",
362 ImGuiInputTextFlags inputTextFlags = ImGuiInputTextFlags_None)
364 bool changed =
false;
365 ImGui::PushFont(Application::MonoFont());
366 const float TEXT_BASE_WIDTH = ImGui::CalcTextSize(
"A").x;
367 ImVec2 outer_size = ImVec2(0.0F, ImGui::GetTextLineHeightWithSpacing()
368 + (ImGui::GetTextLineHeightWithSpacing() + 1.5F * ImGui::GetStyle().ItemSpacing.y));
369 if (ImGui::BeginTable(label,
static_cast<int>(matrix->
cols()) + 1, tableFlags, outer_size))
371 ImGui::TableSetupScrollFreeze(0, 1);
373 constexpr size_t colMinLength = 11UL;
374 std::vector<size_t> colKeysLength;
375 colKeysLength.reserve(
static_cast<size_t>(matrix->
cols()));
377 for (int64_t col = 0; col < matrix->
cols(); col++)
379 std::string colKeyStr = fmt::format(
"{}", matrix->
colKeys().at(
static_cast<size_t>(col)));
380 colKeysLength.push_back(colKeyStr.length());
381 ImGui::TableSetupColumn(colKeyStr.c_str());
383 ImGui::TableHeadersRow();
385 for (int64_t col = 0; col < matrix->
cols(); col++)
387 ImGui::TableNextColumn();
389 auto colLength = std::max(colKeysLength.at(
static_cast<size_t>(col)), colMinLength);
390 ImGui::SetNextItemWidth(TEXT_BASE_WIDTH *
static_cast<float>(colLength));
391 if (ImGui::InputDouble(fmt::format(
"##{} ({})", label, col).c_str(), &(*matrix)(
NAV::all)(col), step, step_fast, format, inputTextFlags))
395 if (ImGui::IsItemHovered())
397 ImGui::SetTooltip(
"%.8g", (*matrix)(
NAV::all)(col));
408#if defined(__GNUC__) || defined(__clang__)
409 #pragma GCC diagnostic pop
Static sized KeyedMatrix.
Definition KeyedMatrix.hpp:1910
Static sized KeyedRowVector.
Definition KeyedMatrix.hpp:1682
Static sized KeyedVector.
Definition KeyedMatrix.hpp:1457
const std::vector< ColKeyType > & colKeys() const
Returns the col keys.
Definition KeyedMatrix.hpp:221
decltype(auto) cols() const
Return the cols of the underlying Eigen matrix.
Definition KeyedMatrix.hpp:218
decltype(auto) rows() const
Return the rows of the underlying Eigen matrix.
Definition KeyedMatrix.hpp:74
const std::vector< RowKeyType > & rowKeys() const
Returns the row keys.
Definition KeyedMatrix.hpp:77
Matrix which can be accessed by keys.
static const internal::all_t all
Used to request all rows or columns in KeyedMatrices.
Definition KeyedMatrix.hpp:1446