/* * vinagre-window-private.h * This file is part of vinagre * * Copyright (C) 2007 - Jonh Wendell * * 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 * MERCHANWINDOWILITY 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, see . */ #ifndef __VINAGRE_WINDOW_PRIVATE_H__ #define __VINAGRE_WINDOW_PRIVATE_H__ #include "vinagre-window.h" #include "vinagre-connection.h" G_BEGIN_DECLS /* WindowPrivate is in a separate .h so that we can access it from vinagre-commands */ struct _VinagreWindowPrivate { GtkWidget *notebook; GtkWidget *fav_panel; GtkWidget *statusbar; guint generic_message_cid; guint tip_message_cid; GtkWidget *hpaned; /* Menus & Toolbars */ GtkUIManager *manager; GtkActionGroup *action_group; GtkActionGroup *always_sensitive_action_group; GtkActionGroup *machine_connected_action_group; GtkActionGroup *bookmarks_list_action_group; GtkActionGroup *recent_action_group; GtkAction *recent_action; guint bookmarks_list_menu_ui_id; guint recents_menu_ui_id; GtkWidget *toolbar; GtkWidget *menubar; GtkWidget *active_tab; VinagreConnection *fav_conn_selected; gint width; gint height; GdkWindowState window_state; gint side_panel_size; gboolean fullscreen; gboolean toolbar_visible; gboolean statusbar_visible; gboolean fav_panel_visible; gulong signal_notebook; gint machines_connected; }; G_END_DECLS #endif /* __VINAGRE_WINDOW_PRIVATE_H__ */ /* vim: ts=8 */