Questions tagged [imgui]

imgui stands for "Immediate mode GUI", which is a GUI where the event processing is directly controlled by the user.

Related links:

Implementations:

264 questions
0
votes
1 answer

PyImgui Graphical User Interface not visible

So I just started coding GUI in python and after coding some stuff in tkinter i felt like I might as well use imgui as I know some stuff about it from C++. Now starting to read the docs and somehow the imgui window isn't showing up. I just see a…
3 agle
  • 1
  • 1
  • 4
0
votes
0 answers

How to get a path to file in c++?

I am making an app with ImGUI to choose pictures. So I need to call "OPENFILENAME" to call a dialog window, and there is my code to do it: OPENFILENAME ofn; ::memset(&ofn, 0, sizeof(ofn)); TCHAR f1[MAX_PATH]; f1[0] = 0; ofn.lStructSize =…
Daniil
  • 1
  • 1
0
votes
0 answers

How can I render an gfx-rs (opengl) scene into an ImGui-rs window?

i'm new to Rust & gfx-rs, i' want to render to a texture and use that texture as an image to imgui , after several houres :-) i have created a texture using factory.view_texture_as_render_target successufully but i don't know how to use it as…
ad_bek
  • 1
  • 2
0
votes
1 answer

Unity Custom Editor Window Input Control for Type Determined by Reflection

I am creating a GUI for selecting a function in a Unity custom EditorWindow inspired by the UnityEvent GUI. I can't get UnityEvent itself to work; using a EditorGUILayout.PropertyField and referencing the UnityEvent member as a serialized property…
Will
  • 83
  • 8
-1
votes
0 answers

create inverse rounded corner rectangle in imgui c++

I want to draw Inverse rounded corner rectangle in imgui c++. There is no built-in method to draw inverse rounded rectangle.I want filled inverse rounded corner rectangle.I want c++ code to draw this. I have tried recreating in imgui using different…
-1
votes
0 answers

Facing issue while Rotating entire table along with content created table using :: ImGui::BeginTable(); //... ImGui::EndTable();

I have Created a Table using ImGui property ImGui::BeginTable(); //... ImGui::EndTable(); I'am not able to add Rotation Functionality to The created table is there any support code for rotation? Rotation Should be done From Center of table to…
-1
votes
1 answer

ImGui remove unnecessary elements

enter image description hereI wrote authorization by key in imgui, then I made an injection and a game selection (but it opened in a new window) I would like to make sure that after successful authorization, the old elements are deleted and new ones…
-1
votes
1 answer

when using ImGui with Glut it does not show any objects

I'm coding a rendering engine in C++ with OpenGL and GLUT and trying to integrate ImGUI into my engine, but I have a problem. it either renders the gui and only the background (no objects), or it only renders the objects and background (no GUI).…
CesarW
  • 9
  • 3
-1
votes
1 answer

ImGui has no member RenderPlatformWindowsDefault error

When i try to build my old code i dont remember what version is imgui but i'm getting this error. i searched whole internet but i can't find nothing. ImGui::GetIO().ConfigFlags |= ImGuiConfigFlags_ViewportsEnable; if (io.ConfigFlags &…
-1
votes
1 answer

pip installing package in weird location

I'm trying to install imgui with pip with anaconda3 All of my packages are in anaconda3\Lib\site-packages but when I install imgui, it installs it in another folder on C:\Python39 Which location should I keep imgui in?
snakelovah18119
  • 121
  • 1
  • 7
-1
votes
1 answer

Pass non-clonable, non-static object to thread requiring static data

I'm using the ImGui Rust binding, and I have a big problem: I need to access the 'system' variable of the window from another thread: this variable grants control to several functions e.g. changing window size. I need to access this variable in the…
admbot
  • 11
  • 1
-1
votes
1 answer

Is there any difference between double-click the window's title bar and click the window's maximize button?

I find a pretty weird bug while using the imgui dx12 example. When I double-click the window's title bar to maximize the window, the program failed in recreating the command allocator. But click the window's maximize button or resize the window is…
-1
votes
1 answer

Getting errors when using ImGui with OpenGL

I have some code working in OpenGL and now I would like to use ImGui to make a GUI for my application. When I tried to copy a one line code of ImGui to my project ImGui::CreateContext(); by including some of the header files of ImGui, it lasted by a…
YYY
  • 91
  • 2
  • 11
-2
votes
0 answers

ImGui's Demo Window is not being displayed

I am facing the problem that compiler throws no error, glfw Works fine. However, ImGui's demo window is not being displayed. Here's the code, In ImGuiLayer.cpp, #include #include "ImGuiLayer.h" #include…
-2
votes
0 answers

I'm just stuck with this error in QtDirect3D

enter image description here https://github.com/giladreich/QtDirect3D I would like to compile the project found at this address. I am going through a challenging process as I am still in the learning phase. I installed VSMS2019 (32/64 bit…
1 2 3
17
18