portable-file-dialogs icon indicating copy to clipboard operation
portable-file-dialogs copied to clipboard

💬 Portable GUI dialogs library, C++11, single-header

Results 28 portable-file-dialogs issues
Sort by recently updated
recently updated
newest added

Fixes bug detected by gcc's address sanitizer: ``` ==261921==ERROR: AddressSanitizer: new-delete-type-mismatch on 0x606000158960 in thread T0: object passed to delete has wrong type: size of the allocated type: 64 bytes;...

Now, this will works find_package(portable_file_dialogs) add_executable(example example.cpp) target_link_libraries(example PRIVATE portable_file_dialogs)

Hello! Firstly, thank you for this very helpful library! Secondly, I've noticed that after using `pfd::open_file` and selecting a file, debugger produces this message on Windows: `onecore\com\combase\dcomrem\security.cxx(3071)\combase.dll!00007FFAAEFF9CFC: (caller: 00007FFA49E0823E) ReturnHr(1)...

I very like the concept of single header libraries and I prefer to use them instead of others when I have a choice. Usually they have special macro that you...

Callstack of the crashing frame ``` > KernelBase.dll!00007ff96c3a4b89() Unknown [External Code] ntdll.dll!00007ff96e6c8a4c() Unknown ntdll.dll!00007ff96e6a1276() Unknown ntdll.dll!00007ff96e6f0cae() Unknown ucrtbase.dll!00007ff96bf48919() Unknown windows.storage.dll!00007ff969ff113e() Unknown windows.storage.dll!00007ff969fce89f() Unknown shell32.dll!00007ff96cc8726f() Unknown ExplorerFrame.dll!00007ff938a8670b() Unknown ExplorerFrame.dll!00007ff938a0a490() Unknown ExplorerFrame.dll!00007ff938a0a418()...

question

Hi @samhocevar , with latest commit (0049adb), clang produces some warnings when compiling the code on Windows: ``` [...]/pfd/portable-file-dialogs.h:965:88: warning: extension used [-Wlanguage-extension-token] (CLSID_FileOpenDialog, nullptr, CLSCTX_INPROC_SERVER, IID_PPV_ARGS(&ifd)); ^ C:\Program Files...

``` /defpfd/src/portable-file-dialogs.h Line 1325: In file included from upload/defpfd/src/button.cpp:1: In file included from upload/defpfd/src/button.h:5: no viable conversion from '(lambda at upload/defpfd/src/portable-file-dialogs.h:1325:42)' to 'ENUMRESNAMEPROCA' (aka 'int (*)(HINSTANCE__ *, const char *,...

Thanks for this great library, I love how quick and simple it is, I'm having some trouble with the save dialog option: ``` if (ImGui::MenuItem("Save as...")) { auto destination =...

Hi, thank you for your amazing code. I try to implement a simply file dialog to selected multi designed suffix( under vs2013 and qt), but i found that the file...

Hi is there the chance to add the option to automatically add the extesion for the save file dialog? I have looked throught the API but I am not able...