/third_party/python/Lib/idlelib/idle_test/ |
D | test_tooltip.py | 8 from idlelib.tooltip import TooltipBase, Hovertip 64 tooltip = TooltipBase(button) 65 tooltip.showtip() 72 def is_tipwindow_shown(self, tooltip): argument 73 return tooltip.tipwindow and tooltip.tipwindow.winfo_viewable() 76 tooltip = Hovertip(self.button, 'ToolTip text') 77 self.addCleanup(tooltip.hidetip) 78 self.assertFalse(self.is_tipwindow_shown(tooltip)) 79 tooltip.showtip() 80 self.assertTrue(self.is_tipwindow_shown(tooltip)) [all …]
|
/third_party/rust/crates/clap/clap_complete/src/shells/ |
D | powershell.rs | 88 let tooltip = get_tooltip(option.get_help(), shorts[0]); in generate_inner() localVariable 94 short, short, "[CompletionResultType]::ParameterName", tooltip in generate_inner() 102 let tooltip = get_tooltip(option.get_help(), longs[0]); in generate_inner() localVariable 108 long, long, "[CompletionResultType]::ParameterName", tooltip in generate_inner() 118 let tooltip = get_tooltip(flag.get_help(), shorts[0]); in generate_inner() localVariable 124 short, short, "[CompletionResultType]::ParameterName", tooltip in generate_inner() 132 let tooltip = get_tooltip(flag.get_help(), longs[0]); in generate_inner() localVariable 138 long, long, "[CompletionResultType]::ParameterName", tooltip in generate_inner() 148 let tooltip = get_tooltip(subcommand.get_about(), data); in generate_inner() localVariable 154 data, data, "[CompletionResultType]::ParameterValue", tooltip in generate_inner()
|
D | elvish.rs | 83 let tooltip = get_tooltip(option.get_help(), shorts[0]); in generate_inner() localVariable 86 completions.push_str(format!("-{} '{}'", short, tooltip).as_str()); in generate_inner() 91 let tooltip = get_tooltip(option.get_help(), longs[0]); in generate_inner() localVariable 94 completions.push_str(format!("--{} '{}'", long, tooltip).as_str()); in generate_inner() 101 let tooltip = get_tooltip(flag.get_help(), shorts[0]); in generate_inner() localVariable 104 completions.push_str(format!("-{} '{}'", short, tooltip).as_str()); in generate_inner() 109 let tooltip = get_tooltip(flag.get_help(), longs[0]); in generate_inner() localVariable 112 completions.push_str(format!("--{} '{}'", long, tooltip).as_str()); in generate_inner() 119 let tooltip = get_tooltip(subcommand.get_about(), data); in generate_inner() localVariable 122 completions.push_str(format!("{} '{}'", data, tooltip).as_str()); in generate_inner()
|
/third_party/flutter/flutter/packages/flutter/lib/src/material/ |
D | tooltip.dart | 17 /// A material design tooltip. 27 /// [PopupMenuButton] have a `tooltip` property that, when non-null, causes the 39 /// Creates a tooltip. 66 /// The text to display in the tooltip. 69 /// The height of the tooltip's [child]. 71 /// If the [child] is null, then this is the tooltip's intrinsic height. 74 /// The amount of space by which to inset the tooltip's [child]. 79 /// The empty space that surrounds the tooltip. 81 /// Defines the tooltip's outer [Container.margin]. By default, a 82 /// long tooltip will span the width of its window. If long enough, [all …]
|
D | tooltip_theme.dart | 25 /// tooltip theme. 50 /// The vertical gap between the widget and the displayed tooltip. 59 /// Whether the tooltip is displayed below its widget by default. 61 /// If there is insufficient space to display the tooltip in the preferred 62 /// direction, the tooltip will be displayed in the opposite direction. 65 /// Whether the tooltip's [message] should be excluded from the semantics 79 /// The length of time that a pointer must hover over a tooltip's widget 80 /// before the tooltip will be shown. 83 /// The length of time that the tooltip will be shown once it has appeared. 114 /// Linearly interpolate between two tooltip themes. [all …]
|
D | icon_button.dart | 16 import 'tooltip.dart'; 59 /// tooltip: 'Increase volume by 10', 154 this.tooltip, 271 final String tooltip; 303 if (tooltip != null) { 305 message: tooltip, 337 properties.add(StringProperty('tooltip', tooltip, defaultValue: null, quoted: false));
|
D | material_localizations.dart | 19 // widget and it has a tooltip), follow these steps: 53 /// The tooltip for the leading [AppBar] menu (a.k.a. 'hamburger') button. 56 /// The [BackButton]'s tooltip. 59 /// The [CloseButton]'s tooltip. 62 /// The tooltip for the delete button on a [Chip]. 65 /// The tooltip for the [MonthPicker]'s "next month" button. 68 /// The tooltip for the [MonthPicker]'s "previous month" button. 71 /// The tooltip for the [PaginatedDataTable]'s "next page" button. 74 /// The tooltip for the [PaginatedDataTable]'s "previous page" button. 77 /// The default [PopupMenuButton] tooltip. [all …]
|
D | floating_action_button.dart | 17 import 'tooltip.dart'; 131 this.tooltip, 170 this.tooltip, 229 final String tooltip; 472 if (tooltip != null) { 474 message: tooltip, 493 properties.add(StringProperty('tooltip', tooltip, defaultValue: null));
|
D | chip.dart | 23 import 'tooltip.dart'; 242 /// The message to be used for the chip's delete button tooltip. 343 String get tooltip; 457 String get tooltip; 669 this.tooltip, 721 final String tooltip; 764 tooltip: tooltip, 856 this.tooltip, 895 final String tooltip; 936 tooltip: tooltip, [all …]
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/ |
D | contacts_demo.dart | 45 const _ContactItem({ Key key, this.icon, this.lines, this.tooltip, this.onPressed }) 51 final String tooltip; 125 tooltip: 'Edit', 193 tooltip: 'Send message', 206 tooltip: 'Send message', 219 tooltip: 'Send message', 238 tooltip: 'Send personal e-mail', 251 tooltip: 'Send work e-mail', 269 tooltip: 'Open map', 283 tooltip: 'Open map', [all …]
|
/third_party/flutter/flutter/packages/flutter/test/material/ |
D | data_table_test.dart | 24 tooltip: 'Name', 28 tooltip: 'Calories', 286 tooltip: 'Name', 290 tooltip: 'Calories', 322 tooltip: 'Name', 326 tooltip: 'Calories', 407 tooltip: 'Name', 411 tooltip: 'Calories', 417 tooltip: 'Fat', 514 tooltip: 'Name', [all …]
|
D | tooltip_test.dart | 24 // methods of the tooltip code in order to test it. Normally, the 25 // state of a tooltip is a private class, but by using a GlobalKey we 43 testWidgets('Does tooltip end up in the right place - center', (WidgetTester tester) async { 100 testWidgets('Does tooltip end up in the right place - top left', (WidgetTester tester) async { 154 …testWidgets('Does tooltip end up in the right place - center prefer above fits', (WidgetTester tes… 210 …testWidgets('Does tooltip end up in the right place - center prefer above does not fit', (WidgetTe… 277 …testWidgets('Does tooltip end up in the right place - center prefer below fits', (WidgetTester tes… 332 …testWidgets('Does tooltip end up in the right place - way off to the right', (WidgetTester tester)… 389 …testWidgets('Does tooltip end up in the right place - near the edge', (WidgetTester tester) async { 446 testWidgets('Custom tooltip margin', (WidgetTester tester) async { [all …]
|
D | floating_action_button_test.dart | 37 testWidgets('Floating Action Button tooltip', (WidgetTester tester) async { 43 tooltip: 'Add', 55 …testWidgets('Floating Action Button tooltip (long press button edge)', (WidgetTester tester) async… 61 tooltip: 'Add', 76 …testWidgets('Floating Action Button tooltip (long press button edge - no child)', (WidgetTester te… 82 tooltip: 'Add', 95 testWidgets('Floating Action Button tooltip (no child)', (WidgetTester tester) async { 101 tooltip: 'Add', 109 // Test hover for tooltip. 125 // Test long press for tooltip. [all …]
|
D | icon_button_test.dart | 130 testWidgets('test tooltip', (WidgetTester tester) async { 156 tooltip: 'Test tooltip', 164 expect(find.byTooltip('Test tooltip'), findsOneWidget); 166 await tester.tap(find.byTooltip('Test tooltip'));
|
D | tooltip_theme_test.dart | 21 // methods of the tooltip code in order to test it. Normally, the 22 // state of a tooltip is a private class, but by using a GlobalKey we 853 final Finder tooltip = find.byType(Tooltip); 856 await gesture.moveTo(tester.getCenter(tooltip)); 897 final Finder tooltip = find.byType(Tooltip); 900 await gesture.moveTo(tester.getCenter(tooltip)); 938 final Finder tooltip = find.byType(Tooltip); 939 final TestGesture gesture = await tester.startGesture(tester.getCenter(tooltip)); 971 final Finder tooltip = find.byType(Tooltip); 972 final TestGesture gesture = await tester.startGesture(tester.getCenter(tooltip)); [all …]
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/material/ |
D | search_demo.dart | 28 tooltip: 'Navigation menu', 41 tooltip: 'Search', 57 tooltip: 'More (not implemented)', 99 tooltip: 'Back', // Tests depend on this label to exit the demo. 143 tooltip: 'Back', 209 tooltip: 'Voice Search', 216 tooltip: 'Clear',
|
D | page_selector_demo.dart | 37 tooltip: 'Page back', 44 tooltip: 'Page forward',
|
/third_party/flutter/flutter/packages/flutter_localizations/lib/src/l10n/ |
D | material_en.arb | 16 "description": "The tooltip for the leading app bar menu (aka 'hamburger') button." 21 …"description": "The tooltip for the back button, which closes the current page and returns to the … 26 …"description": "The tooltip for the close button, which closes the current page and returns to the… 31 "description": "The tooltip for the delete button of chips." 36 "description": "The tooltip for the month picker's 'next month' button." 41 "description": "The tooltip for the month picker's 'previous month' button." 46 …"description": "The tooltip for the button that sends the user to the next page of a paginated dat… 51 …"description": "The tooltip for the button that sends the user to the previous page of a paginated… 56 "description": "The tooltip for the button that shows a popup menu."
|
/third_party/flutter/flutter/packages/flutter/lib/src/semantics/ |
D | semantics_event.dart | 92 /// An event for a semantic announcement of a tooltip. 94 /// This is only used by Android to announce tooltip values. 97 /// Constructs an event that triggers a tooltip announcement by the platform. 98 const TooltipSemanticsEvent(this.message) : super('tooltip'); 100 /// The text content of the tooltip.
|
D | semantics_service.dart | 35 /// Sends a semantic announcement of a tooltip. 39 static Future<void> tooltip(String message) async {
|
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/transformations/ |
D | transformations_demo.dart | 43 tooltip: 'Help', 120 tooltip: 'Reset Transform', 149 tooltip: 'Edit Tile',
|
/third_party/flutter/skia/third_party/externals/imgui/docs/ |
D | TODO.txt | 29 …d window could be moved into the current draw command of the parent window (unless child+tooltip?). 68 - input text: hover tooltip could show unclamped text 171 …- tooltip: drag and drop with tooltip near monitor edges lose/changes its last direction instead o… 172 …- tooltip: tooltip that doesn't fit in entire screen seems to lose their "last preferred direction… 173 …- tooltip: allow to set the width of a tooltip to allow TextWrapped() etc. while keeping the heigh… 174 …- tooltip: tooltips with delay timers? or general timer policy? (instantaneous vs timed): IsItemHo… 187 … figure out better way to use TextWrapped() in an always auto-resize context (tooltip, etc.) (#249) 225 - drag and drop: releasing a drop shows the "..." tooltip for one frame - since e13e598 (#1725) 227 …- drag and drop: allow preview tooltip to be submitted from a different place than the drag source… 229 …sier and provide a demo to have tooltip both are source and target site, with a more detailed one …
|
/third_party/skia/tools/viewer/ |
D | ImGuiLayer.h | 67 void dragPoint(SkPoint* p, bool tooltip = false, ImU32 color = 0xFFFFFFFF) { 87 if (tooltip && ImGui::IsItemHovered()) {
|
/third_party/flutter/skia/tools/viewer/ |
D | ImGuiLayer.h | 66 void dragPoint(SkPoint* p, bool tooltip = false, ImU32 color = 0xFFFFFFFF) { 86 if (tooltip && ImGui::IsItemHovered()) {
|
/third_party/rust/crates/libc/ci/ |
D | rust.css | 421 .tooltip { 427 .tooltip .tooltiptext { 439 .tooltip:hover .tooltiptext { 443 .tooltip .tooltiptext::after {
|