MCPcopy Create free account
hub / github.com/apache/arrow / CreateComboBox

Method CreateComboBox

cpp/src/arrow/flight/sql/odbc/odbc_impl/ui/window.cc:169–177  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167}
168
169std::unique_ptr<Window> Window::CreateComboBox(int pos_x, int pos_y, int size_x,
170 int size_y, const wchar_t* title, int id) {
171 std::unique_ptr<Window> child(new Window(this, L"Combobox", title));
172
173 child->Create(WS_CHILD | WS_VISIBLE | CBS_DROPDOWNLIST | WS_TABSTOP, pos_x, pos_y,
174 size_x, size_y, id);
175
176 return child;
177}
178
179void Window::Show() { ShowWindow(handle_, SW_SHOW); }
180

Callers

nothing calls this directly

Calls 1

CreateMethod · 0.45

Tested by

no test coverage detected