Searched refs:hasFocus (Results 1 - 25 of 62) sorted by relevance

123

/external/webkit/Source/WebKit2/PluginProcess/mac/
H A DPluginControllerProxyMac.mm81 void PluginControllerProxy::windowFocusChanged(bool hasFocus)
83 m_plugin->windowFocusChanged(hasFocus);
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebNetscapePluginEventHandler.h58 virtual void focusChanged(bool hasFocus) = 0;
59 virtual void windowFocusChanged(bool hasFocus) = 0;
H A DWebNetscapePluginEventHandlerCarbon.h55 virtual void windowFocusChanged(bool hasFocus);
56 virtual void focusChanged(bool hasFocus);
H A DWebNetscapePluginEventHandlerCocoa.h53 virtual void windowFocusChanged(bool hasFocus);
54 virtual void focusChanged(bool hasFocus);
H A DWebNetscapePluginEventHandlerCocoa.mm188 void WebNetscapePluginEventHandlerCocoa::windowFocusChanged(bool hasFocus)
193 event.data.focus.hasFocus = hasFocus;
198 void WebNetscapePluginEventHandlerCocoa::focusChanged(bool hasFocus)
203 event.data.focus.hasFocus = hasFocus;
207 if (hasFocus)
H A DWebNetscapePluginEventHandlerCarbon.mm262 void WebNetscapePluginEventHandlerCarbon::focusChanged(bool hasFocus)
268 if (hasFocus) {
281 void WebNetscapePluginEventHandlerCarbon::windowFocusChanged(bool hasFocus)
292 if (hasFocus)
298 LOG(PluginEvents, "NPP_HandleEvent(activateEvent): %d isActive: %d", acceptedEvent, hasFocus);
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_wimppoll.c76 int hasFocus = 0; variable
85 if (hasFocus) RISCOS_PollKeyboard();
211 if (hasFocus == 0)
237 hasFocus = 0;
243 hasFocus = 1;
H A DSDL_wimpvideo.c79 extern int hasFocus;
188 while (!hasFocus && SDL_GetTicks() - now < 5000)
/external/webkit/Source/WebCore/html/
H A DHTMLDocument.idl54 boolean hasFocus();
H A DHTMLDocument.h56 bool hasFocus();
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
H A DNetscapePluginMac.mm761 void NetscapePlugin::platformSetFocus(bool hasFocus)
763 m_pluginHasFocus = hasFocus;
770 event.data.focus.hasFocus = hasFocus;
777 EventRecord event = initializeEventRecord(hasFocus ? NPEventType_GetFocusEvent : NPEventType_LoseFocusEvent);
789 void NetscapePlugin::windowFocusChanged(bool hasFocus)
791 m_windowHasFocus = hasFocus;
798 event.data.focus.hasFocus = hasFocus;
805 HiliteWindow(windowRef(), hasFocus);
[all...]
/external/webkit/Examples/NetscapeCocoaPlugin/
H A Dmain.m53 bool hasFocus;
212 if (obj->hasFocus) {
324 obj->hasFocus = cocoaEvent->data.focus.hasFocus;
/external/webkit/Source/WebCore/plugins/qt/
H A DPluginContainerQt.cpp123 redirectWheelEventsToParent(!hasFocus());
/external/webkit/Source/WebKit/android/plugins/
H A DPluginWidgetAndroid.h162 bool hasFocus() const { return m_hasFocus; } function in struct:PluginWidgetAndroid
H A DANPWindowInterface.cpp52 if(pluginWidget->hasFocus())
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
H A DCCombo3.java92 private boolean hasFocus;
95 boolean old_hasFocus = hasFocus;
96 hasFocus =
102 if (hasFocus) {
110 if (old_hasFocus && !hasFocus) {
H A DCTableCombo.java51 protected boolean hasFocus; field in class:CTableCombo
161 if (hasFocus) {
164 hasFocus = true;
181 hasFocus = false;
313 if (hasFocus) {
316 hasFocus = true;
336 if (hasFocus) {
339 hasFocus = true;
360 hasFocus = false;
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DRuleListController.java119 boolean isSelected, boolean hasFocus) {
117 getListCellRendererComponent( JList list, Object value, int index, boolean isSelected, boolean hasFocus) argument
H A DRunnerController.java204 boolean hasFocus) {
202 getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) argument
/external/webkit/Source/WebKit/mac/Plugins/Hosted/
H A DWebKitPluginHost.defs61 hasFocus :boolean_t);
64 hasFocus :boolean_t);
/external/webkit/Source/WebKit2/WebProcess/Plugins/
H A DPluginProxy.cpp314 void PluginProxy::setFocus(bool hasFocus) argument
316 m_connection->connection()->send(Messages::PluginControllerProxy::SetFocus(hasFocus), m_pluginInstanceID);
333 void PluginProxy::windowFocusChanged(bool hasFocus) argument
335 m_connection->connection()->send(Messages::PluginControllerProxy::WindowFocusChanged(hasFocus), m_pluginInstanceID);
/external/replicaisland/src/com/replica/replicaisland/
H A DAnimationPlayerActivity.java172 public void onWindowFocusChanged(boolean hasFocus) { argument
173 if (hasFocus && mAnimation != null) {
H A DGLSurfaceView.java532 public void onWindowFocusChanged(boolean hasFocus) { argument
533 super.onWindowFocusChanged(hasFocus);
534 mGLThread.onWindowFocusChanged(hasFocus);
1468 public void onWindowFocusChanged(boolean hasFocus) { argument
1470 mHasFocus = hasFocus;
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebframe.h117 Q_PROPERTY(bool focus READ hasFocus)
185 bool hasFocus() const;
/external/skia/src/views/
H A DSkWidgets.cpp278 evt.setString("prime-state", computeAnimatorState(this->isEnabled(), this->hasFocus(), this->getButtonState()));
292 create_emboss(&p, SkIntToScalar(12)/5, this->hasFocus(), this->getButtonState() == kOn_State);

Completed in 590 milliseconds

123