Remmina - The GTK+ Remote Desktop Client  v1.4.27
Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers in front of either large monitors or tiny netbooks. Remmina supports multiple network protocols in an integrated and consistent user interface. Currently RDP, VNC, NX, XDMCP and SSH are supported.
rmnews.h
Go to the documentation of this file.
1 /*
2  * Remmina - The GTK+ Remote Desktop Client
3  * Copyright (C) 2016-2022 Antenore Gatta, Giovanni Panozzo
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  *
20  * In addition, as a special exception, the copyright holders give
21  * permission to link the code of portions of this program with the
22  * OpenSSL library under certain conditions as described in each
23  * individual source file, and distribute linked combinations
24  * including the two.
25  * You must obey the GNU General Public License in all respects
26  * for all of the code used other than OpenSSL. * If you modify
27  * file(s) with this exception, you may extend this exception to your
28  * version of the file(s), but you are not obligated to do so. * If you
29  * do not wish to do so, delete this exception statement from your
30  * version. * If you delete this exception statement from all source
31  * files in the program, then also delete it here.
32  *
33  */
34 
35 typedef struct _RemminaNewsDialog {
36  GtkBuilder * builder;
37  GtkDialog * dialog;
38 
39  GtkTextView * rmnews_text_view;
40  GtkLabel * rmnews_label;
41  GtkButton * rmnews_button_close;
44  GtkSwitch * rmnews_news_switch;
45 
46  gint retval;
48 
49 #pragma once
50 
51 #include <gtk/gtk.h>
52 
53 G_BEGIN_DECLS
54 extern gboolean disablenews;
55 void rmnews_schedule();
56 void rmnews_show_news();
57 void rmnews_get_url(const char *url);
58 G_END_DECLS
void rmnews_show_news()
GtkLabel * rmnews_defaultcl_label
Definition: rmnews.h:42
G_BEGIN_DECLS gboolean disablenews
Definition: remmina.c:87
GtkButton * rmnews_button_close
Definition: rmnews.h:41
GtkDialog * dialog
Definition: rmnews.h:37
GtkTextView * rmnews_text_view
Definition: rmnews.h:39
void rmnews_get_url(const char *url)
Definition: rmnews.c:504
GtkSwitch * rmnews_news_switch
Definition: rmnews.h:44
GtkLabel * rmnews_label
Definition: rmnews.h:40
struct _RemminaNewsDialog RemminaNewsDialog
GtkBuilder * builder
Definition: rmnews.h:36
void rmnews_schedule()
Definition: rmnews.c:664
GtkButton * rmnews_defaultcl_button
Definition: rmnews.h:43