| 1172 | } |
| 1173 | |
| 1174 | bool BrowserWindow::processDetailButton() |
| 1175 | { |
| 1176 | auto color = Const::DetailButtonColor; |
| 1177 | float h, s, v; |
| 1178 | ImGui::ColorConvertRGBtoHSV(color.Value.x, color.Value.y, color.Value.z, h, s, v); |
| 1179 | ImGui::PushStyleColor(ImGuiCol_Button, (ImVec4)ImColor::HSV(h, s, v * 0.3f)); |
| 1180 | ImGui::PushStyleColor(ImGuiCol_ButtonHovered, (ImVec4)ImColor::HSV(h, s, v * 0.4f)); |
| 1181 | auto detailClicked = AlienImGui::Button("..."); |
| 1182 | ImGui::PopStyleColor(2); |
| 1183 | return detailClicked; |
| 1184 | } |
| 1185 | |
| 1186 | void BrowserWindow::processRefreshingScreen(RealVector2D const& startPos) |
| 1187 | { |
nothing calls this directly
no outgoing calls
no test coverage detected