]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - libs/gtkutil/filechooser.cpp
freebsd: do not strip binaries when installing, that breaks them (truncated ELF file)
[xonotic/netradiant.git] / libs / gtkutil / filechooser.cpp
index d65d310ca567dc3eac3d47da95ccb6b946f37b56..2e7a921a11bf08431e86b8e09832e6fe5a461f5a 100644 (file)
 
 #include <list>
 #include <vector>
-#include <gtk/gtkwidget.h>
-#include <gtk/gtkwindow.h>
-#include <gtk/gtkfilechooser.h>
-#include <gtk/gtkfilechooserdialog.h>
-#include <gtk/gtkstock.h>
+#include <gtk/gtk.h>
+#include <uilib/uilib.h>
 
 #include "string/string.h"
 #include "stream/stringstream.h"
@@ -127,7 +124,7 @@ filetype_pair_t GetTypeForGTKMask( const char *mask ) const {
 
 static char g_file_dialog_file[1024];
 
-const char* file_dialog_show( GtkWidget* parent, bool open, const char* title, const char* path, const char* pattern, bool want_load, bool want_import, bool want_save ){
+const char* file_dialog_show( ui::Window parent, bool open, const char* title, const char* path, const char* pattern, bool want_load, bool want_import, bool want_save ){
        filetype_t type;
 
        if ( pattern == 0 ) {
@@ -143,28 +140,28 @@ const char* file_dialog_show( GtkWidget* parent, bool open, const char* title, c
                title = open ? "Open File" : "Save File";
        }
 
-       GtkWidget* dialog;
+       ui::Dialog dialog{ui::null};
        if ( open ) {
-               dialog = gtk_file_chooser_dialog_new( title,
-                                                                                         GTK_WINDOW( parent ),
+               dialog = ui::Dialog::from(gtk_file_chooser_dialog_new( title,
+                                                                                         parent,
                                                                                          GTK_FILE_CHOOSER_ACTION_OPEN,
                                                                                          GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
                                                                                          GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
-                                                                                         NULL );
+                                                                                         NULL ));
        }
        else
        {
-               dialog = gtk_file_chooser_dialog_new( title,
-                                                                                         GTK_WINDOW( parent ),
+               dialog = ui::Dialog::from(gtk_file_chooser_dialog_new( title,
+                                                                                         parent,
                                                                                          GTK_FILE_CHOOSER_ACTION_SAVE,
                                                                                          GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
                                                                                          GTK_STOCK_SAVE, GTK_RESPONSE_ACCEPT,
-                                                                                         NULL );
+                                                                                         NULL ));
                gtk_file_chooser_set_current_name( GTK_FILE_CHOOSER( dialog ), "unnamed" );
        }
 
-       gtk_window_set_modal( GTK_WINDOW( dialog ), TRUE );
-       gtk_window_set_position( GTK_WINDOW( dialog ), GTK_WIN_POS_CENTER_ON_PARENT );
+       gtk_window_set_modal( dialog, TRUE );
+       gtk_window_set_position( dialog, GTK_WIN_POS_CENTER_ON_PARENT );
 
        // we expect an actual path below, if the path is 0 we might crash
        if ( path != 0 && !string_empty( path ) ) {
@@ -233,7 +230,7 @@ const char* file_dialog_show( GtkWidget* parent, bool open, const char* title, c
                g_file_dialog_file[0] = '\0';
        }
 
-       gtk_widget_destroy( dialog );
+       ui::Widget(dialog).destroy();
 
        // don't return an empty filename
        if ( g_file_dialog_file[0] == '\0' ) {
@@ -243,16 +240,16 @@ const char* file_dialog_show( GtkWidget* parent, bool open, const char* title, c
        return g_file_dialog_file;
 }
 
-char* dir_dialog( GtkWidget* parent, const char* title, const char* path ){
-       GtkWidget* dialog = gtk_file_chooser_dialog_new( title,
-                                                                                                        GTK_WINDOW( parent ),
+char* dir_dialog( ui::Window parent, const char* title, const char* path ){
+       auto dialog = ui::Dialog::from(gtk_file_chooser_dialog_new( title,
+                                                                                                        parent,
                                                                                                         GTK_FILE_CHOOSER_ACTION_SELECT_FOLDER,
                                                                                                         GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
                                                                                                         GTK_STOCK_OPEN, GTK_RESPONSE_ACCEPT,
-                                                                                                        NULL );
+                                                                                                        NULL ));
 
-       gtk_window_set_modal( GTK_WINDOW( dialog ), TRUE );
-       gtk_window_set_position( GTK_WINDOW( dialog ), GTK_WIN_POS_CENTER_ON_PARENT );
+       gtk_window_set_modal( dialog, TRUE );
+       gtk_window_set_position( dialog, GTK_WIN_POS_CENTER_ON_PARENT );
 
        if ( !string_empty( path ) ) {
                gtk_file_chooser_set_current_folder( GTK_FILE_CHOOSER( dialog ), path );
@@ -263,20 +260,20 @@ char* dir_dialog( GtkWidget* parent, const char* title, const char* path ){
                filename = gtk_file_chooser_get_filename( GTK_FILE_CHOOSER( dialog ) );
        }
 
-       gtk_widget_destroy( dialog );
+       dialog.destroy();
 
        return filename;
 }
 
-const char* file_dialog( GtkWidget* parent, bool open, const char* title, const char* path, const char* pattern, bool want_load, bool want_import, bool want_save ){
+const char* file_dialog( ui::Window parent, bool open, const char* title, const char* path, const char* pattern, bool want_load, bool want_import, bool want_save ){
        for (;; )
        {
                const char* file = file_dialog_show( parent, open, title, path, pattern, want_load, want_import, want_save );
 
                if ( open
-                        || file == 0
+                        || !file
                         || !file_exists( file )
-                        || gtk_MessageBox( parent, "The file specified already exists.\nDo you want to replace it?", title, eMB_NOYES, eMB_ICONQUESTION ) == eIDYES ) {
+                        || ui::alert(parent, "The file specified already exists.\nDo you want to replace it?", title, ui::alert_type::NOYES, ui::alert_icon::Question ) == ui::alert_response::YES ) {
                        return file;
                }
        }