summaryrefslogtreecommitdiff
path: root/gtk/gtkmenutrackeritem.h
Commit message (Collapse)AuthorAgeFilesLines
* menusectionbox: add support for "text-direction" attributeChristian Hergert2016-10-131-0/+2
| | | | | | | | | | | This allows the use of a "text-direction" hint set to one of "none", "rtl", or "ltr" to enforce the text direction of a "horizontal-buttons" display-hint. This is useful when a menu has buttons that map to physical space in the UI and therefore must match the application widgetry. https://bugzilla.gnome.org/show_bug.cgi?id=772775
* GtkMenuTracker: add hidden-when='macos-menubar'Ryan Lortie2014-12-221-0/+1
| | | | | | | | | | | | | | | | Provide a mechanism for hiding the "Quit", "About" and "Preferences" menu items from the normal places in a traditional menubar layout (in the File and Edit menus) when the menu is being rendered in the Mac OS menubar. These items can already be found in the application menu. With this feature, applications can now define a single menu to use in all 'traditional' scenarios. Use this new attribute in Bloatpad. https://bugzilla.gnome.org/show_bug.cgi?id=741610
* GtkMenuTrackerItem: Add support for display-hintMatthias Clasen2014-04-281-0/+2
| | | | This commit adds a getter for the display-hint attribute.
* GtkMenuTrackerItem: Add support for verb-iconsMatthias Clasen2014-04-281-0/+2
| | | | | | | | When rendering iconic sections, we want to use icons for verbs, and we want to differentiate these in the menu model, to keep the icon attribute reserved for nouns. https://bugzilla.gnome.org/show_bug.cgi?id=727477
* GtkMenuTracker: don't specialise "submenu" linkRyan Lortie2014-04-281-3/+5
| | | | | | | | | We have some API in GtkMenuTracker and GtkMenuTrackerItem that is specifically designed to deal with submenus. Generalise these APIs to take a 'link_name' parameter that we always give as G_MENU_SUBMENU for now. In the future, this will allow creating trackers for other types of links, such as sections.
* GtkMenuTracker: make "is-visible" a propertyRyan Lortie2014-04-281-2/+2
| | | | | | Make this a property just like all of the other things and make the APIs for accessing it non-private (but add a note that they are not intended to be used).
* GtkMenuTracker: remove "visible" propertyRyan Lortie2014-04-281-2/+0
| | | | | This is in conflict with the "is-visible" pseudo-property which is about to be promoted to being an actual property.
* GtkMenuTracker: add 'special' itemsRyan Lortie2014-01-171-0/+2
| | | | | | | | | | Allow the possibility for items to be marked with a special attribute and expose this via GtkTrackerMenuItem. For internal use only. We will use this to implement the special 'Hide', 'Hide Others' and 'Show All' items and the 'Services' submenu in the Mac OS application menu. https://bugzilla.gnome.org/show_bug.cgi?id=720552
* GtkMenuTrackerItem: add an internal 'visible' flagRyan Lortie2014-01-081-0/+4
| | | | | | | | | | | | | Add an internal API for checking if a GtkMenuTrackerItem is visible, along with a signal for reporting changes in that flag. The item will become invisible in situations according to the new hidden-when='' attribute, which can be set to 'action-disabled' or 'action-missing'. This new flag doesn't actually do anything yet, and none of the consumers of GtkMenuTracker do anything with it (nor should they). A followup patch will address the issue. https://bugzilla.gnome.org/show_bug.cgi?id=688421
* add GtkMenuTrackerItemRyan Lortie2013-05-131-0/+84
Add a new class, GtkMenuTrackerItem that represents a menu item, to be used with GtkMenuTracker. GtkMenuTracker's insert callback now works in terms of this new type (instead of passing reference to the model and an index to the item). GtkMenuShell now handles all of the binding tasks internally, mostly through the use of property bindings. Having bindings for the label and visibility attributes, in partiular, will help with supporting upcoming extensions to GMenuModel. GtkModelMenu has been reduced to a helper class that has nothing to do with GMenuModel. It represents something closer to an "ideal" API for GtkMenuItem if we didn't have compatibility concerns (eg: not emitting "activate" when setting toggle state, no separate subclasses per menu item type, supporting icons, etc.) Improvements to GtkMenuItem could eventually shrink the size of this class or remove the need for it entirely. Some GtkActionHelper functionality has been duplicated in GtkMenuTracker, which is suboptimal. The duplication exists so that other codebases (such as Unity and gnome-shell) can reuse the GtkMenuTracker code, whereas GtkActionHelper is very much tied to GtkWidget. Supporting binding arbitrary GtkWidgets to actions vs. supporting the full range of GMenuModel features for menu items turns out to be two overlapping but not entirely similar problems. Some of the duplication (such as roles) can be removed from GtkActionHelper once Gtk's internal Mac OS menubar support is ported to GtkMenuTracker. The intent to reuse the code outside of Gtk is also the reason for the unusual treatment of the enum type introduced in this comment. This adds no new "public" API to the Gtk library, other than types that we cannot make private due to GType limitations.