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
0 answers

ImGui Crashes when running standalone

My ImGui window (dx11 winapi32) when is launched by visual studio local windows debugger runs as intended but when started by double-clicking the .exe file it runs for 4 seconds and then it's not responding. Here is the code for the window…
NoveeX
  • 21
  • 4
0
votes
0 answers

How to make log with error for dear ImGui

I can't make log info in dear ImGui I try this "ImGui.Text(`Welcome to GRAPE CHEAT`);", "", "if (ImGui.Button(\"Enter Key\"))", "{", "\t if(buff == \"DEBUG_FOREVER\")", "{", "\t alert(\"thx for buy cheat\");", "} else…
0
votes
0 answers

Linking issue of ImGui into an existing project(LNK2019)

I was working an existing opengl project. I wanted to add ImGui to the project and I followed the process as mentioned by adding all the files into the project and including the main headers into the basic.cc(my main file). But on running the…
0
votes
1 answer

ImGui How to close a window?

I'm using glfw with glad and imgui to create a launcher for my game engine. Currently this is the bit that does all of the imgui stuff: bool projects = true; bool versions = false; ImGui::Begin("Tabs", 0, ImGuiWindowFlags_NoMove |…
Sebwazhere
  • 13
  • 3
0
votes
0 answers

Missing lib file in my imgui_master download

I'm using imgui for a simple project that uses imgui for a simple anti afk. (it's more about learning imgui than the actual antiafk), my problem is that "imgui_impl_win32.lib" isn't coming with the download, how can i find it online? I tried to…
Asver
  • 1
  • 2
0
votes
0 answers

Errors occur while compiling SFML-Imgui "undefined reference to"

I'm trying to compile SFML-Imgui in the Code::Blocks application, but I get errors. I have all the necessary Imgui files in the project directory, but what else do I need to do to fix the error? ../main.cpp:13: undefined reference to…
Bru
  • 11
  • 1
0
votes
1 answer

Make ImGui Window undraggable and unresizable

How do I make my ImGui Window undraggable and unresizable? I create the ImGui Window/Widget using ImGui::Text("Hello, world %d", 42);
Techie-Guy
  • 131
  • 8
0
votes
1 answer

Tilted, vertical text for ticks on X axes for my plots

When setting up labels for ticks on my X axes: ImPlot::SetupAxisTicks(ImAxis_X1, positions, COUNTC, labels); I would like those to be rendered vertically, or rotated with a specific angle, e.g. to get from: to this or similar (excuse the blurry…
0
votes
0 answers

How do I keep window's size constant while resizing host window on imgui with Rust?

I want contents' size in a imgui window looks always same, but on resizing OS window, imgui window size and its contents scale too. Actually contents looks 'wrong' when resized, this is scaled down figure of 'hello world' example from imgui-rs…
xvnm
  • 481
  • 4
  • 15
0
votes
0 answers

Unity IMGUI override GL calls

I am trying to develop a little tool for the Unity editor using IMGUI and GL, and I came up with a problem. I have the following code: public class TestWindow : EditorWindow { [MenuItem("TEST/Test")] static void Open() { var…
Agustin0987
  • 581
  • 6
  • 15
0
votes
0 answers

How do I use ImGui in SharpDX?

I am programming a game right now, and ran across an issue. I cannot use ImGui, i tried ImGui.NET, ImGuiSharp, ImGui.NET.DirectX and none of which worked. The issue was something about not being able to find the Win32 / Dx11 Entry points to the…
user19815545
0
votes
1 answer

How do I make a class acting like two classes from different libraries, with basically the same functionallity?

I am currently working on a project using OpenTK and ImGui.Net. Each of which has its own Vector2 class. I was wondering if it was possible to create my own Vector2 class, which can be used as the other two classes without making conversion methods…
GreenData
  • 3
  • 4
0
votes
0 answers

C++ImGui not fitting window

I'm working on a simple GUI, though my GUI window is unaligned and I cant see any issues in the code. I'm throwing this out there in hopes someone has seen this before because im pretty new to ImGui and have been looking at this code for days…
Kuro
  • 11
  • 4
0
votes
1 answer

How to display images from Resource.rc in Dear ImGui framework?

I want to display an image from Resource.rc file when I'm using Dear ImGui framework. I have my code here. HRSRC resource = FindResourceW(GCM(), MAKEINTRESOURCE(IDB_PNG1), MAKEINTRESOURCE("PGN")); HANDLE image = LoadResource(GCM(), resource); int…
euraad
  • 2,467
  • 5
  • 30
  • 51
0
votes
0 answers

imGUI + VTK using the VS2019, it doesn't appear on the screen

I made sample code using the imGUI & VTK in visual studio 2019. refference sites : https://github.com/trlsmax/imgui-vtk & https://github.com/ocornut/imgui VTK version : 9.2(latest version) I'm doing with VTK viewer in imGUI. But, I faced on the…