2011-11-30 14:34:29 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2011 Canonical Limited
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the licence, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2011-11-30 14:34:29 +00:00
|
|
|
*
|
|
|
|
* Author: Ryan Lortie <desrt@desrt.ca>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GTK_APPLICATION_WINDOW_H__
|
|
|
|
#define __GTK_APPLICATION_WINDOW_H__
|
|
|
|
|
2014-10-01 04:49:59 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2011-11-30 14:34:29 +00:00
|
|
|
#include <gtk/gtkwindow.h>
|
2015-10-21 04:11:59 +00:00
|
|
|
#include <gtk/gtkshortcutswindow.h>
|
2011-11-30 14:34:29 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2011-12-01 05:21:11 +00:00
|
|
|
#define GTK_TYPE_APPLICATION_WINDOW (gtk_application_window_get_type ())
|
|
|
|
#define GTK_APPLICATION_WINDOW(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
|
|
|
|
GTK_TYPE_APPLICATION_WINDOW, GtkApplicationWindow))
|
|
|
|
#define GTK_APPLICATION_WINDOW_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
|
|
|
|
GTK_TYPE_APPLICATION_WINDOW, GtkApplicationWindowClass))
|
|
|
|
#define GTK_IS_APPLICATION_WINDOW(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
|
|
|
|
GTK_TYPE_APPLICATION_WINDOW))
|
|
|
|
#define GTK_IS_APPLICATION_WINDOW_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
|
|
|
|
GTK_TYPE_APPLICATION_WINDOW))
|
|
|
|
#define GTK_APPLICATION_WINDOW_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
|
|
|
|
GTK_TYPE_APPLICATION_WINDOW, GtkApplicationWindowClass))
|
2011-11-30 14:34:29 +00:00
|
|
|
|
2011-12-01 05:21:11 +00:00
|
|
|
typedef struct _GtkApplicationWindowClass GtkApplicationWindowClass;
|
|
|
|
typedef struct _GtkApplicationWindow GtkApplicationWindow;
|
2011-11-30 14:34:29 +00:00
|
|
|
|
|
|
|
struct _GtkApplicationWindow
|
|
|
|
{
|
|
|
|
GtkWindow parent_instance;
|
|
|
|
};
|
|
|
|
|
2014-01-17 20:17:45 +00:00
|
|
|
/**
|
|
|
|
* GtkApplicationWindowClass:
|
|
|
|
* @parent_class: The parent class.
|
|
|
|
*/
|
2011-11-30 14:34:29 +00:00
|
|
|
struct _GtkApplicationWindowClass
|
|
|
|
{
|
|
|
|
GtkWindowClass parent_class;
|
|
|
|
|
|
|
|
/*< private >*/
|
2019-05-19 15:41:12 +00:00
|
|
|
gpointer padding[8];
|
2011-11-30 14:34:29 +00:00
|
|
|
};
|
|
|
|
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-12-01 05:21:11 +00:00
|
|
|
GType gtk_application_window_get_type (void) G_GNUC_CONST;
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-12-04 23:33:01 +00:00
|
|
|
GtkWidget * gtk_application_window_new (GtkApplication *application);
|
2011-11-30 14:34:29 +00:00
|
|
|
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-12-01 22:47:34 +00:00
|
|
|
void gtk_application_window_set_show_menubar (GtkApplicationWindow *window,
|
2011-12-05 22:41:44 +00:00
|
|
|
gboolean show_menubar);
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-12-01 22:47:34 +00:00
|
|
|
gboolean gtk_application_window_get_show_menubar (GtkApplicationWindow *window);
|
2011-11-30 14:34:29 +00:00
|
|
|
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2012-04-20 17:29:11 +00:00
|
|
|
guint gtk_application_window_get_id (GtkApplicationWindow *window);
|
|
|
|
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2015-10-21 04:11:59 +00:00
|
|
|
void gtk_application_window_set_help_overlay (GtkApplicationWindow *window,
|
|
|
|
GtkShortcutsWindow *help_overlay);
|
2018-02-05 19:13:20 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2015-10-21 04:11:59 +00:00
|
|
|
GtkShortcutsWindow *
|
|
|
|
gtk_application_window_get_help_overlay (GtkApplicationWindow *window);
|
|
|
|
|
2011-11-30 14:34:29 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_APPLICATION_WINDOW_H__ */
|