ocornut / imgui

Dear ImGui: Bloat-free Graphical User interface for C++ with minimal dependencies
MIT License
61.03k stars 10.29k forks source link

Quick and Easy "Ready To Fill" VS Solution For DearImGUI? #1756

Closed josephguerrero2018 closed 6 years ago

josephguerrero2018 commented 6 years ago

I'm Currently creating an helper application for GURPS with your incredible software. Here's a screenshot of my work so far. This solution was kinda cheesed into existence by Dumping my own custom headers into one of the imgui demos. It was brute force but It worked nicely enough for visual testing and direct comparison of formatting and other tools in real time. tons of nested info

Using the Demo Interface as an example, I have made some significant progress. For the sake of condensing my code into something more manageable, I really badly need a "ready to fill" Visual Studio solution that just has an empty body. Like the Demo, but all of its "meat" carefully trimmed out of it, save for the Body of the page, ready to roll.

I have been doing some trimming myself, but I realize that my needs might be similar to others that would want to get started on their own programs, so I'm just dropping in with a little request for everyone.

ocornut commented 6 years ago

Joseph, I don’t understand your request. The examples/ application are exactly that. They are nearly empty demo application. Just copy one main.cpp, comment out the dozen lines of demo imgui calls, and add the stuff you need.

You don’t need and should not edit imgui_demo.cpp or edit imgui.h, just add the stuff you need in your own file. The imgui_demo code has zero non-standard dependency, all that code could fit in any of your file.

josephguerrero2018 commented 6 years ago

I'm sorry about that. I'll continue my work on porting my application elsewhere. UPDATE: Silly me. After taking a look at the Main, all it really does is call the Demo that I had so focused myself upon, everything i need was there. I'll transfer the system ASAP.

ocornut commented 6 years ago

Cool :) closing now!