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

1234567891011>>

/macosx-10.10/emacs-93/emacs/lisp/
H A Dbutton.el0 ;;; button.el --- clickable buttons
33 ;; `widget' package, but the button package has the advantage that it
37 ;; Buttons can either use overlays, in which case the button is
39 ;; the button is represented by a marker or buffer-position pointing
40 ;; somewhere in the button. In the latter case, no markers into the
44 ;; Using `define-button-type' to define default properties for buttons
58 (defface button '((((type pc) (class color))
66 (defvar button-map
68 (define-key map "\r" 'push-button)
69 (define-key map [mouse-2] 'push-button)
57 (defface button '((((type pc) (class color)) function
[all...]
/macosx-10.10/tcl-105/tk84/tk/library/demos/
H A Dhello6 # Simple Tk script to create a button that prints "Hello, world".
7 # Click on the button to terminate the program.
11 # The first line below creates the button, and the second line
13 # around the button.
15 button .hello -text "Hello, world" -command {
/macosx-10.10/WebCore-7600.1.25/html/
H A DButtonInputType.cpp40 return InputTypeNames::button();
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DButtonToolbarItem.css26 .toolbar .item.button {
33 .toolbar.icon-and-label-vertical .item.button {
37 .toolbar.icon-and-label-horizontal .item.button {
41 .toolbar .item.button > .glyph {
51 .toolbar.small-size .item.button > .glyph {
56 .toolbar.label-only .item.button > .glyph {
60 .toolbar .item.button > .label {
65 body.mac-platform.legacy .toolbar .item.button > .label {
70 .toolbar.label-only .item.activate.button.activated > .label {
74 .toolbar.icon-and-label-horizontal .item.button >
[all...]
H A DTreeElementStatusButton.css26 .item > .status > .status-button {
32 .item > .status > .status-button > svg path.filled {
36 body.mac-platform.legacy .item > .status > .status-button > svg path.filled {
40 :focus .item.selected > .status > .status-button > svg path.filled {
44 .item > .status > .status-button > svg path.stroked {
48 body.mac-platform.legacy .item > .status > .status-button > svg path.stroked {
52 :focus .item.selected > .status > .status-button > svg path.stroked {
56 .item.selected > .status > .status-button:active {
60 .item > .status > .status-button.disabled {
H A DButtonNavigationItem.css26 .navigation-bar .item.button {
30 .navigation-bar .item.button.text-only {
45 body.mac-platform.legacy .navigation-bar .item.button.text-only {
56 .navigation-bar .item.button > .glyph {
64 body.window-inactive .navigation-bar .item.button:not(.suppress-emboss) > .glyph {
68 .navigation-bar .item.button.disabled > .glyph {
72 body.window-inactive .navigation-bar .item.button.disabled:not(.suppress-emboss) > .glyph {
76 .navigation-bar .item.button.suppress-emboss > .glyph {
80 .navigation-bar .item.button.suppress-emboss:active > .glyph {
84 .navigation-bar .item.button
[all...]
H A DRadioButtonNavigationItem.css26 .navigation-bar .item.radio.button:not(.text-only) {
30 .navigation-bar.collapsed .item.radio.button:not(.text-only) {
34 .navigation-bar .item.radio.button.text-only:hover {
39 body.mac-platform.legacy .navigation-bar .item.radio.button.text-only:hover {
44 .navigation-bar .item.radio.button.text-only.selected {
49 body.mac-platform.legacy .navigation-bar .item.radio.button.text-only.selected {
61 .navigation-bar .item.radio.button.text-only:active {
66 .navigation-bar .item.radio.button.text-only.selected:active {
70 body.mac-platform.legacy .navigation-bar .item.radio.button.text-only:active,
71 body.mac-platform.legacy .navigation-bar .item.radio.button
[all...]
H A DFindBanner.css97 .find-banner > button {
122 .find-banner > button > .glyph {
129 body.mac-platform.legacy .find-banner > button > .glyph {
133 .find-banner > button:disabled > .glyph {
137 .find-banner > button:active:not(:disabled) {
143 .find-banner > button:disabled {
148 .find-banner > button.segmented.left {
158 .find-banner > button.segmented.left > .glyph {
164 body.mac-platform.legacy .find-banner > button.segmented.left > .glyph {
168 .find-banner > button
[all...]
H A DBreakpointActionView.css30 .breakpoint-action-append-button,
31 .breakpoint-action-remove-button {
43 .breakpoint-action-append-button:active,
44 .breakpoint-action-remove-button:active {
48 .breakpoint-action-append-button {
52 .breakpoint-action-remove-button {
/macosx-10.10/WebCore-7600.1.25/html/shadow/mac/
H A DimageControlsMac.css30 .x-webkit-image-controls-button {
33 -webkit-appearance: image-controls-button;
39 .x-webkit-image-controls:hover .x-webkit-image-controls-button {
H A DImageControlsButtonElementMac.cpp97 RefPtr<ImageControlsButtonElementMac> button = adoptRef(new ImageControlsButtonElementMac(document));
98 button->setAttribute(HTMLNames::classAttr, "x-webkit-image-controls-button");
101 button->setInlineStyleProperty(CSSPropertyTop, positionOffset.height(), CSSPrimitiveValue::CSS_PX);
104 button->setInlineStyleProperty(CSSPropertyRight, positionOffset.width(), CSSPrimitiveValue::CSS_PX);
106 return button.release();
/macosx-10.10/tcl-105/tk/tk/library/demos/
H A Dhello6 # Simple Tk script to create a button that prints "Hello, world".
7 # Click on the button to terminate the program.
13 # The first line below creates the button, and the second line
15 # around the button.
17 button .hello -text "Hello, world" -command {
/macosx-10.10/WebCore-7600.1.25/dom/
H A DCheckedRadioButtons.cpp63 void RadioButtonGroup::setCheckedButton(HTMLInputElement* button) argument
66 if (oldCheckedButton == button)
68 m_checkedButton = button;
73 void RadioButtonGroup::add(HTMLInputElement* button) argument
75 ASSERT(button->isRadioButton());
76 if (!m_members.add(button).isNewEntry)
79 if (button->isRequired())
81 if (button->checked())
82 setCheckedButton(button);
88 // A radio button no
94 updateCheckedState(HTMLInputElement* button) argument
109 requiredAttributeChanged(HTMLInputElement* button) argument
124 remove(HTMLInputElement* button) argument
156 HTMLInputElement* button = *it; local
[all...]
H A DMouseEvent.cpp45 , button(0)
57 ASSERT(event.type() == PlatformEvent::MouseMoved || event.button() != NoButton);
68 event.ctrlKey(), event.altKey(), event.shiftKey(), event.metaKey(), event.button(),
77 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
86 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, 0, false);
94 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button,
102 ctrlKey, altKey, shiftKey, metaKey, button, relatedTarget, dataTransfer, isSimulated));
117 unsigned short button, PassRefPtr<EventTarget> relatedTarget,
125 , m_button(button == (unsigned short)-1 ? 0 : button)
72 create(const AtomicString& type, bool canBubble, bool cancelable, double timestamp, PassRefPtr<AbstractView> view, int detail, int screenX, int screenY, int pageX, int pageY, int movementX, int movementY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtr<EventTarget> relatedTarget) argument
89 create(const AtomicString& type, bool canBubble, bool cancelable, double timestamp, PassRefPtr<AbstractView> view, int detail, int screenX, int screenY, int pageX, int pageY, int movementX, int movementY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtr<EventTarget> relatedTarget, PassRefPtr<DataTransfer> dataTransfer, bool isSimulated) argument
111 MouseEvent(const AtomicString& eventType, bool canBubble, bool cancelable, double timestamp, PassRefPtr<AbstractView> view, int detail, int screenX, int screenY, int pageX, int pageY, int movementX, int movementY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtr<EventTarget> relatedTarget, PassRefPtr<DataTransfer> dataTransfer, bool isSimulated) argument
151 initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, unsigned short button, PassRefPtr<EventTarget> relatedTarget) argument
[all...]
/macosx-10.10/dcerpc-61/www/content/css/blueprint/plugins/buttons/
H A Dscreen.css7 * particletree.com/features/rediscovering-the-button-element
13 a.button, button {
32 button {
37 button[type] {
41 *:first-child+html button[type] {
44 button img, a.button img{
57 button:hover, a.button
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/tests/UnitTestUtils/
H A DEWK2UnitTestBase.h57 void mouseClick(int x, int y, int button = 1 /*Left*/);
58 void mouseDoubleClick(int x, int y, int button = 1 /*Left*/);
59 void mouseDown(int x, int y, int button = 1 /*Left*/);
60 void mouseUp(int x, int y, int button = 1 /*Left*/);
/macosx-10.10/tcl-105/tk/tk/macosx/
H A DtkMacOSXMenubutton.c30 NSPopUpButton *button; member in struct:MacMenuButton
105 macButtonPtr->button = nil;
135 TkMacOSXMakeCollectableAndRelease(macButtonPtr->button);
162 NSPopUpButton *button = macButtonPtr->button;
182 if ([button superview] != view) {
183 [view addSubview:button];
186 [button setEnabled:enabled];
188 [[button cell] setHighlighted:(mbPtr->state == STATE_ACTIVE)];
202 if (!NSEqualRects(frame, [button fram
159 NSPopUpButton *button = macButtonPtr->button; local
234 NSPopUpButton *button = macButtonPtr->button; local
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DthemeWin.css88 input[type="search"]::-webkit-search-cancel-button {
96 input[type="search"]::-webkit-search-results-button {
100 input::-webkit-outer-spin-button {
104 input[type="button"], input[type="submit"], input[type="reset"], input[type="file"]::-webkit-file-upload-button, button {
H A DmediaControls.css74 audio::-webkit-media-controls-mute-button, video::-webkit-media-controls-mute-button {
75 -webkit-appearance: media-mute-button;
84 audio::-webkit-media-controls-overlay-play-button, video::-webkit-media-controls-overlay-play-button {
88 audio::-webkit-media-controls-play-button, video::-webkit-media-controls-play-button {
89 -webkit-appearance: media-play-button;
138 audio::-webkit-media-controls-seek-back-button, video::-webkit-media-controls-seek-back-button {
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/c/mac/
H A DWKBundlePageBannerMac.mm64 virtual bool mouseEvent(PageBanner* pageBanner, WebEvent::Type type, WebMouseEvent::Button button, const IntPoint& position) override
71 return m_client.mouseDown(toAPI(pageBanner), toAPI(position), toAPI(button), m_client.base.clientInfo);
77 return m_client.mouseUp(toAPI(pageBanner), toAPI(position), toAPI(button), m_client.base.clientInfo);
80 if (button == WebMouseEvent::NoButton) {
87 // This is a MouseMove event with a mouse button pressed. Call mouseDragged.
91 return m_client.mouseDragged(toAPI(pageBanner), toAPI(position), toAPI(button), m_client.base.clientInfo);
/macosx-10.10/WebKit2-7600.1.25/Shared/gtk/
H A DWebEventFactory.cpp72 unsigned button = 0; local
76 button = WebMouseEvent::NoButton;
78 button = WebMouseEvent::LeftButton;
80 button = WebMouseEvent::MiddleButton;
82 button = WebMouseEvent::RightButton;
88 if (event->button.button == 1)
89 button = WebMouseEvent::LeftButton;
90 else if (event->button.button
[all...]
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDFamily/
H A DIOHIDEventOverrideDriver.cpp57 uint32_t button; local
67 button = number->unsigned32BitValue();
68 if ( !button || button>32 )
75 _buttonMap[button-1].eventType = number->unsigned32BitValue();
77 switch ( _buttonMap[button-1].eventType ) {
94 _buttonMap[button-1].u.keyboard.usagePage = usagePage;
95 _buttonMap[button-1].u.keyboard.usage = usage;
110 _buttonMap[button-1].u.pointer.mask = mask;
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXMLViewer.css76 .button {
87 .collapse-button {
92 .expand-button {
/macosx-10.10/JavaScriptCore-7600.1.17/replay/scripts/tests/expected/
H A Dgenerate-enum-encoding-helpers-with-guarded-values.json-TestReplayInputs.h65 SavedMouseButton(MouseButton button);
68 MouseButton button() const { return m_button; } function in class:Test::SavedMouseButton
/macosx-10.10/WebCore-7600.1.25/Modules/mediacontrols/
H A DmediaControlsiOS.css60 video::-webkit-media-controls-panel input[type="button"],
61 audio::-webkit-media-controls-panel input[type="button"],
62 video::-webkit-media-controls-panel button,
63 audio::-webkit-media-controls-panel button {
85 audio::-webkit-media-controls-wireless-playback-picker-button,
86 video::-webkit-media-controls-wireless-playback-picker-button {
93 audio::-webkit-media-controls-wireless-playback-picker-button {
99 video::-webkit-media-controls-wireless-playback-picker-button {
106 video::-webkit-media-controls-wireless-playback-picker-button.active,
107 audio::-webkit-media-controls-wireless-playback-picker-button
[all...]

Completed in 316 milliseconds

1234567891011>>