plugins: Add GTK3 support
This commit is contained in:
@@ -169,8 +169,12 @@ pluma_file_browser_utils_confirmation_dialog (PlumaWindow * window,
|
||||
/* Add a cancel button */
|
||||
button = gtk_button_new_from_stock (GTK_STOCK_CANCEL);
|
||||
gtk_widget_show (button);
|
||||
|
||||
|
||||
#if GTK_CHECK_VERSION (3, 0, 0)
|
||||
gtk_widget_set_can_default (button, TRUE);
|
||||
#else
|
||||
GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
|
||||
#endif
|
||||
gtk_dialog_add_action_widget (GTK_DIALOG (dlg),
|
||||
button,
|
||||
GTK_RESPONSE_CANCEL);
|
||||
@@ -184,7 +188,11 @@ pluma_file_browser_utils_confirmation_dialog (PlumaWindow * window,
|
||||
}
|
||||
|
||||
gtk_widget_show (button);
|
||||
#if GTK_CHECK_VERSION (3, 0, 0)
|
||||
gtk_widget_set_can_default (button, TRUE);
|
||||
#else
|
||||
GTK_WIDGET_SET_FLAGS (button, GTK_CAN_DEFAULT);
|
||||
#endif
|
||||
gtk_dialog_add_action_widget (GTK_DIALOG (dlg),
|
||||
button,
|
||||
GTK_RESPONSE_OK);
|
||||
|
@@ -22,7 +22,11 @@
|
||||
#include <string.h>
|
||||
#include <gio/gio.h>
|
||||
#include <pluma/pluma-plugin.h>
|
||||
#include <gtk/gtk.h>
|
||||
#include <gdk/gdkkeysyms.h>
|
||||
#if GTK_CHECK_VERSION (3, 0, 0)
|
||||
#include <gdk/gdkkeysyms-compat.h>
|
||||
#endif
|
||||
|
||||
#include "pluma-file-browser-store.h"
|
||||
#include "pluma-file-bookmarks-store.h"
|
||||
|
@@ -28,7 +28,11 @@
|
||||
#include <string.h>
|
||||
#include <glib.h>
|
||||
#include <glib/gi18n-lib.h>
|
||||
#include <gtk/gtk.h>
|
||||
#include <gdk/gdkkeysyms.h>
|
||||
#if GTK_CHECK_VERSION (3, 0, 0)
|
||||
#include <gdk/gdkkeysyms-compat.h>
|
||||
#endif
|
||||
#include <pluma/pluma-utils.h>
|
||||
#include <pluma/pluma-plugin.h>
|
||||
|
||||
|
Reference in New Issue
Block a user