ApplicationWindowProtocol
public protocol ApplicationWindowProtocol : ActionGroupProtocol, ActionMapProtocol, WindowProtocol
GtkApplicationWindow is a GtkWindow subclass that offers some
extra functionality for better integration with GtkApplication
features. Notably, it can handle both the application menu as well
as the menubar. See gtk_application_set_app_menu() and
gtk_application_set_menubar().
This class implements the GActionGroup and GActionMap interfaces,
to let you add window-specific actions that will be exported by the
associated GtkApplication, together with its application-wide
actions. Window-specific actions are prefixed with the “win.”
prefix and application-wide actions are prefixed with the “app.”
prefix. Actions must be addressed with the prefixed name when
referring to them from a GMenuModel.
Note that widgets that are placed inside a GtkApplicationWindow
can also activate these actions, if they implement the
GtkActionable interface.
As with GtkApplication, the GDK lock will be acquired when
processing actions arriving from other processes and should therefore
be held when activating actions locally (if GDK threads are enabled).
The settings GtkSettings:gtk-shell-shows-app-menu and
GtkSettings:gtk-shell-shows-menubar tell GTK+ whether the
desktop environment is showing the application menu and menubar
models outside the application as part of the desktop shell.
For instance, on OS X, both menus will be displayed remotely;
on Windows neither will be. gnome-shell (starting with version 3.4)
will display the application menu, but not the menubar.
If the desktop environment does not display the menubar, then
GtkApplicationWindow will automatically show a GtkMenuBar for it.
This behaviour can be overridden with the GtkApplicationWindow:show-menubar
property. If the desktop environment does not display the application
menu, then it will automatically be included in the menubar or in the
windows client-side decorations.
A GtkApplicationWindow with a menubar
(C Language Example):
GtkApplication *app = gtk_application_new ("org.gtk.test", 0);
GtkBuilder *builder = gtk_builder_new_from_string (
"<interface>"
" <menu id='menubar'>"
" <submenu label='_Edit'>"
" <item label='_Copy' action='win.copy'/>"
" <item label='_Paste' action='win.paste'/>"
" </submenu>"
" </menu>"
"</interface>",
-1);
GMenuModel *menubar = G_MENU_MODEL (gtk_builder_get_object (builder,
"menubar"));
gtk_application_set_menubar (GTK_APPLICATION (app), menubar);
g_object_unref (builder);
// ...
GtkWidget *window = gtk_application_window_new (app);
Handling fallback yourself
The XML format understood by GtkBuilder for GMenuModel consists
of a toplevel <menu> element, which contains one or more <item>
elements. Each <item> element contains <attribute> and <link>
elements with a mandatory name attribute. <link> elements have the
same content model as <menu>. Instead of <link name="submenu> or
<link name="section">, you can use <submenu> or <section>
elements.
Attribute values can be translated using gettext, like other GtkBuilder
content. <attribute> elements can be marked for translation with a
translatable="yes" attribute. It is also possible to specify message
context and translator comments, using the context and comments attributes.
To make use of this, the GtkBuilder must have been given the gettext
domain to use.
The following attributes are used when constructing menu items:
- “label”: a user-visible string to display
- “action”: the prefixed name of the action to trigger
- “target”: the parameter to use when activating the action
- “icon” and “verb-icon”: names of icons that may be displayed
- “submenu-action”: name of an action that may be used to determine if a submenu can be opened
- “hidden-when”: a string used to determine when the item will be hidden. Possible values include “action-disabled”, “action-missing”, “macos-menubar”.
The following attributes are used when constructing sections:
- “label”: a user-visible string to use as section heading
- “display-hint”: a string used to determine special formatting for the section. Possible values include “horizontal-buttons”.
- “text-direction”: a string used to determine the
GtkTextDirectionto use when “display-hint” is set to “horizontal-buttons”. Possible values include “rtl”, “ltr”, and “none”.
The following attributes are used when constructing submenus:
- “label”: a user-visible string to display
- “icon”: icon name to display
The ApplicationWindowProtocol protocol exposes the methods and properties of an underlying GtkApplicationWindow instance.
The default implementation of these can be found in the protocol extension below.
For a concrete class that implements these methods and properties, see ApplicationWindow.
Alternatively, use ApplicationWindowRef as a lighweight, unowned reference if you already have an instance you just want to use.
-
Untyped pointer to the underlying
GtkApplicationWindowinstance.Declaration
Swift
var ptr: UnsafeMutableRawPointer! { get } -
application_window_ptrDefault implementationTyped pointer to the underlying
GtkApplicationWindowinstance.Default Implementation
Return the stored, untyped pointer as a typed pointer to the
GtkApplicationWindowinstance.Declaration
Swift
var application_window_ptr: UnsafeMutablePointer<GtkApplicationWindow>! { get } -
Required Initialiser for types conforming to
ApplicationWindowProtocolDeclaration
Swift
init(raw: UnsafeMutableRawPointer)
-
bind(property:Extension methodto: _: flags: transformFrom: transformTo: ) Bind a
ApplicationWindowPropertyNamesource property to a given target object.Declaration
Swift
@discardableResult @inlinable func bind<Q, T>(property source_property: ApplicationWindowPropertyName, to target: T, _ target_property: Q, flags f: BindingFlags = .default, transformFrom transform_from: @escaping GLibObject.ValueTransformer = { $0.transform(destValue: $1) }, transformTo transform_to: @escaping GLibObject.ValueTransformer = { $0.transform(destValue: $1) }) -> BindingRef! where Q : PropertyNameProtocol, T : ObjectProtocolParameters
source_propertythe source property to bind
targetthe target object to bind to
target_propertythe target property to bind to
flagsthe flags to pass to the
Bindingtransform_fromValueTransformerto use for forward transformationtransform_toValueTransformerto use for backwards transformationReturn Value
binding reference or
nilin case of an error -
get(property:Extension method) Get the value of a ApplicationWindow property
Declaration
Swift
@inlinable func get(property: ApplicationWindowPropertyName) -> GLibObject.ValueParameters
propertythe property to get the value for
Return Value
the value of the named property
-
set(property:Extension methodvalue: ) Set the value of a ApplicationWindow property. Note that this will only have an effect on properties that are writable and not construct-only!
Declaration
Swift
@inlinable func set(property: ApplicationWindowPropertyName, value v: GLibObject.Value)Parameters
propertythe property to get the value for
Return Value
the value of the named property
-
getHelpOverlay()Extension methodGets the
GtkShortcutsWindowthat has been set up with a prior call togtk_application_window_set_help_overlay().Declaration
Swift
@inlinable func getHelpOverlay() -> ShortcutsWindowRef! -
getID()Extension methodReturns the unique ID of the window. If the window has not yet been added to a
GtkApplication, returns0.Declaration
Swift
@inlinable func getID() -> Int -
getShowMenubar()Extension methodReturns whether the window will display a menubar for the app menu and menubar as needed.
Declaration
Swift
@inlinable func getShowMenubar() -> Bool -
set(helpOverlay:Extension method) Associates a shortcuts window with the application window, and sets up an action with the name win.show-help-overlay to present it.
windowtakes resposibility for destroyinghelp_overlay.Declaration
Swift
@inlinable func set(helpOverlay: ShortcutsWindowRef? = nil) -
set(helpOverlay:Extension method) Associates a shortcuts window with the application window, and sets up an action with the name win.show-help-overlay to present it.
windowtakes resposibility for destroyinghelp_overlay.Declaration
Swift
@inlinable func set<ShortcutsWindowT>(helpOverlay: ShortcutsWindowT?) where ShortcutsWindowT : ShortcutsWindowProtocol -
set(showMenubar:Extension method) Sets whether the window will display a menubar for the app menu and menubar as needed.
Declaration
Swift
@inlinable func set(showMenubar: Bool) -
helpOverlayExtension methodGets the
GtkShortcutsWindowthat has been set up with a prior call togtk_application_window_set_help_overlay().Declaration
Swift
@inlinable var helpOverlay: ShortcutsWindowRef! { get nonmutating set } -
idExtension methodReturns the unique ID of the window. If the window has not yet been added to a
GtkApplication, returns0.Declaration
Swift
@inlinable var id: Int { get } -
showMenubarExtension methodReturns whether the window will display a menubar for the app menu and menubar as needed.
Declaration
Swift
@inlinable var showMenubar: Bool { get nonmutating set } -
parentInstanceExtension methodUndocumented
Declaration
Swift
@inlinable var parentInstance: GtkWindow { get }
View on GitHub
Install in Dash
ApplicationWindowProtocol Protocol Reference