| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453 |
- #include "imguiWrapper.h"
- #include "WrapperConverter.h"
- #include "imguiWrappedHeader.h"
- IggContext iggCreateContext(IggFontAtlas sharedFontAtlas) {
- ImGuiContext *context = ImGui::CreateContext(reinterpret_cast<ImFontAtlas *>(sharedFontAtlas));
- return reinterpret_cast<IggContext>(context);
- }
- void iggDestroyContext(IggContext context) { ImGui::DestroyContext(reinterpret_cast<ImGuiContext *>(context)); }
- IggContext iggGetCurrentContext() { return reinterpret_cast<IggContext>(ImGui::GetCurrentContext()); }
- void iggSetCurrentContext(IggContext context) { ImGui::SetCurrentContext(reinterpret_cast<ImGuiContext *>(context)); }
- void iggSetMaxWaitBeforeNextFrame(double time) { ImGui::SetMaxWaitBeforeNextFrame(time); }
- IggIO iggGetCurrentIO() { return reinterpret_cast<IggIO>(&ImGui::GetIO()); }
- IggGuiStyle iggGetCurrentStyle() { return reinterpret_cast<IggGuiStyle>(&ImGui::GetStyle()); }
- void iggNewFrame() { ImGui::NewFrame(); }
- void iggRender() { ImGui::Render(); }
- IggDrawData iggGetDrawData() { return reinterpret_cast<IggDrawData>(ImGui::GetDrawData()); }
- void iggEndFrame() { ImGui::EndFrame(); }
- double iggGetEventWaitingTime() { return ImGui::GetEventWaitingTime(); }
- char const *iggGetVersion() { return ImGui::GetVersion(); }
- void iggShowDemoWindow(IggBool *open) {
- BoolWrapper openArg(open);
- ImGui::ShowDemoWindow(openArg);
- }
- void iggShowUserGuide(void) { ImGui::ShowUserGuide(); }
- IggBool iggBegin(char const *id, IggBool *open, int flags) {
- BoolWrapper openArg(open);
- return ImGui::Begin(id, openArg, flags) ? 1 : 0;
- }
- void iggEnd(void) { ImGui::End(); }
- IggBool iggBeginChild(char const *id, IggVec2 const *size, IggBool border, int flags) {
- Vec2Wrapper sizeArg(size);
- return ImGui::BeginChild(id, *sizeArg, border, flags) ? 1 : 0;
- }
- void iggEndChild(void) { ImGui::EndChild(); }
- void iggWindowPos(IggVec2 *pos) { exportValue(*pos, ImGui::GetWindowPos()); }
- void iggWindowSize(IggVec2 *size) { exportValue(*size, ImGui::GetWindowSize()); }
- float iggWindowWidth(void) { return ImGui::GetWindowWidth(); }
- float iggWindowHeight(void) { return ImGui::GetWindowHeight(); }
- void iggContentRegionAvail(IggVec2 *size) { exportValue(*size, ImGui::GetContentRegionAvail()); }
- IggBool iggIsWindowAppearing() { return ImGui::IsWindowAppearing() ? 1 : 0; }
- IggBool iggIsWindowCollapsed() { return ImGui::IsWindowCollapsed() ? 1 : 0; }
- IggBool iggIsWindowFocused(int flags) { return ImGui::IsWindowFocused(flags) ? 1 : 0; }
- IggBool iggIsWindowHovered(int flags) { return ImGui::IsWindowHovered(flags) ? 1 : 0; }
- void iggSetNextWindowPos(IggVec2 const *pos, int cond, IggVec2 const *pivot) {
- Vec2Wrapper posArg(pos);
- Vec2Wrapper pivotArg(pivot);
- ImGui::SetNextWindowPos(*posArg, cond, *pivotArg);
- }
- void iggSetNextWindowSize(IggVec2 const *size, int cond) {
- Vec2Wrapper sizeArg(size);
- ImGui::SetNextWindowSize(*sizeArg, cond);
- }
- void iggSetNextWindowContentSize(IggVec2 const *size) {
- Vec2Wrapper sizeArg(size);
- ImGui::SetNextWindowContentSize(*sizeArg);
- }
- void iggSetNextWindowFocus(void) { ImGui::SetNextWindowFocus(); }
- void iggSetNextWindowBgAlpha(float value) { ImGui::SetNextWindowBgAlpha(value); }
- void iggPushFont(IggFont handle) {
- ImFont *font = reinterpret_cast<ImFont *>(handle);
- ImGui::PushFont(font);
- }
- void iggPopFont(void) { ImGui::PopFont(); }
- void iggPushStyleColor(int index, IggVec4 const *col) {
- Vec4Wrapper colArg(col);
- ImGui::PushStyleColor(index, *colArg);
- }
- void iggPopStyleColor(int count) { ImGui::PopStyleColor(count); }
- void iggPushStyleVarFloat(int index, float value) { ImGui::PushStyleVar(index, value); }
- void iggPushStyleVarVec2(int index, IggVec2 const *value) {
- Vec2Wrapper valueArg(value);
- ImGui::PushStyleVar(index, *valueArg);
- }
- void iggPopStyleVar(int count) { ImGui::PopStyleVar(count); }
- float iggGetFontSize() { return ImGui::GetFontSize(); }
- void iggCalcTextSize(const char *text, int length, IggBool hide_text_after_double_hash, float wrap_width, IggVec2 *value) { exportValue(*value, ImGui::CalcTextSize(text, text + length, hide_text_after_double_hash, wrap_width)); }
- unsigned int iggGetColorU32(const IggVec4 col) {
- Vec4Wrapper colArg(&col);
- return ImGui::GetColorU32(*colArg);
- }
- void iggBeginDisabled(IggBool disabled) { ImGui::BeginDisabled(disabled); }
- void iggEndDisabled() { ImGui::EndDisabled(); }
- void iggStyleColorsDark() { ImGui::StyleColorsDark(); }
- void iggStyleColorsClassic() { ImGui::StyleColorsClassic(); }
- void iggStyleColorsLight() { ImGui::StyleColorsLight(); }
- void iggPushItemWidth(float width) { ImGui::PushItemWidth(width); }
- void iggPopItemWidth(void) { ImGui::PopItemWidth(); }
- float iggCalcItemWidth(void) { return ImGui::CalcItemWidth(); }
- void iggPushTextWrapPos(float wrapPosX) { ImGui::PushTextWrapPos(wrapPosX); }
- void iggPopTextWrapPos(void) { ImGui::PopTextWrapPos(); }
- void iggPushAllowKeyboardFocus(IggBool allow_keyboard_focus) { ImGui::PushAllowKeyboardFocus(allow_keyboard_focus); }
- void iggPopAllowKeyboardFocus(void) { ImGui::PopAllowKeyboardFocus(); }
- void iggPushID(char const *id) { ImGui::PushID(id); }
- void iggPopID(void) { ImGui::PopID(); }
- void iggTextUnformatted(char const *text) { ImGui::TextUnformatted(text); }
- void iggLabelText(char const *label, char const *text) { ImGui::LabelText(label, "%s", text); }
- IggBool iggButton(char const *label, IggVec2 const *size) {
- Vec2Wrapper sizeArg(size);
- return ImGui::Button(label, *sizeArg) ? 1 : 0;
- }
- IggBool iggSmallButton(char const *label) { return ImGui::SmallButton(label) ? 1 : 0; }
- IggBool iggArrowButton(const char *id, unsigned char dir) { return ImGui::ArrowButton(id, dir) ? 1 : 0; }
- IggBool iggInvisibleButton(char const *label, IggVec2 const *size) {
- Vec2Wrapper sizeArg(size);
- return ImGui::InvisibleButton(label, *sizeArg) ? 1 : 0;
- }
- void iggImage(IggTextureID textureID, IggVec2 const *size, IggVec2 const *uv0, IggVec2 const *uv1, IggVec4 const *tintCol, IggVec4 const *borderCol) {
- Vec2Wrapper sizeArg(size);
- Vec2Wrapper uv0Arg(uv0);
- Vec2Wrapper uv1Arg(uv1);
- Vec4Wrapper tintColArg(tintCol);
- Vec4Wrapper borderColArg(borderCol);
- ImGui::Image(reinterpret_cast<ImTextureID>(textureID), *sizeArg, *uv0Arg, *uv1Arg, *tintColArg, *borderColArg);
- }
- IggBool iggImageButton(IggTextureID textureID, IggVec2 const *size, IggVec2 const *uv0, IggVec2 const *uv1, int framePadding, IggVec4 const *bgCol, IggVec4 const *tintCol) {
- Vec2Wrapper sizeArg(size);
- Vec2Wrapper uv0Arg(uv0);
- Vec2Wrapper uv1Arg(uv1);
- Vec4Wrapper bgColArg(bgCol);
- Vec4Wrapper tintColArg(tintCol);
- return ImGui::ImageButton(reinterpret_cast<ImTextureID>(textureID), *sizeArg, *uv0Arg, *uv1Arg, framePadding, *bgColArg, *tintColArg) ? 1 : 0;
- }
- IggBool iggCheckbox(char const *label, IggBool *selected) {
- BoolWrapper selectedArg(selected);
- return ImGui::Checkbox(label, selectedArg) ? 1 : 0;
- }
- IggBool iggRadioButton(char const *label, IggBool active) { return ImGui::RadioButton(label, active != 0) ? 1 : 0; }
- void iggProgressBar(float fraction, IggVec2 const *size, char const *overlay) {
- Vec2Wrapper sizeArg(size);
- ImGui::ProgressBar(fraction, *sizeArg, overlay);
- }
- void iggBullet(void) { ImGui::Bullet(); }
- void iggBulletText(const char *text) { ImGui::BulletText("%s", text); }
- IggBool iggBeginCombo(char const *label, char const *previewValue, int flags) { return ImGui::BeginCombo(label, previewValue, flags) ? 1 : 0; }
- void iggEndCombo(void) { ImGui::EndCombo(); }
- IggBool iggDragFloat(char const *label, float *value, float speed, float min, float max, char const *format, float power) { return ImGui::DragFloat(label, value, speed, min, max, format, power) ? 1 : 0; }
- IggBool iggDragInt(char const *label, int *value, float speed, int min, int max, char const *format) { return ImGui::DragInt(label, value, speed, min, max, format) ? 1 : 0; }
- IggBool iggSliderFloat(char const *label, float *value, float minValue, float maxValue, char const *format, float power) { return ImGui::SliderFloat(label, value, minValue, maxValue, format, power) ? 1 : 0; }
- IggBool iggSliderFloatN(char const *label, float *value, int n, float minValue, float maxValue, char const *format, float power) { return ImGui::SliderScalarN(label, ImGuiDataType_Float, (void *)value, n, &minValue, &maxValue, format, power) ? 1 : 0; }
- IggBool iggSliderInt(char const *label, int *value, int minValue, int maxValue, char const *format) { return ImGui::SliderInt(label, value, minValue, maxValue, format) ? 1 : 0; }
- IggBool iggVSliderInt(const char *label, const IggVec2 *size, int *v, int v_min, int v_max, const char *format, int flags) {
- Vec2Wrapper sizeArg(size);
- return ImGui::VSliderInt(label, *sizeArg, v, v_min, v_max, format, flags) ? 1 : 0;
- }
- extern "C" int iggInputTextCallback(IggInputTextCallbackData data, int key);
- static int iggInputTextCallbackWrapper(ImGuiInputTextCallbackData *data) { return iggInputTextCallback(reinterpret_cast<IggInputTextCallbackData>(data), static_cast<int>(reinterpret_cast<size_t>(data->UserData))); }
- IggBool iggInputText(char const *label, char *buf, unsigned int bufSize, int flags, int callbackKey) { return ImGui::InputText(label, buf, static_cast<size_t>(bufSize), flags, iggInputTextCallbackWrapper, reinterpret_cast<void *>(callbackKey)) ? 1 : 0; }
- IggBool iggInputTextWithHint(char const *label, char const *hint, char *buf, unsigned int bufSize, int flags, int callbackKey) { return ImGui::InputTextWithHint(label, hint, buf, static_cast<size_t>(bufSize), flags, iggInputTextCallbackWrapper, reinterpret_cast<void *>(callbackKey)) ? 1 : 0; }
- IggBool iggInputTextMultiline(char const *label, char *buf, unsigned int bufSize, IggVec2 const *size, int flags, int callbackKey) {
- Vec2Wrapper sizeArg(size);
- return ImGui::InputTextMultiline(label, buf, static_cast<size_t>(bufSize), *sizeArg, flags, iggInputTextCallbackWrapper, reinterpret_cast<void *>(callbackKey)) ? 1 : 0;
- }
- IggBool iggInputInt(char const *label, int *v, int step, int step_fast, int flags) { return ImGui::InputInt(label, v, step, step_fast, flags) ? 1 : 0; }
- IggBool iggInputFloat(char const *label, float *v, float step, float step_fast, const char *format, int flags) { return ImGui::InputFloat(label, v, step, step_fast, format, flags) ? 1 : 0; }
- IggBool iggColorEdit3(char const *label, float *col, int flags) { return ImGui::ColorEdit3(label, col, flags) ? 1 : 0; }
- IggBool iggColorEdit4(char const *label, float *col, int flags) { return ImGui::ColorEdit4(label, col, flags) ? 1 : 0; }
- IggBool iggColorPicker3(char const *label, float *col, int flags) { return ImGui::ColorPicker3(label, col, flags) ? 1 : 0; }
- IggBool iggColorPicker4(char const *label, float *col, int flags) { return ImGui::ColorPicker4(label, col, flags) ? 1 : 0; }
- void iggSeparator(void) { ImGui::Separator(); }
- void iggSameLine(float posX, float spacingW) { ImGui::SameLine(posX, spacingW); }
- void iggSpacing(void) { ImGui::Spacing(); }
- void iggDummy(IggVec2 const *size) {
- Vec2Wrapper sizeArg(size);
- ImGui::Dummy(*sizeArg);
- }
- void iggBeginGroup(void) { ImGui::BeginGroup(); }
- void iggEndGroup(void) { ImGui::EndGroup(); }
- void iggCursorPos(IggVec2 *pos) { exportValue(*pos, ImGui::GetCursorPos()); }
- float iggCursorPosX(void) { return ImGui::GetCursorPosX(); }
- float iggCursorPosY(void) { return ImGui::GetCursorPosY(); }
- void iggCursorStartPos(IggVec2 *pos) { exportValue(*pos, ImGui::GetCursorStartPos()); }
- void iggCursorScreenPos(IggVec2 *pos) { exportValue(*pos, ImGui::GetCursorScreenPos()); }
- void iggSetCursorPos(IggVec2 const *localPos) {
- Vec2Wrapper localPosArg(localPos);
- ImGui::SetCursorPos(*localPosArg);
- }
- void iggSetCursorScreenPos(IggVec2 const *absPos) {
- Vec2Wrapper absPosArg(absPos);
- ImGui::SetCursorScreenPos(*absPosArg);
- }
- void iggMousePos(IggVec2 *pos) { exportValue(*pos, ImGui::GetMousePos()); }
- void iggAlignTextToFramePadding() { ImGui::AlignTextToFramePadding(); }
- float iggGetTextLineHeight(void) { return ImGui::GetTextLineHeight(); }
- float iggGetTextLineHeightWithSpacing(void) { return ImGui::GetTextLineHeightWithSpacing(); }
- float iggFrameHeightWithSpacing(void) { return ImGui::GetFrameHeightWithSpacing(); }
- IggBool iggTreeNode(char const *label, int flags) { return ImGui::TreeNodeEx(label, flags) ? 1 : 0; }
- void iggTreePop(void) { ImGui::TreePop(); }
- void iggSetNextItemOpen(IggBool open, int cond) { ImGui::SetNextItemOpen(open != 0, cond); }
- float iggGetTreeNodeToLabelSpacing(void) { return ImGui::GetTreeNodeToLabelSpacing(); }
- IggBool iggSelectable(char const *label, IggBool selected, int flags, IggVec2 const *size) {
- Vec2Wrapper sizeArg(size);
- return ImGui::Selectable(label, selected != 0, flags, *sizeArg) ? 1 : 0;
- }
- IggBool iggListBoxV(char const *label, int *currentItem, char const *const items[], int itemsCount, int heightItems) { return ImGui::ListBox(label, currentItem, items, itemsCount, heightItems) ? 1 : 0; }
- void iggPlotLines(char const *label, float const *values, int valuesCount, int valuesOffset, char const *overlayText, float scaleMin, float scaleMax, IggVec2 const *graphSize) {
- Vec2Wrapper graphSizeArg(graphSize);
- ImGui::PlotLines(label, values, valuesCount, valuesOffset, overlayText, scaleMin, scaleMax, *graphSizeArg);
- }
- void iggPlotHistogram(char const *label, float const *values, int valuesCount, int valuesOffset, char const *overlayText, float scaleMin, float scaleMax, IggVec2 const *graphSize) {
- Vec2Wrapper graphSizeArg(graphSize);
- ImGui::PlotHistogram(label, values, valuesCount, valuesOffset, overlayText, scaleMin, scaleMax, *graphSizeArg);
- }
- void iggSetTooltip(char const *text) { ImGui::SetTooltip("%s", text); }
- void iggBeginTooltip(void) { ImGui::BeginTooltip(); }
- void iggEndTooltip(void) { ImGui::EndTooltip(); }
- IggBool iggBeginMainMenuBar(void) { return ImGui::BeginMainMenuBar() ? 1 : 0; }
- void iggEndMainMenuBar(void) { ImGui::EndMainMenuBar(); }
- IggBool iggBeginMenuBar(void) { return ImGui::BeginMenuBar() ? 1 : 0; }
- void iggEndMenuBar(void) { ImGui::EndMenuBar(); }
- IggBool iggBeginMenu(char const *label, IggBool enabled) { return ImGui::BeginMenu(label, enabled != 0) ? 1 : 0; }
- void iggEndMenu(void) { ImGui::EndMenu(); }
- IggBool iggMenuItem(char const *label, char const *shortcut, IggBool selected, IggBool enabled) { return ImGui::MenuItem(label, shortcut, selected != 0, enabled != 0) ? 1 : 0; }
- void iggOpenPopup(char const *id) { ImGui::OpenPopup(id); }
- IggBool iggBeginPopup(char const *name, int flags) { return ImGui::BeginPopup(name, flags) ? 1 : 0; }
- IggBool iggBeginPopupModal(char const *name, IggBool *open, int flags) {
- BoolWrapper openArg(open);
- return ImGui::BeginPopupModal(name, openArg, flags) ? 1 : 0;
- }
- IggBool iggBeginPopupContextItem(char const *label, int mouseButton) { return ImGui::BeginPopupContextItem(label, mouseButton) ? 1 : 0; }
- void iggEndPopup(void) { ImGui::EndPopup(); }
- void iggCloseCurrentPopup(void) { ImGui::CloseCurrentPopup(); }
- IggBool iggIsItemHovered(int flags) { return ImGui::IsItemHovered(flags) ? 1 : 0; }
- IggBool iggIsItemClicked(int mouseButton) { return ImGui::IsItemClicked(mouseButton) ? 1 : 0; }
- IggBool iggIsItemActive() { return ImGui::IsItemActive() ? 1 : 0; }
- IggBool iggIsAnyItemActive() { return ImGui::IsAnyItemActive() ? 1 : 0; }
- IggBool iggIsKeyDown(int key) { return ImGui::IsKeyDown(key); }
- IggBool iggIsKeyPressed(int key, IggBool repeat) { return ImGui::IsKeyPressed(key, repeat); }
- IggBool iggIsKeyReleased(int key) { return ImGui::IsKeyReleased(key); }
- IggBool iggIsMouseDown(int button) { return ImGui::IsMouseDown(button); }
- IggBool iggIsAnyMouseDown() { return ImGui::IsAnyMouseDown(); }
- IggBool iggIsMouseClicked(int button, IggBool repeat) { return ImGui::IsMouseClicked(button, repeat); }
- IggBool iggIsMouseReleased(int button) { return ImGui::IsMouseReleased(button); }
- IggBool iggIsMouseDoubleClicked(int button) { return ImGui::IsMouseDoubleClicked(button); }
- void iggColumns(int count, char const *label, IggBool border) { ImGui::Columns(count, label, border); }
- void iggNextColumn() { ImGui::NextColumn(); }
- int iggGetColumnIndex() { return ImGui::GetColumnIndex(); }
- int iggGetColumnWidth(int index) { return ImGui::GetColumnWidth(index); }
- void iggSetColumnWidth(int index, float width) { ImGui::SetColumnWidth(index, width); }
- float iggGetColumnOffset(int index) { return ImGui::GetColumnOffset(index); }
- void iggSetColumnOffset(int index, float offsetX) { ImGui::SetColumnOffset(index, offsetX); }
- int iggGetColumnsCount() { return ImGui::GetColumnsCount(); }
- float iggGetScrollX() { return ImGui::GetScrollX(); }
- float iggGetScrollY() { return ImGui::GetScrollY(); }
- float iggGetScrollMaxX() { return ImGui::GetScrollMaxX(); }
- float iggGetScrollMaxY() { return ImGui::GetScrollMaxY(); }
- void iggSetScrollHereX(float centerXRatio) { ImGui::SetScrollHereX(centerXRatio); }
- void iggSetScrollHereY(float centerYRatio) { ImGui::SetScrollHereY(centerYRatio); }
- void iggSetScrollX(float scrollX) { ImGui::SetScrollX(scrollX); }
- void iggSetScrollY(float scrollY) { ImGui::SetScrollY(scrollY); }
- void iggSetItemDefaultFocus() { ImGui::SetItemDefaultFocus(); }
- IggBool iggIsItemFocused() { return ImGui::IsItemFocused(); }
- IggBool iggIsAnyItemFocused() { return ImGui::IsAnyItemFocused(); }
- int iggGetMouseCursor() { return ImGui::GetMouseCursor(); }
- void iggSetMouseCursor(int cursor) { ImGui::SetMouseCursor(cursor); }
- void iggSetKeyboardFocusHere(int offset) { ImGui::SetKeyboardFocusHere(offset); }
- IggBool iggBeginTabBar(char const *str_id, int flags) { return ImGui::BeginTabBar(str_id, flags) ? 1 : 0; }
- void iggEndTabBar() { ImGui::EndTabBar(); }
- IggBool iggBeginTabItem(char const *label, IggBool *p_open, int flags) {
- BoolWrapper openArg(p_open);
- return ImGui::BeginTabItem(label, openArg, flags) ? 1 : 0;
- }
- void iggEndTabItem() { ImGui::EndTabItem(); }
- void iggSetTabItemClosed(char const *tab_or_docked_window_label) { ImGui::SetTabItemClosed(tab_or_docked_window_label); }
- IggDrawList iggGetWindowDrawList() {
- ImDrawList *drawlist = ImGui::GetWindowDrawList();
- return static_cast<IggDrawList>(drawlist);
- }
- void iggGetItemRectMin(IggVec2 *size) { exportValue(*size, ImGui::GetItemRectMin()); }
- void iggGetItemRectMax(IggVec2 *size) { exportValue(*size, ImGui::GetItemRectMax()); }
- void iggGetItemRectSize(IggVec2 *size) { exportValue(*size, ImGui::GetItemRectSize()); }
- void iggPushClipRect(const IggVec2 *clip_rect_min, const IggVec2 *clip_rect_max, IggBool intersect_with_clip_rect) {
- Vec2Wrapper clipMin(clip_rect_min);
- Vec2Wrapper clipMax(clip_rect_max);
- ImGui::PushClipRect(*clipMin, *clipMax, intersect_with_clip_rect);
- }
- void iggPopClipRect() { ImGui::PopClipRect(); }
|