Searched refs:view (Results 1 - 25 of 774) sorted by relevance

1234567891011>>

/external/chromium/webkit/glue/
H A Dwebview_unittest.cc15 WebView* view = test_shell_->webView(); local
16 ASSERT_TRUE(view != 0);
18 view->setIsActive(true);
19 EXPECT_TRUE(view->isActive());
21 view->setIsActive(false);
22 EXPECT_FALSE(view->isActive());
24 view->setIsActive(true);
25 EXPECT_TRUE(view->isActive());
/external/webkit/Source/WebCore/page/mac/
H A DChromeMac.mm29 void Chrome::focusNSView(NSView* view)
34 if (firstResponder == view)
37 if (![view window] || ![view superview] || ![view acceptsFirstResponder])
40 client()->makeFirstResponder(view);
43 // remove the view from its superview while it's being made
46 if (![view superview])
/external/webkit/Source/WebKit/qt/docs/webkitsnippets/
H A Dqtwebkit_qwebview_snippet.cpp6 view->page()->history();
11 view->page()->settings();
16 view->triggerAction(QWebPage::Copy);
21 view->page()->triggerPageAction(QWebPage::Stop);
26 view->page()->triggerPageAction(QWebPage::GoBack);
31 view->page()->triggerPageAction(QWebPage::GoForward);
/external/chromium/chrome/browser/resources/gpu_internals/
H A Dinfo_view.css6 #info-view {
10 #info-view h3 {
14 #info-view .row-title {
18 #info-view table {
23 #info-view table,
24 #info-view th,
25 #info-view td {
32 #info-view .feature-green {
36 #info-view .feature-yellow {
40 #info-view
[all...]
H A Dtimeline_view.css6 .timeline-view {
13 .timeline-view > .timeline {
19 .timeline-view > .timeline > .timeline {
23 .timeline-view .summary-container {
31 .timeline-view .selection {
35 .timeline-view .selection ul {
/external/webkit/Source/WebKit2/Shared/mac/
H A DNativeWebKeyboardEventMac.mm33 NativeWebKeyboardEvent::NativeWebKeyboardEvent(NSEvent *event, NSView *view)
34 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(event, view))
H A DNativeWebMouseEventMac.mm33 NativeWebMouseEvent::NativeWebMouseEvent(NSEvent* event, NSView* view)
34 : WebMouseEvent(WebEventFactory::createWebMouseEvent(event, view))
/external/webkit/Source/WebCore/page/
H A DScreen.cpp60 return static_cast<unsigned>(screenRect(m_frame->view()).height());
67 return static_cast<unsigned>(screenRect(m_frame->view()).width());
74 return static_cast<unsigned>(screenDepth(m_frame->view()));
81 return static_cast<unsigned>(screenDepth(m_frame->view()));
88 return static_cast<int>(screenAvailableRect(m_frame->view()).x());
95 return static_cast<int>(screenAvailableRect(m_frame->view()).y());
102 return static_cast<unsigned>(screenAvailableRect(m_frame->view()).height());
109 return static_cast<unsigned>(screenAvailableRect(m_frame->view()).width());
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebUndoClient.cpp35 void WebUndoClient::registerEditCommand(WebView* view, PassRefPtr<WebEditCommandProxy> prpCommand, WebPageProxy::UndoOrRedo undoOrRedo) argument
41 m_client.registerEditCommand(toAPI(view), toAPI(command.release().releaseRef()), (undoOrRedo == WebPageProxy::Undo) ? kWKViewUndo : kWKViewRedo, m_client.clientInfo);
44 void WebUndoClient::clearAllEditCommands(WebView* view) argument
49 m_client.clearAllEditCommands(toAPI(view), m_client.clientInfo);
52 bool WebUndoClient::canUndoRedo(WebView* view, WebPageProxy::UndoOrRedo undoOrRedo) argument
57 return m_client.canUndoRedo(toAPI(view), undoOrRedo, m_client.clientInfo);
60 void WebUndoClient::executeUndoRedo(WebView* view, WebPageProxy::UndoOrRedo undoOrRedo) argument
65 m_client.executeUndoRedo(toAPI(view), undoOrRedo, m_client.clientInfo);
/external/webkit/Source/WebCore/dom/
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.cpp39 PassRefPtr<TextEvent> TextEvent::create(PassRefPtr<AbstractView> view, const String& data, TextEventInputType inputType) argument
41 return adoptRef(new TextEvent(view, data, inputType));
44 PassRefPtr<TextEvent> TextEvent::createForPlainTextPaste(PassRefPtr<AbstractView> view, const String& data, bool shouldSmartReplace) argument
46 return adoptRef(new TextEvent(view, data, 0, shouldSmartReplace, false));
49 PassRefPtr<TextEvent> TextEvent::createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle) argument
51 return adoptRef(new TextEvent(view, "", data, shouldSmartReplace, shouldMatchStyle));
54 PassRefPtr<TextEvent> TextEvent::createForDrop(PassRefPtr<AbstractView> view, const String& data) argument
56 return adoptRef(new TextEvent(view, data, TextEventInputDrop));
66 TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, TextEventInputType inputType) argument
67 : UIEvent(eventNames().textInputEvent, true, true, view,
76 TextEvent(PassRefPtr<AbstractView> view, const String& data, PassRefPtr<DocumentFragment> pastingFragment, bool shouldSmartReplace, bool shouldMatchStyle) argument
91 initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data) argument
[all...]
/external/webkit/Source/WebCore/platform/mac/
H A DWebCoreView.m50 NSView *view = [self documentView];
51 return view ? [view _webcore_effectiveFirstResponder] : [super _webcore_effectiveFirstResponder];
60 NSView *view = [self contentView];
61 return view ? [view _webcore_effectiveFirstResponder] : [super _webcore_effectiveFirstResponder];
/external/webkit/Source/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/chromium/chrome/browser/ui/cocoa/tab_contents/
H A Dweb_drop_target.h30 // Keep track of the render view host we're dragging over. If it changes
46 // calls from the view system. Communicates the drag messages to WebCore.
48 view:(NSView*)view;
51 view:(NSView*)view;
53 view:(NSView*)view;
72 // Given a point in window coordinates and a view in that window, return a
73 // flipped point in the coordinate system of |view|
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderFrame.cpp51 FrameView* view = static_cast<FrameView*>(widget());
57 view->setMarginWidth(marginWidth);
59 view->setMarginHeight(marginHeight);
65 FrameView* view = static_cast<FrameView*>(widget()); local
66 RenderView* root = view ? view->frame()->contentRenderer() : 0;
71 if (view)
72 view->layout();
89 setWidth(max(view->contentsWidth() + borderAndPaddingWidth(), width()));
90 setHeight(max(view
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DWorkSpaceController.java55 private final WorkSpaceView view = new WorkSpaceView(); field in class:WorkSpaceController
61 view.resultPane = (JPanel) runner.getView();
62 view.initComponents();
68 this.view.setTitle("gUnitEditor");
69 this.view.setVisible(true);
70 this.view.pack();
74 return view.paneEditor.getView();
78 this.view.tabEditors.addChangeListener(new TabChangeListener());
79 this.view.listRules.setListSelectionListener(new RuleListSelectionListener());
80 this.view
[all...]
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestwebdatasource.c37 WebKitWebView* view; local
42 view = WEBKIT_WEB_VIEW(webkit_web_view_new());
43 g_object_ref_sink(view);
44 frame = webkit_web_view_get_main_frame(view);
55 g_object_unref(view);
58 static void notify_load_status_unreachable_cb(WebKitWebView* view, GParamSpec* pspec, GMainLoop* loop) argument
60 WebKitLoadStatus status = webkit_web_view_get_load_status (view);
61 WebKitWebFrame* frame = webkit_web_view_get_main_frame(view);
76 static void notify_load_status_cb(WebKitWebView* view, GParamSpec* pspec, GMainLoop* loop) argument
78 WebKitLoadStatus status = webkit_web_view_get_load_status (view);
120 WebKitWebView* view; local
142 notify_load_status_lifetime_cb(WebKitWebView* view, GParamSpec* pspec, GMainLoop* loop) argument
159 WebKitWebView* view; local
[all...]
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DPageClientQt.cpp130 QGraphicsView* view = object->scene()->views()[0];
131 if (view && view->viewport() && view->viewport()->inherits("QGLWidget")) {
159 platformLayerProxy = new PlatformLayerProxyQWidget(page->mainFrame(), static_cast<TextureMapperContentLayer*>(layer), view);
173 QWebFramePrivate::core(page->mainFrame())->view()->syncCompositingStateIncludingSubframes();
179 view->scroll(qreal(dx), qreal(dy), rectToScroll);
184 view->update(dirtyRect);
189 view->setAttribute(Qt::WA_InputMethodEnabled, enable);
194 return view
[all...]
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DWKCACFViewLayerTreeHost.cpp53 SOFT_LINK(WebKitQuartzCoreAdditions, WKCACFViewSetLayer, void, __cdecl, (WKCACFViewRef view, CACFLayerRef layer), (view, layer))
54 SOFT_LINK(WebKitQuartzCoreAdditions, WKCACFViewUpdate, void, __cdecl, (WKCACFViewRef view, HWND window, const CGRect* bounds), (view, window, bounds))
55 SOFT_LINK(WebKitQuartzCoreAdditions, WKCACFViewCanDraw, bool, __cdecl, (WKCACFViewRef view), (view))
56 SOFT_LINK(WebKitQuartzCoreAdditions, WKCACFViewDraw, void, __cdecl, (WKCACFViewRef view), (view))
57 SOFT_LINK(WebKitQuartzCoreAdditions, WKCACFViewFlushContext, void, __cdecl, (WKCACFViewRef view), (view))
96 contextDidChangeCallback(WKCACFViewRef view, void* info) argument
[all...]
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebPluginController.h51 + (BOOL)isPlugInView:(NSView *)view;
53 - (id)initWithDocumentView:(NSView *)view;
57 - (void)addPlugin:(NSView *)view;
58 - (void)destroyPlugin:(NSView *)view;
60 - (void)pluginViewCreated:(NSView *)view;
61 + (void)pluginViewHidden:(NSView *)view;
/external/chromium/chrome/browser/ui/views/
H A Daccessibility_event_router_views.h29 // accessible view.
40 // Internal information about a particular view to override the
41 // information we get directly from the view.
45 // If nonempty, will use this name instead of the view's label.
55 // Handle an accessibility event generated by a view.
57 views::View* view, ui::AccessibilityTypes::Event event_type);
60 // not necessarily its own view).
76 // Checks the type of the view and calls one of the more specific
79 views::View* view, NotificationType type);
81 // Return the name of a view
[all...]
H A Daccessibility_event_router_views.cc28 #include "views/view.h"
49 views::View* view, ui::AccessibilityTypes::Event event_type) {
58 view, NotificationType::ACCESSIBILITY_CONTROL_FOCUSED);
63 view, NotificationType::ACCESSIBILITY_MENU_OPENED);
68 view, NotificationType::ACCESSIBILITY_MENU_CLOSED);
73 view, NotificationType::ACCESSIBILITY_TEXT_CHANGED);
77 view, NotificationType::ACCESSIBILITY_CONTROL_ACTION);
117 std::string AccessibilityEventRouterViews::GetViewName(views::View* view) { argument
119 view->GetAccessibleState(&state);
124 views::View* view, NotificationTyp
48 HandleAccessibilityEvent( views::View* view, ui::AccessibilityTypes::Event event_type) argument
123 DispatchAccessibilityNotification( views::View* view, NotificationType type) argument
170 SendButtonNotification( views::View* view, NotificationType type, Profile* profile) argument
176 SendLinkNotification( views::View* view, NotificationType type, Profile* profile) argument
182 SendMenuNotification( views::View* view, NotificationType type, Profile* profile) argument
188 SendMenuItemNotification( views::View* view, NotificationType type, Profile* profile) argument
232 IsMenuEvent( views::View* view, NotificationType type) argument
252 SendLocationBarNotification( views::View* view, NotificationType type, Profile* profile) argument
263 SendTextfieldNotification( views::View* view, NotificationType type, Profile* profile) argument
276 SendComboboxNotification( views::View* view, NotificationType type, Profile* profile) argument
287 SendCheckboxNotification( views::View* view, NotificationType type, Profile* profile) argument
[all...]
/external/webkit/Source/WebKit2/UIProcess/API/C/win/
H A DWKView.h63 WK_EXPORT HWND WKViewGetWindow(WKViewRef view);
65 WK_EXPORT WKPageRef WKViewGetPage(WKViewRef view);
67 WK_EXPORT void WKViewSetViewUndoClient(WKViewRef view, const WKViewUndoClient* client);
68 WK_EXPORT void WKViewReapplyEditCommand(WKViewRef view, WKEditCommandRef command);
69 WK_EXPORT void WKViewUnapplyEditCommand(WKViewRef view, WKEditCommandRef command);
71 WK_EXPORT void WKViewSetParentWindow(WKViewRef view, HWND parentWindow);
72 WK_EXPORT void WKViewWindowAncestryDidChange(WKViewRef view);
73 WK_EXPORT void WKViewSetIsInWindow(WKViewRef view, bool isInWindow);
74 WK_EXPORT void WKViewSetInitialFocus(WKViewRef view, bool forward);
75 WK_EXPORT void WKViewSetScrollOffsetOnNextResize(WKViewRef view, WKSiz
[all...]
/external/chromium/chrome/browser/ui/cocoa/
H A Dbrowser_frame_view.h26 // "C" precluded us from inserting a view between the system frame and the
49 forView:(NSView*)view
55 + (NSColor*)titleColorForThemeView:(NSView*)view;
/external/chromium/chrome/browser/resources/net_internals/
H A Dtabswitcherview.css6 .tab-switcher-view {
10 .tab-switcher-view ul {
16 .tab-switcher-view {
22 .tab-switcher-view li {
27 html[dir=rtl] .tab-switcher-view li {
31 .tab-switcher-view a {
43 .tab-switcher-view a:hover {
48 .tab-switcher-view a:visited,
49 .tab-switcher-view a {
53 .tab-switcher-view
[all...]

Completed in 991 milliseconds

1234567891011>>