Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntenore Gatta (tmow) <antenore@simbiosi.org>2021-02-04 01:24:17 +0300
committerAntenore Gatta (tmow) <antenore@simbiosi.org>2021-02-04 01:24:17 +0300
commite7382e18dfdfab05fa95b94f716a2c97bd8295e5 (patch)
treef4784b5cca0d60c1d64f7dfa826f293676857e5d /src/remmina_pref_dialog.h
parente46b8c1d09d129ab22af2de17fd98e9ba72a413f (diff)
Multi monitor support
- Monitor detections - Custom monitor layout - Toolbar button and keyboard shortcut - Full screen on all monitors if multi monitor enabled
Diffstat (limited to 'src/remmina_pref_dialog.h')
-rw-r--r--src/remmina_pref_dialog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/remmina_pref_dialog.h b/src/remmina_pref_dialog.h
index 18319c629..87bb48173 100644
--- a/src/remmina_pref_dialog.h
+++ b/src/remmina_pref_dialog.h
@@ -34,6 +34,7 @@
*/
#pragma once
+#include <gtk/gtk.h>
/*
* Remmina Preferences Dialog
@@ -95,6 +96,7 @@ typedef struct _RemminaPrefDialog {
GtkButton * button_keyboard_switch_tab_left;
GtkButton * button_keyboard_switch_tab_right;
GtkButton * button_keyboard_scaled;
+ GtkButton * button_keyboard_multimon;
GtkButton * button_keyboard_grab_keyboard;
GtkButton * button_keyboard_screenshot;
GtkButton * button_keyboard_viewonly;
@@ -156,5 +158,6 @@ GtkDialog *remmina_pref_dialog_new(gint default_tab, GtkWindow *parent);
/* Get the current PrefDialog or NULL if not initialized */
GtkDialog *remmina_pref_dialog_get_dialog(void);
void remmina_prefdiag_unlock_repwd_on_changed(GtkEditable *editable, RemminaPrefDialog *dialog);
+void remmina_pref_dialog_on_action_close(GSimpleAction *action, GVariant *param, gpointer data);
G_END_DECLS