Giter VIP home page Giter VIP logo

Comments (3)

ElectroidDes avatar ElectroidDes commented on July 17, 2024 1

This is the most used internal data type and function, it’s unlikely to change.

Understood. Thank you!

from imgui.

GamingMinds-DanielC avatar GamingMinds-DanielC commented on July 17, 2024

How safe it is depends on the fields you want to access. Some of them are very safe, some not so much. But there are ways to reduce the impact of potential changes. Instead of making heavy use of internals throughout your code, you can wrap access to internals into functions in a small extension library. Add a little bit of documentation so that you know where to look just in case your wrapper ever breaks, then you will be fine.

A small example of such a wrapper...

ImGuiEx.h:

#include <imgui_internal.h>

namespace ImGuiEx
{
	// use to switch to a window within its dock node without bringing it to the front
	void SelectWindowInDockNodeTab( ImGuiWindow* window );
}

ImGuiEx.cpp:

#include "ImGuiEx.h"

namespace ImGuiEx
{
	void SelectWindowInDockNodeTab( ImGuiWindow* window )
	{
		// see implementation of ImGui::FocusWindow for reference
		if ( window->DockIsActive )
		{
			ImGuiTabBar* tabBar = window->DockNode->TabBar;
			if ( tabBar != nullptr )
				tabBar->SelectedTabId = tabBar->NextSelectedTabId = window->TabId;
		}
	}
}

from imgui.

ocornut avatar ocornut commented on July 17, 2024

I mean, GetCurrentWindow() and the ImGuiWindow structure are not official external APIs, and what are the chances that the ImGuiWindow structure fields might be renamed or removed in future versions?

This is the most used internal data type and function, it’s unlikely to change.

from imgui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.