Skip to content

Commit 8f36798

Browse files
committed
IO: added io.PlatformOpenInShellFn handler to open a link/folder/file in OS shell, added IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS. (ocornut#7660)
1 parent 0250dc9 commit 8f36798

File tree

4 files changed

+49
-3
lines changed

4 files changed

+49
-3
lines changed

docs/CHANGELOG.txt

+3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ Breaking changes:
4343

4444
Other changes:
4545

46+
- IO: added io.PlatformOpenInShellFn handler to open a link/folder/file in OS shell. (#7660)
47+
Default to use ShellExecute() under Windows, and system("") under Mac/Linux/etc.
48+
Added IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS to disable default implementation.
4649
- Debug Tools: Added IMGUI_DEBUG_LOG(), ImGui::DebugLog() in public API. (#5855)
4750
Debug log entries add a imgui frame counter prefix + are redirected to ShowDebugLogWindow() and
4851
other configurable locations. Always call IMGUI_DEBUG_LOG() for maximum stripping in caller code.

imconfig.h

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
//#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS // [Win32] [Default with non-Visual Studio compilers] Don't implement default IME handler (won't require imm32.lib/.a)
4343
//#define IMGUI_DISABLE_WIN32_FUNCTIONS // [Win32] Won't use and link with any Win32 function (clipboard, IME).
4444
//#define IMGUI_ENABLE_OSX_DEFAULT_CLIPBOARD_FUNCTIONS // [OSX] Implement default OSX clipboard handler (need to link with '-framework ApplicationServices', this is why this is not the default).
45+
//#define IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS // Don't implement default io.PlatformOpenInShellFn() handler (Win32: ShellExecute(), require shell32.lib/.a, Mac/Linux: use system("")).
4546
//#define IMGUI_DISABLE_DEFAULT_FORMAT_FUNCTIONS // Don't implement ImFormatString/ImFormatStringV so you can implement them yourself (e.g. if you don't want to link with vsnprintf)
4647
//#define IMGUI_DISABLE_DEFAULT_MATH_FUNCTIONS // Don't implement ImFabs/ImSqrt/ImPow/ImFmod/ImCos/ImSin/ImAcos/ImAtan2 so you can implement them yourself.
4748
//#define IMGUI_DISABLE_FILE_FUNCTIONS // Don't implement ImFileOpen/ImFileClose/ImFileRead/ImFileWrite and ImFileHandle at all (replace them with dummies)

imgui.cpp

+39-2
Original file line numberDiff line numberDiff line change
@@ -1015,7 +1015,7 @@ CODE
10151015
#endif
10161016

10171017
// [Windows] OS specific includes (optional)
1018-
#if defined(_WIN32) && defined(IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS) && defined(IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS) && defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS)
1018+
#if defined(_WIN32) && defined(IMGUI_DISABLE_DEFAULT_FILE_FUNCTIONS) && defined(IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS) && defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS) && defined(IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS)
10191019
#define IMGUI_DISABLE_WIN32_FUNCTIONS
10201020
#endif
10211021
#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS)
@@ -1034,6 +1034,7 @@ CODE
10341034
// The UWP and GDK Win32 API subsets don't support clipboard nor IME functions
10351035
#define IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS
10361036
#define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS
1037+
#define IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS
10371038
#endif
10381039
#endif
10391040

@@ -1124,6 +1125,7 @@ static void WindowSettingsHandler_WriteAll(ImGuiContext*, ImGuiSetti
11241125
static const char* GetClipboardTextFn_DefaultImpl(void* user_data_ctx);
11251126
static void SetClipboardTextFn_DefaultImpl(void* user_data_ctx, const char* text);
11261127
static void SetPlatformImeDataFn_DefaultImpl(ImGuiViewport* viewport, ImGuiPlatformImeData* data);
1128+
static void PlatformOpenInShellFn_DefaultImpl(ImGuiContext* ctx, const char* path);
11271129

11281130
namespace ImGui
11291131
{
@@ -1369,6 +1371,7 @@ ImGuiIO::ImGuiIO()
13691371
// Note: Initialize() will setup default clipboard/ime handlers.
13701372
BackendPlatformName = BackendRendererName = NULL;
13711373
BackendPlatformUserData = BackendRendererUserData = BackendLanguageUserData = NULL;
1374+
PlatformOpenInShellUserData = NULL;
13721375
PlatformLocaleDecimalPoint = '.';
13731376

13741377
// Input (NB: we already have memset zero the entire structure!)
@@ -3712,6 +3715,7 @@ void ImGui::Initialize()
37123715
g.IO.GetClipboardTextFn = GetClipboardTextFn_DefaultImpl; // Platform dependent default implementations
37133716
g.IO.SetClipboardTextFn = SetClipboardTextFn_DefaultImpl;
37143717
g.IO.ClipboardUserData = (void*)&g; // Default implementation use the ImGuiContext as user data (ideally those would be arguments to the function)
3718+
g.IO.PlatformOpenInShellFn = PlatformOpenInShellFn_DefaultImpl;
37153719
g.IO.SetPlatformImeDataFn = SetPlatformImeDataFn_DefaultImpl;
37163720

37173721
// Create default viewport
@@ -14200,6 +14204,10 @@ static void ImGui::UpdateViewportsNewFrame()
1420014204
//-----------------------------------------------------------------------------
1420114205
// [SECTION] PLATFORM DEPENDENT HELPERS
1420214206
//-----------------------------------------------------------------------------
14207+
// - Default clipboard handlers
14208+
// - Default shell function handlers
14209+
// - Default IME handlers
14210+
//-----------------------------------------------------------------------------
1420314211

1420414212
#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCTIONS)
1420514213

@@ -14325,7 +14333,36 @@ static void SetClipboardTextFn_DefaultImpl(void* user_data_ctx, const char* text
1432514333
g.ClipboardHandlerData[(int)(text_end - text)] = 0;
1432614334
}
1432714335

14336+
#endif // Default clipboard handlers
14337+
14338+
//-----------------------------------------------------------------------------
14339+
14340+
#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS)
14341+
#include <shellapi.h> // ShellExecuteA()
14342+
#ifdef _MSC_VER
14343+
#pragma comment(lib, "shell32")
1432814344
#endif
14345+
static void PlatformOpenInShellFn_DefaultImpl(ImGuiContext*, const char* path)
14346+
{
14347+
::ShellExecuteA(NULL, "open", path, NULL, NULL, SW_SHOWDEFAULT);
14348+
}
14349+
#elif !defined(IMGUI_DISABLE_DEFAULT_SHELL_FUNCTIONS))
14350+
static void PlatformOpenInShellFn_DefaultImpl(ImGuiContext*, const char* path)
14351+
{
14352+
#if __APPLE__
14353+
const char* open_executable = "open";
14354+
#else
14355+
const char* open_executable = "xdg-open";
14356+
#endif
14357+
ImGuiTextBuffer buf;
14358+
buf.appendf("%s \"%s\"", open_executable, path);
14359+
system(buf.c_str());
14360+
}
14361+
#else
14362+
static void PlatformOpenInShellFn_DefaultImpl(ImGuiContext*, const char*) {}
14363+
#endif // Default shell handlers
14364+
14365+
//-----------------------------------------------------------------------------
1432914366

1433014367
// Win32 API IME support (for Asian languages, etc.)
1433114368
#if defined(_WIN32) && !defined(IMGUI_DISABLE_WIN32_FUNCTIONS) && !defined(IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCTIONS)
@@ -14363,7 +14400,7 @@ static void SetPlatformImeDataFn_DefaultImpl(ImGuiViewport* viewport, ImGuiPlatf
1436314400

1436414401
static void SetPlatformImeDataFn_DefaultImpl(ImGuiViewport*, ImGuiPlatformImeData*) {}
1436514402

14366-
#endif
14403+
#endif // Default IME handlers
1436714404

1436814405
//-----------------------------------------------------------------------------
1436914406
// [SECTION] METRICS/DEBUGGER WINDOW

imgui.h

+6-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
// Library Version
2929
// (Integer encoded as XYYZZ for use in #if preprocessor conditionals, e.g. '#if IMGUI_VERSION_NUM >= 12345')
3030
#define IMGUI_VERSION "1.91.0 WIP"
31-
#define IMGUI_VERSION_NUM 19091
31+
#define IMGUI_VERSION_NUM 19092
3232
#define IMGUI_HAS_TABLE
3333

3434
/*
@@ -2240,6 +2240,11 @@ struct ImGuiIO
22402240
void (*SetClipboardTextFn)(void* user_data, const char* text);
22412241
void* ClipboardUserData;
22422242

2243+
// Optional: Open link/folder/file in OS Shell
2244+
// (default to use ShellExecuteA() on Windows, system() on Linux/Mac)
2245+
void (*PlatformOpenInShellFn)(ImGuiContext* ctx, const char* path);
2246+
void* PlatformOpenInShellUserData;
2247+
22432248
// Optional: Notify OS Input Method Editor of the screen position of your cursor for text input position (e.g. when using Japanese/Chinese IME on Windows)
22442249
// (default to use native imm32 api on Windows)
22452250
void (*SetPlatformImeDataFn)(ImGuiViewport* viewport, ImGuiPlatformImeData* data);

0 commit comments

Comments
 (0)