Home | History | Annotate | Download | only in animated

Lines Matching refs:evt

42     SkEvent evt("user");
43 evt.setString("id", "setDim");
44 evt.setScalar("dimX", this->width());
45 evt.setScalar("dimY", this->height());
46 fAnim.doUserEvent(evt);
64 /*virtual*/ bool SkBorderView::onEvent(const SkEvent& evt)
66 if (evt.isType(SK_EventType_Inval))
71 if (evt.isType("recommendDim"))
73 evt.findScalar("leftMargin", &fLeft);
74 evt.findScalar("rightMargin", &fRight);
75 evt.findScalar("topMargin", &fTop);
76 evt.findScalar("bottomMargin", &fBottom);
95 return this->INHERITED::onEvent(evt);