Lines Matching full:browser
42 // Browser function table
43 static NPNetscapeFuncs* browser;
82 browser = browserFuncs;
121 // Ask the browser if it supports the CoreGraphics drawing model
123 if (browser->getvalue(instance, NPNVsupportsCoreGraphicsBool, &supportsCoreGraphics) != NPERR_NO_ERROR)
129 // If the browser supports the CoreGraphics drawing model, enable it.
130 browser->setvalue(instance, NPPVpluginDrawingModel, (void *)NPDrawingModelCoreGraphics);
132 // If the browser supports the Cocoa event model, enable it.
134 if (browser->getvalue(instance, NPNVsupportsCocoaBool, &supportsCocoa) != NPERR_NO_ERROR)
140 browser->setvalue(instance, NPPVpluginEventModel, (void *)NPEventModelCocoa);
260 browser->invalidaterect(obj->npp, &rect);
288 obj->menuHandler = [[MenuHandler alloc] initWithBrowserFuncs:browser instance:obj->npp];
290 browser->popupcontextmenu(obj->npp, (NPNSMenu *)[obj->menuHandler menu]);