HomeSort by relevance Sort by last modified time
    Searched defs:Button (Results 1 - 25 of 49) sorted by null

1 2

  /external/chromium_org/ui/views/controls/button/
button.cc 5 #include "ui/views/controls/button/button.h"
13 // Button, static public:
16 Button::ButtonState Button::GetButtonStateFrom(ui::NativeTheme::State state) {
18 case ui::NativeTheme::kDisabled: return Button::STATE_DISABLED;
19 case ui::NativeTheme::kHovered: return Button::STATE_HOVERED;
20 case ui::NativeTheme::kNormal: return Button::STATE_NORMAL;
21 case ui::NativeTheme::kPressed: return Button::STATE_PRESSED;
24 return Button::STATE_NORMAL
    [all...]
button.h 13 class Button;
16 // An interface implemented by an object to let it know that a button was
20 virtual void ButtonPressed(Button* sender, const ui::Event& event) = 0;
26 // A View representing a button. Depending on the specific type, the button
28 class VIEWS_EXPORT Button : public View {
30 virtual ~Button();
32 // Button states for various button sub-types.
41 // Button styles with associated images and border painters
    [all...]
  /frameworks/base/core/java/android/widget/
Button.java 27 * Represents a push-button widget. Push-buttons can be
30 * <p>A typical use of a push-button in an activity would be the following:
40 * final Button button = (Button) findViewById(R.id.button_id);
41 * button.setOnClickListener(new View.OnClickListener() {
50 * the button in your activity, you can assign a method to your button in the XML layout,
54 * &lt;Button
60 * <p>Now, when a user clicks the button, the Android system calls the activity's {@cod
    [all...]
NumberPicker.java 71 * presents the current value as an editable input field with an increment button
72 * above and a decrement button below. Long pressing the buttons allows for a quick
204 * The increment button.
209 * The decrement button.
456 * Whether the increment virtual button is pressed.
461 * Whether the decrement virtual button is pressed.
690 // increment button
699 // decrement button
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ButtonTest.java 25 import android.widget.Button;
35 new Button(mContext, attrs, 0);
36 new Button(mContext, attrs);
37 new Button(mContext);
40 new Button(null, null, -1);
47 new Button(null, null);
54 new Button(null);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
AccessibleLinearLayout.java 23 import android.widget.Button;
27 * Fake Button class, used so TextViews can announce themselves as Buttons, for accessibility.
38 event.setClassName(Button.class.getName());
44 info.setClassName(Button.class.getName());
AccessibleTextView.java 23 import android.widget.Button;
27 * Fake Button class, used so TextViews can announce themselves as Buttons, for accessibility.
38 event.setClassName(Button.class.getName());
44 info.setClassName(Button.class.getName());
  /external/chromium_org/pdf/
button.cc 5 #include "pdf/button.h"
13 Button::Button()
17 Button::~Button() {
20 bool Button::CreateButton(uint32 id,
46 void Button::Paint(pp::ImageData* image_data, const pp::Rect& rc) {
60 bool Button::HandleEvent(const pp::InputEvent& event) {
64 // Button handles mouse events only.
98 // Since button has not been pressed, return false to allow othe
    [all...]
button.h 14 class Button : public Control {
33 Button();
34 virtual ~Button();
  /external/chromium_org/third_party/WebKit/public/platform/
WebScrollbarBehavior.h 15 enum Button {
22 virtual bool shouldCenterOnThumb(Button, bool shiftKeyPressed, bool altKeyPressed) { return false; }
  /external/chromium_org/chrome/renderer/net/
net_error_helper_core.h 42 enum Button {
180 // Execute the effect of pressing the specified button.
181 // Note that the visual effects of the 'MORE' button are taken
183 void ExecuteButtonPress(Button button);
263 Button navigation_from_button_;
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndTest.java 30 import android.widget.Button;
100 expected.setClassName(Button.class.getName());
105 final Button button = (Button) getActivity().findViewById(R.id.button); local
116 button.performClick();
136 expected.setClassName(Button.class.getName());
141 final Button button = (Button) getActivity().findViewById(R.id.button) local
179 final Button button = (Button) getActivity().findViewById(R.id.button); local
    [all...]
  /external/chromium_org/ash/system/chromeos/bluetooth/
bluetooth_notification_controller.cc 70 enum Button {
122 VLOG(1) << "Pairing notification, button click: " << button_index;
  /external/chromium_org/third_party/angle/samples/angle/sample_util/
Event.h 45 MouseButton Button;
66 EVENT_MOUSE_BUTTON_PRESSED, // A mouse button was pressed
67 EVENT_MOUSE_BUTTON_RELEASED, // A mouse button was released
81 MouseButtonEvent MouseButton; // Mouse button event parameters
  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 292 enum Button {
299 Button button; member in class:blink::WebMouseEvent
312 , button(ButtonNone)
328 , button(ButtonNone)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
161 ("Menubutton.button", {"children":
174 Menubutton.button -children {
593 class Button(Widget):
594 """Ttk Button widget, displays a textual label and/or image, and
598 """Construct a Ttk Button widget with the parent master.
609 Widget.__init__(self, master, "ttk::button", kw)
613 """Invokes the command associated with the button."""
    [all...]
Tkinter.py 5 widgets are Frame, Label, Entry, Text, Canvas, Button, Radiobutton,
28 button = Tkinter.Button(frame,text="Exit",command=tk.destroy)
29 button.pack(side=BOTTOM)
144 num - mouse button pressed (ButtonPress, ButtonRelease)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
ttk.py 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label",
161 ("Menubutton.button", {"children":
174 Menubutton.button -children {
593 class Button(Widget):
594 """Ttk Button widget, displays a textual label and/or image, and
598 """Construct a Ttk Button widget with the parent master.
609 Widget.__init__(self, master, "ttk::button", kw)
613 """Invokes the command associated with the button."""
    [all...]
Tkinter.py 5 widgets are Frame, Label, Entry, Text, Canvas, Button, Radiobutton,
28 button = Tkinter.Button(frame,text="Exit",command=tk.destroy)
29 button.pack(side=BOTTOM)
144 num - mouse button pressed (ButtonPress, ButtonRelease)
    [all...]
  /cts/tests/uiautomator/src/com/android/cts/uiautomatortest/
CtsUiAutomatorTest.java 125 .className(android.widget.Button.class.getName()).clickable(true)
149 getObjectByDescription("Button 1").click();
150 verifyDialogActionResults("Button 1");
151 getObjectByDescription("Button 2").click();
152 verifyDialogActionResults("Button 2");
153 getObjectByDescription("Button 3").click();
154 verifyDialogActionResults("Button 3");
164 getObjectByText("Button 1").click();
165 verifyDialogActionResults("Button 1");
166 getObjectByText("Button 2").click()
372 UiObject button = new UiObject(frameLayout.childSelector(gridLayout).childSelector( local
    [all...]
  /external/qemu/android/skin/
window.c 632 typedef struct Button {
639 } Button;
642 button_done( Button* button )
644 skin_image_unref( &button->image );
645 button->background = NULL;
649 button_init( Button* button, SkinButton* sbutton, SkinLocation* loc, Background* back, SkinRect* frame, SkinLayout* slayout )
653 button->image = skin_image_rotate( sbutton->image, loc->rotation );
654 button->background = back
943 ButtonState button; member in struct:SkinWindow
1016 ButtonState* button = &window->button; local
1618 Button* button = layout->buttons; local
1685 Button* button; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 
  /prebuilts/tools/linux-x86/swt/
swt.jar 

Completed in 381 milliseconds

1 2