summaryrefslogtreecommitdiff
path: root/gtk/gtkapplicationwindow.h
Commit message (Collapse)AuthorAgeFilesLines
* Convert headers to #pragma onceMatthias Clasen2023-03-311-3/+1
| | | | The conversion was done by guard2one.
* gtk: Dissolve gtk-autocleanup.hMatthias Clasen2022-09-231-0/+2
| | | | | Move the autocleanup declarations into their respective headers.
* application window: Drop the priv pointerMatthias Clasen2019-05-191-4/+0
|
* Padding reviewMatthias Clasen2019-05-191-1/+1
| | | | | | | | | | | | | | | Ensure that the class structs of all subclassable types have sufficient padding (standardizing on 8 slots, here). GtkApplication GtkWidget GtkContainer GtkWindow GtkDialog GtkApplicationWindow GtkToolItem GtkBin
* The big versioning cleanupMatthias Clasen2018-02-061-7/+7
| | | | | | | Remove all the old 2.x and 3.x version annotations. GTK+ 4 is a new start, and from the perspective of a GTK+ 4 developer all these APIs have been around since the beginning.
* Add automatic help overlay support to GtkApplicationMatthias Clasen2015-10-211-0/+8
| | | | | | | When the $(resource_prefix)/gtk/help-overlay.ui resource exists, load a GtkShortcutsWindow from it for each GtkApplicationWindow, and set up a win.show-help-overlay action with accels <Primary>F1 and <Primary>? to show it.
* Add a few missing include guardsMatthias Clasen2014-10-011-0/+4
|
* docs: add Gtk*Class docsWilliam Jon McCann2014-01-201-0/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=81006
* application: Add unique IDs for GtkApplicationWindowChristian Persch2012-05-031-0/+3
| | | | | | This will allow to refer to specific GtkApplicationWindows remotely by ID. https://bugzilla.gnome.org/show_bug.cgi?id=674409
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* gtk: Use versioned deprecationsMatthias Clasen2012-02-271-0/+4
| | | | | | | This patch changes all uses of GDK_DEPRECATED(_FOR) in gtk headers by the versioned variants, GDK_DEPRECATED_IN_3_x(_FOR). At the same time, we add GDK_AVAILABLE_IN_3_x annotations for all API additions in 3.2 and 3.4.
* Fix a gtk-doc warningMatthias Clasen2011-12-191-1/+1
|
* Whitespace fixMatthias Clasen2011-12-191-2/+2
|
* GtkApplicationWindow: Further sanitize handling of merging app menu and menubarColin Walters2011-12-191-5/+3
| | | | | | | The _set_show_app_menu should really be _set_show_menubar(). Also, correctly display just the window menu in the window when run under GNOME 3.
* Whitespace fixesMatthias Clasen2011-12-191-20/+20
|
* GtkApplicationWindow: implement GActionMapRyan Lortie2011-12-191-3/+0
|
* add GtkApplicationWindowRyan Lortie2011-12-191-0/+75
This is a GtkWindow subclass that "application windows" will use. Each is associated with a GtkApplication, has the ability to show menus and will have its own associated set of actions.