summaryrefslogtreecommitdiffstats
path: root/src/remmina_main.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 17:06:32 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 17:06:32 +0000
commit2dad5357405ad33cfa792f04b3ab62a5d188841e (patch)
treeb8f8893942060fe3cfb04ac374cda96fdfc8f453 /src/remmina_main.h
parentInitial commit. (diff)
downloadremmina-2dad5357405ad33cfa792f04b3ab62a5d188841e.tar.xz
remmina-2dad5357405ad33cfa792f04b3ab62a5d188841e.zip
Adding upstream version 1.4.34+dfsg.upstream/1.4.34+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/remmina_main.h')
-rw-r--r--src/remmina_main.h146
1 files changed, 146 insertions, 0 deletions
diff --git a/src/remmina_main.h b/src/remmina_main.h
new file mode 100644
index 0000000..f112b77
--- /dev/null
+++ b/src/remmina_main.h
@@ -0,0 +1,146 @@
+/*
+ * Remmina - The GTK+ Remote Desktop Client
+ * Copyright (C) 2009-2011 Vic Lee
+ * Copyright (C) 2014-2015 Antenore Gatta, Fabio Castelli, Giovanni Panozzo
+ * Copyright (C) 2016-2022 Antenore Gatta, Giovanni Panozzo
+ * Copyright (C) 2022-2023 Antenore Gatta, Giovanni Panozzo, Hiroyuki Tanaka
+ * Copyright (C) 2023-2024 Hiroyuki Tanaka, Sunil Bhat
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ * In addition, as a special exception, the copyright holders give
+ * permission to link the code of portions of this program with the
+ * OpenSSL library under certain conditions as described in each
+ * individual source file, and distribute linked combinations
+ * including the two.
+ * You must obey the GNU General Public License in all respects
+ * for all of the code used other than OpenSSL. * If you modify
+ * file(s) with this exception, you may extend this exception to your
+ * version of the file(s), but you are not obligated to do so. * If you
+ * do not wish to do so, delete this exception statement from your
+ * version. * If you delete this exception statement from all source
+ * files in the program, then also delete it here.
+ *
+ */
+
+#pragma once
+
+#include "remmina_file.h"
+#include "remmina_monitor.h"
+#include <gtk/gtk.h>
+
+#include "remmina_string_array.h"
+
+typedef struct _RemminaMainPriv RemminaMainPriv;
+
+typedef struct _RemminaMain {
+ GtkBuilder * builder;
+ GtkWindow * window;
+ /* Menu widgets */
+ GtkMenu * menu_popup;
+ GtkMenuButton * menu_header_button;
+ GtkMenu * menu_popup_full;
+ GtkMenu * menu_popup_delete_rc;
+ GtkRadioMenuItem * menuitem_view_mode_list;
+ GtkRadioMenuItem * menuitem_view_mode_tree;
+ GtkMenuItem * menuitem_connection_quit;
+ /* Button new */
+ GtkButton * button_new;
+ GtkButton * button_make_default;
+ /* Search bar objects */
+ GtkToggleButton * search_toggle;
+ GtkSwitch * switch_dark_mode;
+ GtkToggleButton * view_toggle_button;
+ GtkToggleButton * ustats_toggle;
+ GtkSearchBar * search_bar;
+ /* Quick connect objects */
+ GtkBox * box_quick_connect;
+ GtkComboBoxText * combo_quick_connect_protocol;
+ GtkEntry * entry_quick_connect_server;
+ GtkButton * button_quick_connect;
+ /* Other widgets */
+ GtkTreeView * tree_files_list;
+ GtkTreeViewColumn * column_files_list_name;
+ GtkTreeViewColumn * column_files_list_group;
+ GtkTreeViewColumn * column_files_list_server;
+ GtkTreeViewColumn * column_files_list_plugin;
+ GtkTreeViewColumn * column_files_list_date;
+ GtkTreeViewColumn * column_files_list_notes;
+ GtkStatusbar * statusbar_main;
+ GtkWidget * network_icon;
+ /* Non widget objects */
+ GtkAccelGroup * accelgroup_shortcuts;
+ RemminaMainPriv * priv;
+ RemminaMonitor * monitor;
+} RemminaMain;
+
+struct _RemminaMainPriv {
+ GtkTreeModel * file_model;
+ GtkTreeModel * file_model_filter;
+ GtkTreeModel * file_model_sort;
+
+ gboolean initialized;
+
+ gchar * selected_filename;
+ gchar * selected_name;
+ gboolean override_view_file_mode_to_list;
+ RemminaStringArray * expanded_group;
+};
+
+G_BEGIN_DECLS
+
+/* Create the remminamain struct and the remmina main Remmina window */
+GtkWidget *remmina_main_new(void);
+/* Get the current main GTK window or NULL if not initialized */
+GtkWindow *remmina_main_get_window(void);
+
+void remmina_main_update_file_datetime(RemminaFile *file);
+
+void remmina_main_destroy(void);
+void remmina_main_on_destroy_event(void);
+void remmina_main_save_before_destroy(void);
+
+void remmina_main_show_dialog(GtkMessageType msg, GtkButtonsType buttons, const gchar* message);
+void remmina_main_show_warning_dialog(const gchar *message);
+void remmina_main_on_action_application_about(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_application_bug_report(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_application_default(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_application_mpchange(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_application_plugins(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_application_dark_theme(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_application_preferences(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_application_quit(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_connection_connect(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_connection_copy(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_connection_delete(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_connection_delete_multiple(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_connection_edit(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_connection_external_tools(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_connection_new(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_help_community(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_help_debug(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_help_donations(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_help_homepage(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_help_wiki(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_tools_export(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_tools_import(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_expand(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_collapse(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_on_action_search_toggle(GSimpleAction *action, GVariant *param, gpointer data);
+void remmina_main_toggle_password_view(GtkWidget *widget, gpointer data);
+void remmina_main_reload_preferences();
+
+G_END_DECLS