Home
last modified time | relevance | path

Searched refs:has_popup (Results 1 – 25 of 40) sorted by relevance

12

/dports/lang/swi-pl/swipl-8.2.3/packages/xpce/prolog/lib/dialog/
H A Dproto.pl160 attribute(create, button, has_popup).
161 attribute(create, button, popup_items(@arg1?has_popup == @on)).
166 attribute(create, label, has_popup).
167 attribute(create, label, popup_items(@arg1?has_popup == @on)).
212 attribute(create, list_browser, has_popup).
213 attribute(create, list_browser, popup_items(@arg1?has_popup == @on)).
218 attribute(create, editor, has_popup).
219 attribute(create, editor, popup_items(@arg1?has_popup == @on)).
/dports/audio/rhythmbox/rhythmbox-3.4.4/widgets/
H A Drb-search-entry.c67 gboolean has_popup; member
231 if (entry->priv->has_popup) { in rb_search_entry_constructed()
273 entry->priv->has_popup = g_value_get_boolean (value); in rb_search_entry_set_property()
291 g_value_set_boolean (value, entry->priv->has_popup); in rb_search_entry_get_property()
322 rb_search_entry_new (gboolean has_popup) in rb_search_entry_new() argument
328 "has-popup", has_popup, in rb_search_entry_new()
H A Drb-search-entry.h65 RBSearchEntry * rb_search_entry_new (gboolean has_popup);
/dports/graphics/atril-lite/atril-1.26.0/libdocument/
H A Dev-annotation.c634 gboolean has_popup; member
758 g_value_set_boolean (value, props->has_popup); in ev_annotation_markup_get_property()
855 return props->has_popup; in ev_annotation_markup_has_popup()
860 gboolean has_popup) in ev_annotation_markup_set_has_popup() argument
867 if (props->has_popup == has_popup) in ev_annotation_markup_set_has_popup()
870 props->has_popup = has_popup; in ev_annotation_markup_set_has_popup()
H A Dev-annotation.h140 gboolean has_popup);
/dports/graphics/atril/atril-1.26.0/libdocument/
H A Dev-annotation.c634 gboolean has_popup; member
758 g_value_set_boolean (value, props->has_popup); in ev_annotation_markup_get_property()
855 return props->has_popup; in ev_annotation_markup_has_popup()
860 gboolean has_popup) in ev_annotation_markup_set_has_popup() argument
867 if (props->has_popup == has_popup) in ev_annotation_markup_set_has_popup()
870 props->has_popup = has_popup; in ev_annotation_markup_set_has_popup()
H A Dev-annotation.h140 gboolean has_popup);
/dports/graphics/evince/evince-41.3/libdocument/
H A Dev-annotation.c743 gboolean has_popup; member
890 g_value_set_boolean (value, props->has_popup); in ev_annotation_markup_get_property()
999 return props->has_popup; in ev_annotation_markup_has_popup()
1004 gboolean has_popup) in ev_annotation_markup_set_has_popup() argument
1011 if (props->has_popup == has_popup) in ev_annotation_markup_set_has_popup()
1014 props->has_popup = has_popup; in ev_annotation_markup_set_has_popup()
H A Dev-annotation.h165 gboolean has_popup);
/dports/print/xreader/xreader-3.2.2/libdocument/
H A Dev-annotation.c741 gboolean has_popup; member
888 g_value_set_boolean (value, props->has_popup); in ev_annotation_markup_get_property()
997 return props->has_popup; in ev_annotation_markup_has_popup()
1002 gboolean has_popup) in ev_annotation_markup_set_has_popup() argument
1009 if (props->has_popup == has_popup) in ev_annotation_markup_set_has_popup()
1012 props->has_popup = has_popup; in ev_annotation_markup_set_has_popup()
H A Dev-annotation.h164 gboolean has_popup);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/accessibility/
H A Dax_enum_util.h133 AX_BASE_EXPORT const char* ToString(ax::mojom::HasPopup has_popup);
134 AX_BASE_EXPORT ax::mojom::HasPopup ParseHasPopup(const char* has_popup);
H A Dax_node_data.h175 void SetHasPopup(ax::mojom::HasPopup has_popup);
H A Dax_enum_util.cc2426 const char* ToString(ax::mojom::HasPopup has_popup) { in ToString() argument
2427 switch (has_popup) { in ToString()
2447 ax::mojom::HasPopup ParseHasPopup(const char* has_popup) { in ParseHasPopup() argument
2448 if (0 == strcmp(has_popup, "true")) in ParseHasPopup()
2450 if (0 == strcmp(has_popup, "menu")) in ParseHasPopup()
2452 if (0 == strcmp(has_popup, "listbox")) in ParseHasPopup()
2454 if (0 == strcmp(has_popup, "tree")) in ParseHasPopup()
2456 if (0 == strcmp(has_popup, "grid")) in ParseHasPopup()
2458 if (0 == strcmp(has_popup, "dialog")) in ParseHasPopup()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/modules/accessibility/
H A Dax_layout_object.cc1626 const AtomicString& has_popup = in HasPopup() local
1628 if (!has_popup.IsNull()) { in HasPopup()
1629 if (EqualIgnoringASCIICase(has_popup, "false")) in HasPopup()
1632 if (EqualIgnoringASCIICase(has_popup, "listbox")) in HasPopup()
1635 if (EqualIgnoringASCIICase(has_popup, "tree")) in HasPopup()
1638 if (EqualIgnoringASCIICase(has_popup, "grid")) in HasPopup()
1641 if (EqualIgnoringASCIICase(has_popup, "dialog")) in HasPopup()
1648 if (EqualIgnoringASCIICase(has_popup, "true") || in HasPopup()
1649 EqualIgnoringASCIICase(has_popup, "menu") || !has_popup.IsEmpty()) in HasPopup()
/dports/x11-toolkits/gtk40/gtk-4.4.1/gtk/
H A Dgtkmenubutton.c662 gboolean has_popup; in update_sensitivity() local
664 has_popup = self->popover != NULL || self->create_popup_func != NULL; in update_sensitivity()
666 gtk_widget_set_sensitive (self->button, has_popup); in update_sensitivity()
669 GTK_ACCESSIBLE_PROPERTY_HAS_POPUP, has_popup, in update_sensitivity()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/ui/views/accessibility/
H A Dview_accessibility.cc274 void ViewAccessibility::OverrideHasPopup(const ax::mojom::HasPopup has_popup) { in OverrideHasPopup() argument
275 custom_data_.SetHasPopup(has_popup); in OverrideHasPopup()
H A Dview_accessibility.h83 void OverrideHasPopup(const ax::mojom::HasPopup has_popup);
/dports/devel/simgear/simgear-2020.3.11/simgear/debug/
H A Dlogstream.hxx142 bool has_popup();
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/views/accessibility/
H A Dview_accessibility.h83 void OverrideHasPopup(const ax::mojom::HasPopup has_popup);
H A Dview_accessibility.cc299 void ViewAccessibility::OverrideHasPopup(const ax::mojom::HasPopup has_popup) { in OverrideHasPopup() argument
300 custom_data_.SetHasPopup(has_popup); in OverrideHasPopup()
/dports/www/chromium-legacy/chromium-88.0.4324.182/ui/accessibility/
H A Dax_enum_util.h107 AX_BASE_EXPORT const char* ToString(ax::mojom::HasPopup has_popup);
H A Dax_node_data.h185 void SetHasPopup(ax::mojom::HasPopup has_popup);
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/modules/accessibility/
H A Dax_node_object.cc2540 const AtomicString& has_popup = in HasPopup() local
2542 if (!has_popup.IsNull()) { in HasPopup()
2543 if (EqualIgnoringASCIICase(has_popup, "false")) in HasPopup()
2546 if (EqualIgnoringASCIICase(has_popup, "listbox")) in HasPopup()
2549 if (EqualIgnoringASCIICase(has_popup, "tree")) in HasPopup()
2552 if (EqualIgnoringASCIICase(has_popup, "grid")) in HasPopup()
2555 if (EqualIgnoringASCIICase(has_popup, "dialog")) in HasPopup()
2562 if (EqualIgnoringASCIICase(has_popup, "true") || in HasPopup()
2563 EqualIgnoringASCIICase(has_popup, "menu") || !has_popup.IsEmpty()) in HasPopup()
/dports/x11-toolkits/xmhtml/XmHTML-1.1.10/examples/
H A Dexample_2.c228 Boolean has_popup; /* do we have a popup menu? */ member
2195 if(!html_widgets[i].has_popup) in frameCB()
2200 html_widgets[i].has_popup = True; in frameCB()
2214 if(html_widgets[0].has_popup) in frameCB()
2220 html_widgets[0].has_popup = False; in frameCB()
2328 html_widgets[i].has_popup = False; in frameCB()
2336 if(!html_widgets[0].has_popup) in frameCB()
2343 html_widgets[0].has_popup = True; in frameCB()
6008 html_widgets[0].has_popup = True; in main()

12