Searched refs:tooltip (Results 1 - 25 of 32) sorted by relevance

12

/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/modules/tooltip/
H A DpkgIndex.tcl3 package ifneeded tooltip 1.4.4 [list source [file join $dir tooltip.tcl]]
H A Dtooltip.tcl0 # tooltip.tcl --
10 # RCS: @(#) $Id: tooltip.tcl,v 1.16 2008/12/01 23:37:16 hobbs Exp $
20 # tooltip::tooltip
23 # Implements a tooltip (balloon help) system
26 # tooltip <option> ?arg?
44 # numerical index or the label) to associate the tooltip message with.
50 # If message is {}, then the tooltip for that widget is removed.
51 # The widget must exist prior to calling tooltip. The current
52 # tooltip messag
[all...]
H A Dtipstack.tcl3 # Based on 'tooltip', provides a dynamic stack of tip texts per
19 package require tooltip
52 # Forward to standard tooltip package.
54 eval [linsert [linsert $wref end $text] 0 tooltip::tooltip]
89 # Forward to standard tooltip package.
91 eval [linsert [linsert $wref end $text] 0 tooltip::tooltip]
111 eval [linsert [linsert $wref end ""] 0 tooltip::tooltip]
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dtooltip.el0 ;;; tooltip.el --- show tooltip windows
32 (defgroup tooltip nil function
33 "Customization group for the `tooltip' package."
44 (define-minor-mode tooltip-mode
49 \(However, if `tooltip-use-echo-area' is non-nil, this and
60 :group 'tooltip
61 (unless (or (null tooltip-mode) (fboundp 'x-show-tip))
63 (if tooltip-mode
65 (add-hook 'pre-command-hook 'tooltip
131 (defface tooltip function
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DDefaultDashboardView.js34 tooltip: WebInspector.UIString("Total number of resources, click to show the Resources navigation sidebar"),
38 tooltip: WebInspector.UIString("Total size of all resources, click to show the Network Requests timeline"),
42 tooltip: WebInspector.UIString("Time until the load event fired, click to show the Network Requests timeline"),
46 tooltip: WebInspector.UIString("Console logs, click to show the Console"),
50 tooltip: WebInspector.UIString("Console errors, click to show the Console"),
54 tooltip: WebInspector.UIString("Console warnings, click to show the Console"),
102 item.container.title = item.tooltip;
H A DScriptTreeElement.js39 this.tooltip = script.url;
H A DDebuggerDashboardView.js41 var tooltip = WebInspector.UIString("Continue script execution (%s or %s)").format(WebInspector.debuggerSidebarPanel.pauseOrResumeKeyboardShortcut.displayName, WebInspector.debuggerSidebarPanel.pauseOrResumeAlternateKeyboardShortcut.displayName); variable
42 this._debuggerResumeButtonItem = new WebInspector.ActivateButtonNavigationItem("debugger-dashboard-pause", tooltip, tooltip, resumeImage.src, resumeImage.width, resumeImage.height, true);
H A DResourceTreeElement.js180 this.tooltip = this._resource.url;
H A DFrameTreeElement.js140 var tooltip = WebInspector.UIString("Reload page (%s)\nReload ignoring cache (%s)").format(WebInspector._reloadPageKeyboardShortcut.displayName, WebInspector._reloadPageIgnoringCacheKeyboardShortcut.displayName);
141 wrappedSVGDocument(platformImagePath("Reload.svg"), null, tooltip, function(element) {
H A DTimelineSidebarPanel.js107 const tooltip = WebInspector.UIString("Close %s timeline view").format(label);
108 wrappedSVGDocument(platformImagePath("CloseLarge.svg"), WebInspector.TimelineSidebarPanel.CloseButtonStyleClass, tooltip, function(element) {
H A DBreakpointTreeElement.js155 this.tooltip = this.mainTitle + " \u2014 " + WebInspector.UIString("originally %s").format(sourceCodeLocation.originalLocationString());
H A DGeneralTreeElement.js367 // Set a default tooltip if there isn't a custom one already assigned.
368 if (!this.tooltip && !this._tooltipHandledSeparately) {
H A DDOMTreeOutline.js312 if (element.representedObject && !element.tooltip && element._createTooltipForNode)
H A DDOMTreeElement.js200 this.tooltip = WebInspector.UIString("%d \xd7 %d pixels").format(offsetWidth, offsetHeight);
202 this.tooltip = WebInspector.UIString("%d \xd7 %d pixels (Natural: %d \xd7 %d pixels)").format(offsetWidth, offsetHeight, naturalWidth, naturalHeight);
H A DTreeOutline.js564 get tooltip() {
568 set tooltip(x) {
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/CoordinatedGraphics/
H A DWebViewClient.cpp111 void WebViewClient::didChangeTooltip(WebView* view, const String& tooltip) argument
116 m_client.didChangeTooltip(toAPI(view), adoptWK(toCopiedAPI(tooltip)).get(), m_client.base.clientInfo);
H A DWebViewClient.h66 void didChangeTooltip(WebView*, const String& tooltip);
/macosx-10.10.1/tcl-105/tcl_ext/tklib/tklib/support/installation/
H A Dmodules.tcl55 Module tooltip _tcl _man _null
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/efl/
H A DViewClientEfl.cpp139 void ViewClientEfl::didChangeTooltip(WKViewRef, WKStringRef tooltip, const void* clientInfo) argument
141 if (WKStringIsEmpty(tooltip))
144 toEwkView(clientInfo)->smartCallback<TooltipTextSet>().call(WKEinaSharedString(tooltip));
/macosx-10.10.1/vim-55/src/proto/
H A Dgui.pro39 void get_tabline_label __ARGS((tabpage_T *tp, int tooltip));
/macosx-10.10.1/vim-55/src/
H A Dgui_gtk.c448 char_u *tooltip; local
451 tooltip = CONVERT_TO_UTF8(menu->strings[MENU_INDEX_TIP]);
452 if (tooltip != NULL && !utf_valid_string(tooltip, NULL))
454 * a nasty GTK error message, skip the tooltip. */
455 CONVERT_TO_UTF8_FREE(tooltip);
460 (const char *)tooltip,
472 CONVERT_TO_UTF8_FREE(tooltip);
589 char_u *tooltip; local
591 tooltip
[all...]
H A Dnetbeans.c942 char_u *tooltip, char_u *glyphfile,
2323 char_u *tooltip; local
2343 tooltip = (char_u *)nb_unquote(args, &args);
2365 else if (typeName != NULL && tooltip != NULL && glyphFile != NULL)
2366 addsigntype(buf, typeNum, typeName, tooltip, glyphFile, fg, bg);
2373 vim_free(tooltip);
3587 char_u *tooltip UNUSED,
3603 typeNum, typeName, tooltip, glyphFile, fg, bg));
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DSourceCodeLocation.js175 var tooltip = WebInspector.UIString("Located at %s").format(this.displayLocationString(WebInspector.SourceCodeLocation.ColumnStyle.Shown, WebInspector.SourceCodeLocation.NameStyle.Full)); variable
176 tooltip += "\n" + WebInspector.UIString("Originally %s").format(this.originalLocationString(WebInspector.SourceCodeLocation.ColumnStyle.Shown, WebInspector.SourceCodeLocation.NameStyle.Full));
177 return tooltip;
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitWebViewBase.cpp741 static gboolean webkitWebViewBaseQueryTooltip(GtkWidget* widget, gint /* x */, gint /* y */, gboolean keyboardMode, GtkTooltip* tooltip) argument
756 gtk_tooltip_set_tip_area(tooltip, &area);
758 gtk_tooltip_set_tip_area(tooltip, 0);
759 gtk_tooltip_set_text(tooltip, priv->tooltipText.data());
1014 void webkitWebViewBaseSetTooltipText(WebKitWebViewBase* webViewBase, const char* tooltip) argument
1017 if (tooltip && tooltip[0] != '\0') {
1018 priv->tooltipText = tooltip;
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dflexwiki.vim29 " text: "this is a link (optional tooltip)":http://www.microsoft.com

Completed in 301 milliseconds

12