Searched defs:view (Results 1 - 25 of 146) sorted by relevance

123456

/external/webkit/WebKit/mac/WebCoreSupport/
H A DWebPasteboardHelper.h36 WebPasteboardHelper(WebHTMLView* view) : m_view(view) {} argument
/external/webkit/WebKit/qt/docs/webkitsnippets/simple/
H A Dmain.cpp29 QWebView *view = new QWebView(parent); local
30 view->load(QUrl("http://qt.nokia.com/"));
31 view->show();
/external/webkit/WebCore/dom/
H A DCompositionEvent.h40 static PassRefPtr<CompositionEvent> create(const AtomicString& type, PassRefPtr<AbstractView> view, const String& data) argument
42 return adoptRef(new CompositionEvent(type, view, data));
54 CompositionEvent(const AtomicString& type, PassRefPtr<AbstractView> view, const String& data);
H A DCompositionEvent.cpp38 CompositionEvent::CompositionEvent(const AtomicString& type, PassRefPtr<AbstractView> view, const String& data) argument
39 : UIEvent(type, true, true, view, 0)
48 void CompositionEvent::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data) argument
53 initUIEvent(type, canBubble, cancelable, view, 0);
H A DTextEvent.cpp40 TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data) argument
41 : UIEvent(eventNames().textInputEvent, true, true, view, 0)
52 void TextEvent::initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data) argument
57 initUIEvent(type, canBubble, cancelable, view, 0);
H A DTextEvent.h40 static PassRefPtr<TextEvent> create(PassRefPtr<AbstractView> view, const String& data) argument
42 return adoptRef(new TextEvent(view, data));
H A DUIEvent.h40 static PassRefPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail) argument
42 return adoptRef(new UIEvent(type, canBubble, cancelable, view, detail));
48 AbstractView* view() const { return m_view.get(); } function in class:WebCore::UIEvent
H A DUIEventWithKeyState.h47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, argument
49 : UIEvent(type, canBubble, cancelable, view, detail)
H A DTouchEvent.cpp36 PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY,
38 : MouseRelatedEvent(type, true, true, view, 0, screenX, screenY, pageX, pageY,
48 PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY,
54 initUIEvent(type, true, true, view, 0);
34 TouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int pageX, int pageY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
46 initTouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtr<AbstractView> view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DWheelEvent.cpp37 WheelEvent::WheelEvent(float wheelTicksX, float wheelTicksY, PassRefPtr<AbstractView> view, argument
41 true, true, view, 0, screenX, screenY, pageX, pageY,
48 void WheelEvent::initWheelEvent(int wheelDeltaX, int wheelDeltaY, PassRefPtr<AbstractView> view, argument
55 initUIEvent(eventNames().mousewheelEvent, true, true, view, 0);
/external/webkit/WebKit/android/jni/
H A DWebFrameView.h52 WebCore::FrameView* view() const { function in class:android::WebFrameView
/external/webkit/WebCore/accessibility/chromium/
H A DAXObjectCacheChromium.cpp36 static ChromeClientChromium* toChromeClientChromium(FrameView* view) argument
38 Page* page = view->frame() ? view->frame()->page() : 0;
/external/webkit/WebCore/css/
H A DMedia.cpp44 FrameView* view = m_frame ? m_frame->view() : 0; local
45 if (view)
46 return view->mediaType();
/external/webkit/WebCore/platform/haiku/
H A DPopupMenuHaiku.cpp46 void PopupMenu::show(const IntRect& rect, FrameView* view, int index) argument
/external/webkit/WebCore/platform/qt/
H A DPlatformScreenQt.cpp65 QWidget* view = client->ownerWidget(); local
66 if (view)
67 return view->depth();
H A DPopupMenuQt.cpp49 void PopupMenu::show(const IntRect& rect, FrameView* view, int index) argument
52 view->frame()->page()->chrome()->client());
63 geometry.moveTopLeft(view->contentsToWindow(rect.topLeft()));
/external/webkit/WebCore/plugins/symbian/
H A DPluginContainerSymbian.cpp35 PluginContainerSymbian::PluginContainerSymbian(PluginView* view, QWidget* parent) argument
37 , m_pluginView(view)
/external/webkit/WebKit/qt/docs/webkitsnippets/webelement/
H A Dmain.cpp64 QWebView *view = new QWebView(0); local
65 frame = view->page()->mainFrame();
/external/webkit/WebKit/win/WebCoreSupport/
H A DEmbeddedWidget.h46 EmbeddedWidget(IWebEmbeddedView* view, WebCore::Element* element) argument
47 : m_view(view)
81 WebCore::IntRect m_clipRect; // The clip rect to apply to an embedded view.
/external/webkit/WebKitTools/DumpRenderTree/gtk/
H A DAccessibilityControllerGtk.cpp60 WebKitWebView* view = webkit_web_frame_get_web_view(mainFrame); local
62 // The presumed, desired rootElement is the parent of the web view.
63 GtkWidget* webViewParent = gtk_widget_get_parent(GTK_WIDGET(view));
/external/skia/src/views/
H A DSkViewPriv.cpp5 void SkView::Artist::draw(SkView* view, SkCanvas* canvas) argument
7 SkASSERT(view && canvas);
8 this->onDraw(view, canvas);
/external/webkit/WebCore/platform/chromium/
H A DScrollbarThemeChromium.cpp122 void ScrollbarThemeChromium::paintScrollCorner(ScrollView* view, GraphicsContext* context, const IntRect& cornerRect) argument
128 ScrollbarTheme::paintScrollCorner(view, context, cornerRect);
/external/webkit/WebCore/plugins/qt/
H A DPluginContainerQt.cpp64 PluginContainerQt::PluginContainerQt(PluginView* view, QWidget* parent) argument
66 , m_pluginView(view)
/external/webkit/WebCore/rendering/
H A DRenderFrame.cpp57 FrameView* view = static_cast<FrameView*>(widget());
63 view->setMarginWidth(marginw);
65 view->setMarginHeight(marginh);
72 FrameView* view = static_cast<FrameView*>(widget()); local
74 if (view->frame() && view->frame()->document() &&
75 view->frame()->document()->renderer() &&
76 view->frame()->document()->renderer()->isRenderView())
77 root = static_cast<RenderView*>(view->frame()->document()->renderer());
80 view
[all...]
/external/webkit/WebKit/chromium/src/
H A DWebInputEventConversion.cpp185 WebMouseEventBuilder::WebMouseEventBuilder(const ScrollView* view, const MouseEvent& event) argument
225 IntPoint p = view->contentsToWindow(IntPoint(event.pageX(), event.pageY()));

Completed in 272 milliseconds

123456