Home
last modified time | relevance | path

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

/device/google/cuttlefish/host/frontend/webrtc/html_client/
Dstyle.css25 --modal-button-bg: #e8eaed; /* Google grey 200 */
26 --modal-button-shadow: #444444;
27 --modal-button-fg: black;
28 --modal-button-border: black;
29 --modal-button-invalid-border: red;
30 --modal-button-highlight-bg: #f4cccc; /* light red */
34 --custom-button-bg: #1c4587ff; /* blue */
35 --button-fg: #e8eaed; /* Google grey 200 */
36 --button-bg: transparent;
37 --button-disabled-fg: #9aa0a6; /* Google grey 500 */
[all …]
/device/google/cuttlefish/host/frontend/webrtc/html_client/js/
Dcontrols.js66 for (var button of buttons) {
68 button.onclick = func;
70 button.addEventListener('mousedown', listener);
89 let button = document.getElementById("bluetooth-wizard-device");
93 button.disabled = false;
106 button.disabled = false;
109 button.disabled = true;
203 function addMouseListeners(button, listener) { argument
207 button.addEventListener('mousedown', listener);
208 button.addEventListener('mouseup', listener);
[all …]
Dapp.js280 for (const button of this.#deviceConnection.description
282 if (button.shell_command) {
285 button.title, button.icon_name,
286 e => this.#onCustomShellButton(button.shell_command, e),
289 } else if (button.device_states) {
292 button.title, button.icon_name,
293 this.#getCustomDeviceStateButtonCb(button.device_states),
295 for (const device_state of button.device_states) {
305 button.title, button.icon_name,
306 evt => this.#onControlPanelButton(evt, button.command),
/device/generic/vulkan-cereal/stream-servers/testlibs/x11/
DX11Window.cpp398 MouseButton button = MOUSEBUTTON_UNKNOWN; in processEvent() local
402 switch (xEvent.xbutton.button) in processEvent()
416 button = MOUSEBUTTON_LEFT; in processEvent()
419 button = MOUSEBUTTON_MIDDLE; in processEvent()
422 button = MOUSEBUTTON_RIGHT; in processEvent()
425 button = MOUSEBUTTON_BUTTON4; in processEvent()
428 button = MOUSEBUTTON_BUTTON5; in processEvent()
442 if (button != MOUSEBUTTON_UNKNOWN) in processEvent()
445 event.MouseButton.Button = button; in processEvent()
456 MouseButton button = MOUSEBUTTON_UNKNOWN; in processEvent() local
[all …]
/device/google/cuttlefish/host/frontend/webrtc/
Dmain.cpp317 const auto button = custom_action.button; in main() local
319 button.command, button.title, button.icon_name, in main()
339 for (const auto& button : custom_action.buttons) { in main() local
340 streamer->AddCustomControlPanelButton(button.command, button.title, in main()
341 button.icon_name); in main()
342 commands_for_this_server.push_back(button.command); in main()
354 const auto button = custom_action.button; in main() local
356 button.command, button.title, button.icon_name, in main()
/device/google/cuttlefish/host/libs/config/
Dcustom_actions.cpp59 config.button = {button_entry[kCustomActionButtonCommand].asString(), in GetCustomShellActionConfigFromJson()
86 config.button = {button_entry[kCustomActionButtonCommand].asString(), in GetCustomDeviceStateActionConfigFromJson()
119 custom_action.button.command; in ToJson()
121 custom_action.button.title; in ToJson()
123 custom_action.button.icon_name; in ToJson()
132 for (const auto& button : custom_action.buttons) { in ToJson() local
134 button_entry[kCustomActionButtonCommand] = button.command; in ToJson()
135 button_entry[kCustomActionButtonTitle] = button.title; in ToJson()
136 button_entry[kCustomActionButtonIconName] = button.icon_name; in ToJson()
160 custom_action.button.command; in ToJson()
[all …]
Dcustom_actions.h45 ControlPanelButton button; member
55 ControlPanelButton button; member
/device/sample/skins/WVGAMedDpi/
Dlayout28 image button.png
33 image button.png
38 image button.png
68 image button.png
73 image button.png
79 image button.png
85 image button.png
91 image button.png
97 image button.png
/device/google/cuttlefish/host/frontend/webrtc_operator/assets/js/
Dindex.js63 let button = document.getElementById(buttonId);
64 button.addEventListener('click', evt => {
77 let button = document.createElement('button');
78 button.id = buttonId;
79 button.appendChild(document.createTextNode('Connect'));
81 div.appendChild(button);
/device/google/cuttlefish/host/frontend/webrtc/libdevice/
Dstreamer.cpp314 ControlPanelButtonDescriptor button = { in AddCustomControlPanelButton() local
316 impl_->custom_control_panel_buttons_.push_back(button); in AddCustomControlPanelButton()
322 ControlPanelButtonDescriptor button = { in AddCustomControlPanelButtonWithShellCommand() local
324 button.shell_command = shell_command; in AddCustomControlPanelButtonWithShellCommand()
325 impl_->custom_control_panel_buttons_.push_back(button); in AddCustomControlPanelButtonWithShellCommand()
332 ControlPanelButtonDescriptor button = { in AddCustomControlPanelButtonWithDeviceStates() local
334 button.device_states = device_states; in AddCustomControlPanelButtonWithDeviceStates()
335 impl_->custom_control_panel_buttons_.push_back(button); in AddCustomControlPanelButtonWithDeviceStates()
408 for (const auto& button : custom_control_panel_buttons_) { in OnOpen() local
410 button_entry[kControlPanelButtonCommand] = button.command; in OnOpen()
[all …]
/device/linaro/dragonboard/installer/db845c/
DREADME26 while holding down the "VOL-" button plug in the power cable.
27 Continue holding down the "VOL-" button and tap the "ON/OFF"
28 button. The board should then boot to fastboot mode. Be sure to
64 button (next to volume buttons near the USB-A ports). While
65 continuing to hold down the "USB" button, tap the "ON/OFF"
66 button. Then re-connect USB-C cable. There will be no HDMI
/device/generic/vulkan-cereal/stream-servers/testlibs/osx/
DOSXWindow.mm290 static MouseButton TranslateMouseButton(int button)
292 switch (button)
372 …d) addButtonEvent: (NSEvent*) nsEvent type:(Event::EventType) eventType button:(MouseButton) button
376 event.MouseButton.Button = button;
386 button: MOUSEBUTTON_LEFT];
398 button: MOUSEBUTTON_LEFT];
428 button: MOUSEBUTTON_RIGHT];
440 button: MOUSEBUTTON_RIGHT];
447 button: TranslateMouseButton([event buttonNumber])];
459 button: TranslateMouseButton([event buttonNumber])];
/device/google/cuttlefish/host/frontend/webrtc_operator/assets/
Dstyle.css35 #device-list .device-entry button {
151 .control-panel-column button {
161 .control-panel-column button:disabled {
164 .control-panel-column button.modal-button-opened {
Dindex.css34 #device-list .device-entry button {
/device/google/felix/vibrator/cs40l26/
DVibrator.cpp855 mFfEffects[effectIndex].trigger.button = GPIO_TRIGGER_CONFIG | effectIndex; in on()
856 mFfEffectsDual[effectIndex].trigger.button = GPIO_TRIGGER_CONFIG | effectIndex; in on()
881 mFfEffects[effectIndex].trigger.button = GPIO_TRIGGER_CONFIG | effectIndex; in on()
882 mFfEffectsDual[effectIndex].trigger.button = GPIO_TRIGGER_CONFIG | effectIndex; in on()
923 mFfEffects[effectIndex].trigger.button = GPIO_TRIGGER_CONFIG | effectIndex; in on()
930 mFfEffectsDual[effectIndex].trigger.button = GPIO_TRIGGER_CONFIG | effectIndex; in on()
1322 mFfEffects[effectId].replay.length, mFfEffects[effectId].trigger.button); in dump()
1330 mFfEffectsDual[effectId].trigger.button); in dump()
1348 mFfEffectsDual[effectId].replay.length, mFfEffects[effectId].trigger.button); in dump()
1366 mFfEffectsDual[effectId].trigger.button); in dump()
/device/generic/vulkan-cereal/stream-servers/testlibs/
DOSWindow.cpp17 static const char *MouseButtonName(MouseButton button) in MouseButtonName() argument
19 switch (button) in MouseButtonName()
/device/generic/vulkan-cereal/stream-servers/apigen-codec-common/X11/extensions/
DXInput2.h465 int button,
527 int button,
DXKBstr.h162 unsigned char button; member
229 unsigned char button; member
DXIproto.h654 CARD8 button; member
672 CARD8 button; member
DXInput.h246 unsigned int button; /* detail */ member
/device/linaro/poplar/installer/
DREADME8 Poplar board with button S3 (USB_BOOT) pressed until following
/device/amlogic/yukawa/board-info/
DREADME42 -- Enter recovery / upgrade mode by pressing function button 3 times in 2s.
/device/google/cuttlefish/build/
DAndroid.bp264 "netsim_ui_js_customize-map-button.js",
/device/generic/vulkan-cereal/stream-servers/apigen-codec-common/X11/
DXproto.h1479 CARD8 button; member
1486 CARD8 button; member
DXlib.h595 unsigned int button; /* detail */ member