HomeSort by relevance Sort by last modified time
    Searched refs:SkEvent (Results 1 - 25 of 149) sorted by null

1 2 3 4 5 6

  /external/skia/include/views/
SkEventSink.h 14 #include "SkEvent.h"
37 bool doEvent(const SkEvent&);
42 bool doQuery(SkEvent* query);
71 void postToListeners(const SkEvent& evt, SkMSec delay = 0);
82 static EventResult DoEvent(const SkEvent&);
93 virtual bool onEvent(const SkEvent&);
94 virtual bool onQuery(SkEvent*);
SkOSMenu.h 13 #include "SkEvent.h"
57 SkEvent* evt);
60 SkEvent* getEvent() const { return fEvent; }
81 void postEvent() const { (new SkEvent(*(fEvent)))->post(); }
85 SkEvent* fEvent;
118 * identifier of any state/value to be returned in the item's SkEvent object
122 SkEvent* evt);
148 static bool FindListItemCount(const SkEvent& evt, int* count);
153 static bool FindListItems(const SkEvent& evt, SkString items[]);
154 static bool FindSliderMin(const SkEvent& evt, SkScalar* min)
    [all...]
SkEvent.h 25 * \class SkEvent
31 class SkEvent {
36 typedef bool (*Proc)(const SkEvent& evt);
38 SkEvent();
39 explicit SkEvent(const SkString& type, SkEventSinkID = 0);
40 explicit SkEvent(const char type[], SkEventSinkID = 0);
41 SkEvent(const SkEvent& src);
42 ~SkEvent();
80 SkEvent* setTargetID(SkEventSinkID targetID)
    [all...]
SkWidgetViews.h 70 SkEvent& event() { return fEvent; }
71 const SkEvent& event() const { return fEvent; }
79 static SkEventSinkID GetWidgetEventSinkID(const SkEvent&);
92 virtual bool onPrepareWidgetEvent(SkEvent* evt);
99 SkEvent fEvent;
112 virtual bool onEvent(const SkEvent&);
138 static bool GetWidgetEventCheckState(const SkEvent&, CheckState* state);
146 virtual bool onPrepareWidgetEvent(SkEvent* evt);
245 static int GetWidgetEventListIndex(const SkEvent&);
251 virtual bool onEvent(const SkEvent&)
    [all...]
SkOSWindow_SDL.h 23 static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
SkOSWindow_Unix.h 18 class SkEvent;
43 //static bool PostEvent(SkEvent* evt, SkEventSinkID, SkMSec delay);
49 virtual bool onEvent(const SkEvent&);
SkOSWindow_Mac.h 28 virtual bool onEvent(const SkEvent& evt);
SkOSWindow_iOS.h 27 virtual bool onEvent(const SkEvent& evt);
SkProgressBarView.h 37 virtual bool onEvent(const SkEvent& evt);
SkScrollBarView.h 34 virtual bool onEvent(const SkEvent& evt);
SkBorderView.h 31 virtual bool onEvent(const SkEvent& evt);
  /external/skia/src/views/
SkEvent.cpp 10 #include "SkEvent.h"
12 void SkEvent::initialize(const char* type, size_t typeLen,
25 SkEvent::SkEvent()
30 SkEvent::SkEvent(const SkEvent& src)
37 SkEvent::SkEvent(const SkString& type, SkEventSinkID targetID)
42 SkEvent::SkEvent(const char type[], SkEventSinkID targetID
    [all...]
SkOSMenu.cpp 93 const char slotName[], SkEvent* evt) {
137 SkEvent* evt) {
144 SkEvent* evt = new SkEvent(gMenuEventType, target);
152 SkEvent* evt = new SkEvent(gMenuEventType, target);
174 SkEvent* evt = new SkEvent(gMenuEventType, target);
183 SkEvent* evt = new SkEvent(gMenuEventType, target)
    [all...]
SkProgressBarView.cpp 47 /*virtual*/ bool SkProgressBarView::onEvent(const SkEvent& evt)
78 SkEvent evt("user");
88 SkEvent e("user");
96 SkEvent e("user");
105 SkEvent e("user");
SkWidgetViews.cpp 149 SkEvent evt(fEvent); // make a copy since onPrepareWidgetEvent may edit the event
181 /*virtual*/ bool SkWidgetView::onPrepareWidgetEvent(SkEvent* evt)
187 SkEventSinkID SkWidgetView::GetWidgetEventSinkID(const SkEvent& evt)
196 /*virtual*/ bool SkButtonView::onEvent(const SkEvent& evt)
239 /*virtual*/ bool SkCheckButtonView::onPrepareWidgetEvent(SkEvent* evt)
247 bool SkCheckButtonView::GetWidgetEventCheckState(const SkEvent& evt, CheckState* state)
280 SkEvent evt("user");
290 SkEvent evt("user");
300 SkEvent evt("user");
322 virtual bool onEvent(const SkEvent& evt
    [all...]
  /external/skia/samplecode/
SampleCode.h 14 #include "SkEvent.h"
22 static bool KeyQ(const SkEvent&, SkKey* outKey);
23 static bool CharQ(const SkEvent&, SkUnichar* outUni);
25 static bool TitleQ(const SkEvent&);
26 static void TitleR(SkEvent*, const char title[]);
29 static bool PrefSizeQ(const SkEvent&);
30 static void PrefSizeR(SkEvent*, SkScalar width, SkScalar height);
32 static bool FastTextQ(const SkEvent&);
130 virtual bool onEvent(const SkEvent& evt);
131 virtual bool onQuery(SkEvent* evt)
    [all...]
OverView.cpp 18 SkEvent isOverview(gIsOverview);
27 virtual bool onEvent(const SkEvent&);
36 virtual bool onQuery(SkEvent* evt) {
55 SkEvent evt("set-curr-index");
81 bool OverView::onEvent(const SkEvent& evt) {
TransitionView.cpp 19 SkEvent isTransition(gIsTransitionQuery);
58 virtual bool onQuery(SkEvent* evt) {
72 virtual bool onEvent(const SkEvent& evt) {
85 SkEvent* evt = new SkEvent(gReplaceTransitionEvt,
117 (new SkEvent("transition-done", this->getSinkID()))->post();
GMSampleView.h 29 virtual bool onQuery(SkEvent* evt) {
SampleBigBlur.cpp 20 virtual bool onQuery(SkEvent* evt) {
  /external/skia/include/animator/
SkAnimatorView.h 29 virtual bool onEvent(const SkEvent&);
SkAnimator.h 20 class SkEvent;
165 bool doUserEvent(const SkEvent& evt);
470 virtual void eventDone(const SkEvent& evt);
477 virtual void onEventPost(SkEvent*, SkEventSinkID);
478 virtual void onEventPostTime(SkEvent*, SkEventSinkID, SkMSec time);
488 virtual bool onEvent(const SkEvent&);
  /external/skia/src/animator/
SkDisplayEvent.cpp 18 #include "SkEvent.h"
189 void SkDisplayEvent::populateInput(SkAnimateMaker& maker, const SkEvent& fEvent) {
267 bool SkEventSink::doEvent(SkEvent const& ) { return false; }
270 void SkEvent::setType(char const*, size_t ) {}
271 void SkEvent::postTime(SkMSec) {}
272 SkEvent::SkEvent(char const*, SkEventSinkID) {}
273 SkEvent::SkEvent(SkEvent const&) {
    [all...]
SkDisplayEvent.h 18 class SkEvent;
46 void populateInput(SkAnimateMaker& , const SkEvent& fEvent);
SkDisplayMovie.h 26 bool doEvent(const SkEvent& evt) {

Completed in 466 milliseconds

1 2 3 4 5 6