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

Method CreateList

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

Source from the content-addressed store, hash-verified

105}
106
107std::unique_ptr<Window> Window::CreateList(int pos_x, int pos_y, int size_x, int size_y,
108 int id) {
109 std::unique_ptr<Window> child(new Window(this, WC_LISTVIEW, L""));
110
111 child->Create(
112 WS_CHILD | WS_VISIBLE | WS_BORDER | LVS_REPORT | LVS_EDITLABELS | WS_TABSTOP, pos_x,
113 pos_y, size_x, size_y, id);
114
115 return child;
116}
117
118std::unique_ptr<Window> Window::CreateGroupBox(int pos_x, int pos_y, int size_x,
119 int size_y, const wchar_t* title, int id) {

Callers

nothing calls this directly

Calls 1

CreateMethod · 0.45

Tested by

no test coverage detected