Home
last modified time | relevance | path

Searched refs:GestureTool (Results 1 – 12 of 12) sorted by relevance

/dports/www/py-bokeh/bokeh-2.3.3/bokeh/server/static/js/types/models/tools/
H A Dtoolbar_base.d.ts9 import { GestureTool } from "./gestures/gesture_tool";
52 tools: GestureTool[];
56 tools: GestureTool[];
60 tools: GestureTool[];
64 tools: GestureTool[];
68 tools: GestureTool[];
72 tools: GestureTool[];
76 tools: GestureTool[];
80 tools: GestureTool[];
84 tools: GestureTool[];
[all …]
H A Dtoolbar.d.ts3 import { GestureTool } from "./gestures/gesture_tool";
17 active_multi: p.Property<GestureTool | null>;
H A Dindex.d.ts20 export { GestureTool } from "./gestures/gesture_tool";
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/server/static/js/types/models/tools/gestures/
H A Dgesture_tool.d.ts5 model: GestureTool;
7 export declare namespace GestureTool { namespace
11 export interface GestureTool extends GestureTool.Attrs { interface
13 export declare abstract class GestureTool extends ButtonTool { class
14 properties: GestureTool.Props;
16 constructor(attrs?: Partial<GestureTool.Attrs>);
H A Dwheel_pan_tool.d.ts1 import { GestureTool, GestureToolView } from "./gesture_tool";
12 type Props = GestureTool.Props & {
19 export declare class WheelPanTool extends GestureTool {
H A Dwheel_zoom_tool.d.ts1 import { GestureTool, GestureToolView } from "./gesture_tool";
12 type Props = GestureTool.Props & {
21 export declare class WheelZoomTool extends GestureTool {
H A Dpan_tool.d.ts1 import { GestureTool, GestureToolView } from "./gesture_tool";
27 type Props = GestureTool.Props & {
33 export declare class PanTool extends GestureTool {
H A Dselect_tool.d.ts1 import { GestureTool, GestureToolView } from "./gesture_tool";
23 type Props = GestureTool.Props & {
32 export declare abstract class SelectTool extends GestureTool {
H A Dbox_zoom_tool.d.ts1 import { GestureTool, GestureToolView } from "./gesture_tool";
19 type Props = GestureTool.Props & {
28 export declare class BoxZoomTool extends GestureTool {
H A Drange_tool.d.ts7 import { GestureTool, GestureToolView } from "./gesture_tool";
39 type Props = GestureTool.Props & {
49 export declare class RangeTool extends GestureTool {
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/server/static/js/types/models/tools/edit/
H A Dedit_tool.d.ts7 import { GestureTool, GestureToolView } from "../gestures/gesture_tool";
28 type Props = GestureTool.Props & {
36 export declare abstract class EditTool extends GestureTool {
/dports/www/py-bokeh/bokeh-2.3.3/bokeh/models/
H A Dtools.py195 class GestureTool(Tool): class
202 Gesture = GestureTool
205 class Drag(GestureTool):
212 class Scroll(GestureTool):
219 class Tap(GestureTool):
226 class SelectTool(GestureTool):
252 class InspectTool(GestureTool):
308 …active_multi: tp.Union[Literal["auto"], GestureTool, None] = Nullable(Instance(GestureTool), help=…
1243 class EditTool(GestureTool):