23#include <winpr/cast.h>
25#include "../sdl_utils.hpp"
26#include "sdl_widget_list.hpp"
27#include "sdl_input_widget_pair_list.hpp"
29static const Uint32 vpadding = 5;
31SdlInputWidgetPairList::SdlInputWidgetPairList(
const std::string& title,
32 const std::vector<std::string>& labels,
33 const std::vector<std::string>& initial,
34 const std::vector<Uint32>& flags, ssize_t selected)
36 assert(labels.size() == initial.size());
37 assert(labels.size() == flags.size());
38 const std::vector<int> buttonids = { INPUT_BUTTON_ACCEPT, INPUT_BUTTON_CANCEL };
39 const std::vector<std::string> buttonlabels = {
"accept",
"cancel" };
41 const size_t widget_width = 300;
42 const size_t widget_heigth = 50;
44 const size_t total_width = widget_width + widget_width;
45 const size_t input_height = labels.size() * (widget_heigth + vpadding) + vpadding;
46 const size_t total_height = input_height + widget_heigth;
47 assert(total_width <= INT32_MAX);
48 assert(total_height <= INT32_MAX);
50 if (reset(title, total_width, total_height))
52 for (
size_t x = 0; x < labels.size(); x++)
55 std::make_shared<SdlInputWidgetPair>(_renderer, labels.at(x), initial.at(x),
56 flags.at(x), x, widget_width, widget_heigth);
57 m_list.emplace_back(widget);
60 std::ignore = _buttons.populate(
61 _renderer, buttonlabels, buttonids, total_width,
static_cast<Sint32
>(input_height),
62 static_cast<Sint32
>(widget_width),
static_cast<Sint32
>(widget_heigth));
63 _buttons.set_highlight(0);
64 m_currentActiveTextInput = selected;
68ssize_t SdlInputWidgetPairList::next(ssize_t current)
71 auto val =
static_cast<size_t>(current);
75 if (iteration >= m_list.size())
89 }
while (!valid(
static_cast<ssize_t
>(val)));
90 return static_cast<ssize_t
>(val);
93bool SdlInputWidgetPairList::valid(ssize_t current)
const
97 auto s =
static_cast<size_t>(current);
98 if (s >= m_list.size())
100 return !m_list.at(s)->readonly();
103std::shared_ptr<SdlInputWidgetPair> SdlInputWidgetPairList::get(ssize_t index)
107 auto s =
static_cast<size_t>(index);
108 if (s >= m_list.size())
113SdlInputWidgetPairList::~SdlInputWidgetPairList()
119bool SdlInputWidgetPairList::updateInternal()
121 for (
auto& btn : m_list)
132ssize_t SdlInputWidgetPairList::get_index(
const SDL_MouseButtonEvent& button)
134 const auto x = button.x;
135 const auto y = button.y;
136 for (
size_t i = 0; i < m_list.size(); i++)
138 auto& cur = m_list.at(i);
139 auto r = cur->input_rect();
141 if ((x >= r.x) && (x <= r.x + r.w) && (y >= r.y) && (y <= r.y + r.h))
142 return WINPR_ASSERTING_INT_CAST(ssize_t, i);
147int SdlInputWidgetPairList::run(std::vector<std::string>& result)
150 ssize_t LastActiveTextInput = -1;
151 m_currentActiveTextInput = next(m_currentActiveTextInput);
153 if (!_window || !_renderer)
156 if (!SDL_StartTextInput(_window.get()))
167 SDL_Event
event = {};
168 if (!SDL_WaitEventTimeout(&event, 30))
174 case SDL_EVENT_KEY_UP:
176 switch (event.key.key)
180 auto cur = get(m_currentActiveTextInput);
183 if ((event.key.mod & SDL_KMOD_CTRL) != 0)
185 if (!cur->set_str(
""))
190 if (!cur->remove_str(1))
197 m_currentActiveTextInput = next(m_currentActiveTextInput);
203 res = INPUT_BUTTON_ACCEPT;
207 res = INPUT_BUTTON_CANCEL;
210 if ((event.key.mod & SDL_KMOD_CTRL) != 0)
212 auto cur = get(m_currentActiveTextInput);
215 auto text = SDL_GetClipboardText();
216 if (!cur->set_str(text))
226 case SDL_EVENT_TEXT_INPUT:
228 auto cur = get(m_currentActiveTextInput);
231 if (!cur->append_str(event.text.text))
236 case SDL_EVENT_MOUSE_MOTION:
238 auto TextInputIndex = get_index(event.button);
239 for (
auto& cur : m_list)
241 cur->set_mouseover(
false);
243 if (TextInputIndex >= 0)
245 auto& cur = m_list.at(
static_cast<size_t>(TextInputIndex));
246 cur->set_mouseover(
true);
249 _buttons.set_mouseover(event.button.x, event.button.y);
252 case SDL_EVENT_MOUSE_BUTTON_DOWN:
254 auto val = get_index(event.button);
256 m_currentActiveTextInput = val;
258 auto button = _buttons.get_selected(event.button);
262 if (button->id() == INPUT_BUTTON_CANCEL)
263 res = INPUT_BUTTON_CANCEL;
265 res = INPUT_BUTTON_ACCEPT;
269 case SDL_EVENT_WINDOW_OCCLUDED:
270 case SDL_EVENT_WINDOW_MINIMIZED:
271 case SDL_EVENT_WINDOW_CLOSE_REQUESTED:
272 case SDL_EVENT_TERMINATING:
273 case SDL_EVENT_WINDOW_DESTROYED:
275 res = INPUT_BUTTON_CANCEL;
281 }
while (running && SDL_PollEvent(&event));
283 if (LastActiveTextInput != m_currentActiveTextInput)
285 LastActiveTextInput = m_currentActiveTextInput;
288 for (
auto& cur : m_list)
290 if (!cur->set_highlight(
false))
293 auto cur = get(m_currentActiveTextInput);
296 if (!cur->set_highlight(
true))
300 auto rc = SDL_RenderPresent(_renderer.get());
303 SDL_LogWarn(SDL_LOG_CATEGORY_APPLICATION,
"[%s] SDL_RenderPresent failed with %s",
304 __func__, SDL_GetError());
308 for (
auto& cur : m_list)
309 result.push_back(cur->value());
317 SDL_FlushEvents(SDL_EVENT_FIRST, SDL_EVENT_USER);
319 if (!SDL_StopTextInput(_window.get()))
325void SdlInputWidgetPairList::parent(SDL_Window* parent)
329 SDL_SetWindowParent(_window.get(), parent);
330 SDL_SetWindowModal(_window.get(),
true);