diff --git a/.gitignore b/.gitignore index 747ae81..03a6161 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,6 @@ # Mac OS X rubbish .DS_Store + +# CMake build directory +/build/ diff --git a/CMakeLists.txt b/CMakeLists.txt index da9f07e..b61d0d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,6 +26,6 @@ set (CMAKE_CXX_STANDARD 17) add_subdirectory(src) option(NFD_BUILD_TESTS "Build tests for nfd" OFF) -if(${NFD_BUILD_TESTS}) +if(NFD_BUILD_TESTS) add_subdirectory(test) endif() diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 871e695..5d0bc9a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -12,8 +12,27 @@ endif() if(nfd_PLATFORM STREQUAL PLATFORM_LINUX) find_package(PkgConfig REQUIRED) - pkg_check_modules(GTK3 REQUIRED gtk+-3.0) - message("Using GTK version: ${GTK3_VERSION}") + set(NFD_GTK_VERSION "" CACHE STRING "GTK version for Linux builds ('3' or '4')") + set_property(CACHE NFD_GTK_VERSION PROPERTY STRINGS "" 3 4) + # For Linux, we support both GTK3 and GTK4. + # If NFD_GTK_VERSION is not explicitly set, then we take one that is available. + # Otherwise, we find the version that the user wants. + if(NFD_GTK_VERSION STREQUAL "") + pkg_search_module(GTK REQUIRED gtk+-3.0 gtk4) + if(DEFINED GTK_gtk+-3.0_VERSION) + set(GTK_VERSION ${GTK_gtk+-3.0_VERSION}) + elseif(DEFINED GTK_gtk4_VERSION) + set(GTK_VERSION ${GTK_gtk4_VERSION}) + endif() + elseif(NFD_GTK_VERSION STREQUAL 3) + pkg_check_modules(GTK REQUIRED gtk+-3.0) + elseif(NFD_GTK_VERSION STREQUAL 4) + pkg_check_modules(GTK REQUIRED gtk4) + else() + message(FATAL_ERROR "Unsupported GTK version: ${NFD_GTK_VERSION}") + endif() + + message("Using GTK version: ${GTK_VERSION}") list(APPEND SOURCE_FILES nfd_gtk.cpp) endif() @@ -32,9 +51,12 @@ target_include_directories(${TARGET_NAME} if(nfd_PLATFORM STREQUAL PLATFORM_LINUX) target_include_directories(${TARGET_NAME} - PRIVATE ${GTK3_INCLUDE_DIRS}) + PRIVATE ${GTK_INCLUDE_DIRS}) target_link_libraries(${TARGET_NAME} - PRIVATE ${GTK3_LIBRARIES}) + PRIVATE ${GTK_LIBRARIES}) + string(REPLACE "." ";" GTK_VERSION_LIST ${GTK_VERSION}) + list(GET GTK_VERSION_LIST 0 GTK_VERSION_MAJOR) + target_compile_definitions(${TARGET_NAME} PUBLIC NFD_GTK_VERSION=${GTK_VERSION_MAJOR}) endif() if(nfd_PLATFORM STREQUAL PLATFORM_MACOS) diff --git a/src/include/nfd.h b/src/include/nfd.h index b024394..74dc001 100644 --- a/src/include/nfd.h +++ b/src/include/nfd.h @@ -28,6 +28,9 @@ typedef char nfdnchar_t; typedef void nfdpathset_t; typedef struct { void* ptr; +#if NFD_GTK_VERSION == 4 + unsigned int next_index; +#endif } nfdpathsetenum_t; typedef unsigned int nfdfiltersize_t; @@ -43,6 +46,10 @@ typedef struct { const nfdnchar_t* spec; } nfdnfilteritem_t; +/* Conventions: + * Output parameter (typically outPath/outPaths), if any, will not be modified if the function + * returns something other than NFD_OKAY. This applies everywhere, including helper functions. */ + /* nfd_.c */ /* free a file path that was returned by the dialogs */ diff --git a/src/nfd_gtk.cpp b/src/nfd_gtk.cpp index a5eb947..a9cbab7 100644 --- a/src/nfd_gtk.cpp +++ b/src/nfd_gtk.cpp @@ -5,12 +5,19 @@ Authors: Bernard Teo, Michael Labbe Note: We do not check for malloc failure on Linux - Linux overcommits memory! + Note: The GTK4 implementation does not distinguish between local and network files, + so it is possible for the file picker to return a network URI instead of a local filename. */ #include +#include #include #if defined(GDK_WINDOWING_X11) +#if GTK_MAJOR_VERSION == 3 #include +#elif GTK_MAJOR_VERSION == 4 +#include +#endif #endif #include #include @@ -19,6 +26,8 @@ #include "nfd.h" +#define UNSUPPORTED_ERROR() static_assert(false, "Unsupported GTK version, this is an NFD bug.") + namespace { template @@ -37,6 +46,14 @@ struct FreeCheck_Guard { } }; +template +struct GUnref_Guard { + T* data; + GUnref_Guard(T* object) noexcept : data(object) {} + ~GUnref_Guard() { g_object_unref(data); } + T* get() const noexcept { return data; } +}; + /* current error */ const char* g_errorstr = nullptr; @@ -278,16 +295,33 @@ Pair_GtkFileFilter_FileExtension* AddFiltersToDialogWithMap(GtkFileChooser* choo return map; } -void SetDefaultPath(GtkFileChooser* chooser, const char* defaultPath) { - if (!defaultPath || !*defaultPath) return; +/* +Note: GTK+ manual recommends not specifically setting the default path. +We do it anyway in order to be consistent across platforms. - /* GTK+ manual recommends not specifically setting the default path. - We do it anyway in order to be consistent across platforms. +If consistency with the native OS is preferred, +then this function should be made a no-op. +*/ +#if GTK_MAJOR_VERSION == 3 +nfdresult_t SetDefaultPath(GtkFileChooser* chooser, const char* defaultPath) { + if (!defaultPath || !*defaultPath) return NFD_OKAY; - If consistency with the native OS is preferred, this is the line - to comment out. -ml */ gtk_file_chooser_set_current_folder(chooser, defaultPath); + return NFD_OKAY; +} +#elif GTK_MAJOR_VERSION == 4 +nfdresult_t SetDefaultPath(GtkFileChooser* chooser, const char* defaultPath) { + if (!defaultPath || !*defaultPath) return NFD_OKAY; + + GUnref_Guard file(g_file_new_for_path(defaultPath)); + + if (!gtk_file_chooser_set_current_folder(chooser, file.get(), NULL)) { + NFDi_SetError("Failed to set default path."); + return NFD_ERROR; + } + return NFD_OKAY; } +#endif void SetDefaultName(GtkFileChooser* chooser, const char* defaultName) { if (!defaultName || !*defaultName) return; @@ -295,8 +329,83 @@ void SetDefaultName(GtkFileChooser* chooser, const char* defaultName) { gtk_file_chooser_set_current_name(chooser, defaultName); } +#if GTK_MAJOR_VERSION == 3 +nfdresult_t GetSingleFileNameForOpen(GtkWidget* widget, char** outPath) { + char* tmp_outPath = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget)); + if (tmp_outPath) { + *outPath = tmp_outPath; + return NFD_OKAY; + } + return NFD_ERROR; +} +nfdresult_t GetSingleFileNameForSave(GtkWidget* widget, char** outPath) { + return GetSingleFileNameForOpen(widget, outPath); +} +nfdresult_t GetMultipleFileNamesForOpen(GtkWidget* widget, const nfdpathset_t** outPaths) { + GSList* fileList = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(widget)); + if (fileList) { + *outPaths = static_cast(fileList); + return NFD_OKAY; + } + return NFD_ERROR; +} +#elif GTK_MAJOR_VERSION == 4 +// Helper method to get a local file path from a GFile, +// potentially downloading the file if it is a non-local file. +// This function takes ownership of the given gfile, and will call g_object_unref() to release it. +// Note: downloads may take long, but there is no way for the user to cancel it +nfdresult_t GetFileNameFromGFile(GFile* gfile, char** outPath) { + GUnref_Guard file(gfile); + char* tmp_outPath = g_file_get_path(file.get()); + if (tmp_outPath) { + *outPath = tmp_outPath; + return NFD_OKAY; + } + // it's not a local file... we should copy it + GFileIOStream* localFileIOStream; + GFile* localFile = g_file_new_tmp(NULL, &localFileIOStream, NULL); + if (!localFile) return NFD_ERROR; + GUnref_Guard localFileGuard(localFile); + GUnref_Guard localFileIOStreamGuard(localFileIOStream); + g_io_stream_close(G_IO_STREAM(localFileIOStream), NULL, NULL); + if (!g_file_copy(file.get(), localFile, G_FILE_COPY_OVERWRITE, NULL, NULL, NULL, NULL)) + return NFD_ERROR; + *outPath = g_file_get_path(localFile); + return NFD_OKAY; +} + +nfdresult_t GetSingleFileNameForOpen(GtkWidget* widget, char** outPath) { + return GetFileNameFromGFile(gtk_file_chooser_get_file(GTK_FILE_CHOOSER(widget)), outPath); +} +nfdresult_t GetSingleFileNameForSave(GtkWidget* widget, char** outPath) { + GUnref_Guard file(gtk_file_chooser_get_file(GTK_FILE_CHOOSER(widget))); + char* tmp_outPath = g_file_get_path(file.get()); + if (tmp_outPath) { + *outPath = tmp_outPath; + return NFD_OKAY; + } + // it's not a local file... we balk and say the user cancelled the dialog + return NFD_CANCEL; +} +nfdresult_t GetMultipleFileNamesForOpen(GtkWidget* widget, const nfdpathset_t** outPaths) { + GListModel* fileList = gtk_file_chooser_get_files(GTK_FILE_CHOOSER(widget)); + if (fileList) { + *outPaths = static_cast(fileList); + return NFD_OKAY; + } + return NFD_ERROR; +} +#endif + void WaitForCleanup() { +#if GTK_MAJOR_VERSION == 3 while (gtk_events_pending()) gtk_main_iteration(); +#elif GTK_MAJOR_VERSION == 4 + while (g_main_context_iteration(NULL, FALSE)) + ; +#else + UNSUPPORTED_ERROR(); +#endif } struct Widget_Guard { @@ -304,7 +413,13 @@ struct Widget_Guard { Widget_Guard(GtkWidget* widget) : data(widget) {} ~Widget_Guard() { WaitForCleanup(); +#if GTK_MAJOR_VERSION == 3 gtk_widget_destroy(data); +#elif GTK_MAJOR_VERSION == 4 + gtk_window_destroy(GTK_WINDOW(data)); +#else + UNSUPPORTED_ERROR(); +#endif WaitForCleanup(); } }; @@ -362,12 +477,20 @@ void FileActivatedSignalHandler(GtkButton* saveButton, void* userdata) { g_free(currentFileName); } +#if GTK_MAJOR_VERSION == 4 +void DialogResponseHandler(GtkDialog*, gint resp, gpointer out_resp_gp) { + gint* out_resp = static_cast(out_resp_gp); + *out_resp = resp; +} +#endif + // wrapper for gtk_dialog_run() that brings the dialog to the front // see issues at: // https://github.com/btzy/nativefiledialog-extended/issues/31 // https://github.com/mlabbe/nativefiledialog/pull/92 // https://github.com/guillaumechereau/noc/pull/11 gint RunDialogWithFocus(GtkDialog* dialog) { +#if GTK_MAJOR_VERSION == 3 #if defined(GDK_WINDOWING_X11) gtk_widget_show_all(GTK_WIDGET(dialog)); // show the dialog so that it gets a display if (GDK_IS_X11_DISPLAY(gtk_widget_get_display(GTK_WIDGET(dialog)))) { @@ -379,6 +502,24 @@ gint RunDialogWithFocus(GtkDialog* dialog) { } #endif return gtk_dialog_run(dialog); +#elif GTK_MAJOR_VERSION == 4 + // TODO: the X11 popup issues + + // technically we should do this, but it's no use because we don't have a GTK window to set as + // the transient parent: + // gtk_window_set_modal(GTK_WINDOW(dialog), TRUE); + + gtk_widget_show(GTK_WIDGET(dialog)); + gint resp = 0; + g_signal_connect(G_OBJECT(dialog), + "response", + G_CALLBACK(DialogResponseHandler), + static_cast(&resp)); + while (resp == 0) g_main_context_iteration(NULL, TRUE); + return resp; +#else + UNSUPPORTED_ERROR(); +#endif } } // namespace @@ -395,10 +536,24 @@ void NFD_ClearError(void) { nfdresult_t NFD_Init(void) { // Init GTK - if (!gtk_init_check(NULL, NULL)) { +#if GTK_MAJOR_VERSION == 3 + if (!gtk_init_check(NULL, NULL)) +#elif GTK_MAJOR_VERSION == 4 + if (!gtk_init_check()) +#else + UNSUPPORTED_ERROR(); +#endif + { NFDi_SetError("Failed to initialize GTK+ with gtk_init_check."); return NFD_ERROR; } +#if GTK_MAJOR_VERSION == 4 + // we need to give the program a name, so that GTK won't keep giving us warnings about recently + // used resources + if (!g_get_prgname()) { + g_set_prgname(program_invocation_short_name); + } +#endif return NFD_OKAY; } void NFD_Quit(void) { @@ -430,13 +585,12 @@ nfdresult_t NFD_OpenDialogN(nfdnchar_t** outPath, AddFiltersToDialog(GTK_FILE_CHOOSER(widget), filterList, filterCount); /* Set the default path */ - SetDefaultPath(GTK_FILE_CHOOSER(widget), defaultPath); + nfdresult_t res = SetDefaultPath(GTK_FILE_CHOOSER(widget), defaultPath); + if (res != NFD_OKAY) return res; if (RunDialogWithFocus(GTK_DIALOG(widget)) == GTK_RESPONSE_ACCEPT) { // write out the file name - *outPath = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget)); - - return NFD_OKAY; + return GetSingleFileNameForOpen(widget, outPath); } else { return NFD_CANCEL; } @@ -465,14 +619,12 @@ nfdresult_t NFD_OpenDialogMultipleN(const nfdpathset_t** outPaths, AddFiltersToDialog(GTK_FILE_CHOOSER(widget), filterList, filterCount); /* Set the default path */ - SetDefaultPath(GTK_FILE_CHOOSER(widget), defaultPath); + nfdresult_t res = SetDefaultPath(GTK_FILE_CHOOSER(widget), defaultPath); + if (res != NFD_OKAY) return res; if (RunDialogWithFocus(GTK_DIALOG(widget)) == GTK_RESPONSE_ACCEPT) { // write out the file name - GSList* fileList = gtk_file_chooser_get_filenames(GTK_FILE_CHOOSER(widget)); - - *outPaths = static_cast(fileList); - return NFD_OKAY; + return GetMultipleFileNamesForOpen(widget, outPaths); } else { return NFD_CANCEL; } @@ -495,8 +647,10 @@ nfdresult_t NFD_SaveDialogN(nfdnchar_t** outPath, GtkWidget* saveButton = gtk_dialog_add_button(GTK_DIALOG(widget), "_Save", GTK_RESPONSE_ACCEPT); - // Prompt on overwrite + // Prompt on overwrite (GTK3 only, because GTK4 automatically prompts) +#if GTK_MAJOR_VERSION == 3 gtk_file_chooser_set_do_overwrite_confirmation(GTK_FILE_CHOOSER(widget), TRUE); +#endif /* Build the filter list */ ButtonClickedArgs buttonClickedArgs; @@ -505,7 +659,8 @@ nfdresult_t NFD_SaveDialogN(nfdnchar_t** outPath, AddFiltersToDialogWithMap(GTK_FILE_CHOOSER(widget), filterList, filterCount); /* Set the default path */ - SetDefaultPath(GTK_FILE_CHOOSER(widget), defaultPath); + nfdresult_t res = SetDefaultPath(GTK_FILE_CHOOSER(widget), defaultPath); + if (res != NFD_OKAY) return res; /* Set the default file name */ SetDefaultName(GTK_FILE_CHOOSER(widget), defaultName); @@ -526,9 +681,7 @@ nfdresult_t NFD_SaveDialogN(nfdnchar_t** outPath, if (result == GTK_RESPONSE_ACCEPT) { // write out the file name - *outPath = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget)); - - return NFD_OKAY; + return GetSingleFileNameForSave(widget, outPath); } else { return NFD_CANCEL; } @@ -548,18 +701,20 @@ nfdresult_t NFD_PickFolderN(nfdnchar_t** outPath, const nfdnchar_t* defaultPath) Widget_Guard widgetGuard(widget); /* Set the default path */ - SetDefaultPath(GTK_FILE_CHOOSER(widget), defaultPath); + nfdresult_t res = SetDefaultPath(GTK_FILE_CHOOSER(widget), defaultPath); + if (res != NFD_OKAY) return res; if (RunDialogWithFocus(GTK_DIALOG(widget)) == GTK_RESPONSE_ACCEPT) { // write out the file name - *outPath = gtk_file_chooser_get_filename(GTK_FILE_CHOOSER(widget)); - - return NFD_OKAY; + // we don't support non-local files, so the behaviour is the same as the save dialog + return GetSingleFileNameForSave(widget, outPath); } else { return NFD_CANCEL; } } +#if GTK_MAJOR_VERSION == 3 + nfdresult_t NFD_PathSet_GetCount(const nfdpathset_t* pathSet, nfdpathsetsize_t* count) { assert(pathSet); // const_cast because methods on GSList aren't const, but it should act @@ -628,3 +783,69 @@ nfdresult_t NFD_PathSet_EnumNextN(nfdpathsetenum_t* enumerator, nfdnchar_t** out return NFD_OKAY; } + +#elif GTK_MAJOR_VERSION == 4 + +nfdresult_t NFD_PathSet_GetCount(const nfdpathset_t* pathSet, nfdpathsetsize_t* count) { + assert(pathSet); + // const_cast because methods on GSList aren't const, but it should act + // like const to the caller + GListModel* fileList = const_cast(static_cast(pathSet)); + + *count = g_list_model_get_n_items(fileList); + return NFD_OKAY; +} + +nfdresult_t NFD_PathSet_GetPathN(const nfdpathset_t* pathSet, + nfdpathsetsize_t index, + nfdnchar_t** outPath) { + assert(pathSet); + // const_cast because methods on GSList aren't const, but it should act + // like const to the caller + GListModel* fileList = const_cast(static_cast(pathSet)); + + return GetFileNameFromGFile(static_cast(g_list_model_get_item(fileList, index)), + outPath); +} + +void NFD_PathSet_FreePathN(const nfdnchar_t* filePath) { + assert(filePath); + // no-op, because GetFileNameFromGFile already frees it +} + +void NFD_PathSet_Free(const nfdpathset_t* pathSet) { + assert(pathSet); + // const_cast because methods on GSList aren't const, but it should act + // like const to the caller + GListModel* fileList = const_cast(static_cast(pathSet)); + + // free the path set memory + g_object_unref(fileList); +} + +nfdresult_t NFD_PathSet_GetEnum(const nfdpathset_t* pathSet, nfdpathsetenum_t* outEnumerator) { + // The enumeration is the GListModel with the current index + outEnumerator->ptr = const_cast(pathSet); + outEnumerator->next_index = 0; + + return NFD_OKAY; +} + +void NFD_PathSet_FreeEnum(nfdpathsetenum_t*) { + // Do nothing, because we didn't allocate any memory in the enum +} + +nfdresult_t NFD_PathSet_EnumNextN(nfdpathsetenum_t* enumerator, nfdnchar_t** outPath) { + GListModel* fileList = static_cast(enumerator->ptr); + + GFile* file = static_cast(g_list_model_get_item(fileList, enumerator->next_index)); + if (file) { + ++enumerator->next_index; + return GetFileNameFromGFile(file, outPath); + } else { + *outPath = nullptr; + return NFD_OKAY; + } +} + +#endif \ No newline at end of file