├── .gitattributes ├── .gitignore ├── .gitmodules ├── DearImGUI ├── DearImGUI.cpp ├── DearImGUI.vcxproj ├── DearImGUI.vcxproj.filters ├── Debug-MultiByte │ └── DearImGUI.vcxproj.FileListAbsolute.txt ├── Release-MultiByte │ └── DearImGUI.vcxproj.FileListAbsolute.txt ├── framework.h ├── pch.cpp └── pch.h ├── IMM32IMGUI.sln ├── IMM32IMGUI ├── Debug-MultiByte │ └── IMM32IMGUI.vcxproj.FileListAbsolute.txt ├── IMM32IMGUI.vcxproj ├── IMM32IMGUI.vcxproj.filters ├── NotoSansMonoCJKjp-Regular.otf ├── Release-MultiByte │ └── IMM32IMGUI.vcxproj.FileListAbsolute.txt ├── glyph-ranges-ja.cpp ├── glyph-ranges-ja.h ├── imgex.hpp ├── imgui_imm32_onthespot.cpp ├── imgui_imm32_onthespot.h ├── imgui_imm32_onthespot_sdl.h └── main.cpp ├── LICENSE ├── License.txt ├── README.md ├── doc ├── Dear-ImGui-with-IMM32.pptx ├── ImGui-TextEditor-IMM-Candidate-List.png ├── WantTextInput.png ├── imgui-on-the-spot.png ├── window-layer.blend └── window-layer.png ├── vs_custom_build.bat └── widgetTest ├── widgetTest.cpp ├── widgetTest.vcxproj └── widgetTest.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/.gitmodules -------------------------------------------------------------------------------- /DearImGUI/DearImGUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/DearImGUI/DearImGUI.cpp -------------------------------------------------------------------------------- /DearImGUI/DearImGUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/DearImGUI/DearImGUI.vcxproj -------------------------------------------------------------------------------- /DearImGUI/DearImGUI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/DearImGUI/DearImGUI.vcxproj.filters -------------------------------------------------------------------------------- /DearImGUI/Debug-MultiByte/DearImGUI.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DearImGUI/Release-MultiByte/DearImGUI.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DearImGUI/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/DearImGUI/framework.h -------------------------------------------------------------------------------- /DearImGUI/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/DearImGUI/pch.cpp -------------------------------------------------------------------------------- /DearImGUI/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/DearImGUI/pch.h -------------------------------------------------------------------------------- /IMM32IMGUI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/IMM32IMGUI.sln -------------------------------------------------------------------------------- /IMM32IMGUI/Debug-MultiByte/IMM32IMGUI.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IMM32IMGUI/IMM32IMGUI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/IMM32IMGUI/IMM32IMGUI.vcxproj -------------------------------------------------------------------------------- /IMM32IMGUI/IMM32IMGUI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/IMM32IMGUI/IMM32IMGUI.vcxproj.filters -------------------------------------------------------------------------------- /IMM32IMGUI/NotoSansMonoCJKjp-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/IMM32IMGUI/NotoSansMonoCJKjp-Regular.otf -------------------------------------------------------------------------------- /IMM32IMGUI/Release-MultiByte/IMM32IMGUI.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /IMM32IMGUI/glyph-ranges-ja.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/IMM32IMGUI/glyph-ranges-ja.cpp -------------------------------------------------------------------------------- /IMM32IMGUI/glyph-ranges-ja.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/IMM32IMGUI/glyph-ranges-ja.h -------------------------------------------------------------------------------- /IMM32IMGUI/imgex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/IMM32IMGUI/imgex.hpp -------------------------------------------------------------------------------- /IMM32IMGUI/imgui_imm32_onthespot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/IMM32IMGUI/imgui_imm32_onthespot.cpp -------------------------------------------------------------------------------- /IMM32IMGUI/imgui_imm32_onthespot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/IMM32IMGUI/imgui_imm32_onthespot.h -------------------------------------------------------------------------------- /IMM32IMGUI/imgui_imm32_onthespot_sdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/IMM32IMGUI/imgui_imm32_onthespot_sdl.h -------------------------------------------------------------------------------- /IMM32IMGUI/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/IMM32IMGUI/main.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/LICENSE -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/README.md -------------------------------------------------------------------------------- /doc/Dear-ImGui-with-IMM32.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/doc/Dear-ImGui-with-IMM32.pptx -------------------------------------------------------------------------------- /doc/ImGui-TextEditor-IMM-Candidate-List.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/doc/ImGui-TextEditor-IMM-Candidate-List.png -------------------------------------------------------------------------------- /doc/WantTextInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/doc/WantTextInput.png -------------------------------------------------------------------------------- /doc/imgui-on-the-spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/doc/imgui-on-the-spot.png -------------------------------------------------------------------------------- /doc/window-layer.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/doc/window-layer.blend -------------------------------------------------------------------------------- /doc/window-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/doc/window-layer.png -------------------------------------------------------------------------------- /vs_custom_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/vs_custom_build.bat -------------------------------------------------------------------------------- /widgetTest/widgetTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/widgetTest/widgetTest.cpp -------------------------------------------------------------------------------- /widgetTest/widgetTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/widgetTest/widgetTest.vcxproj -------------------------------------------------------------------------------- /widgetTest/widgetTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maildrop/DearImGui-with-IMM32/HEAD/widgetTest/widgetTest.vcxproj.filters --------------------------------------------------------------------------------