- 031e4d3 linux: reduce header interdependencies by [email protected] · 16 years ago
- b5f94de Downward drag after mouse-down is now causing bookmark bar folders to open, rather than drag. The bar folder can still be dragged in any other direction. by [email protected] · 16 years ago
- 0b2fa2b Porting the table view to Linux toolkit views. by [email protected] · 16 years ago
- a136016 Adds link to bookmark bar that when clicked imports bookmarks. I also by [email protected] · 16 years ago
- d7fc9794 Fixes two issues from valgrind, and some cleanup: by [email protected] · 16 years ago
- 09fe949 Fix style issues in View class. by [email protected] · 16 years ago
- a340697 Attempt 2 at: by [email protected] · 16 years ago
- 6c856ae Revert 30903 - Gets find bar animation/clipping to work on views/gtk. by [email protected] · 16 years ago
- b7aaf42 Gets find bar animation/clipping to work on views/gtk. by [email protected] · 16 years ago
- 45da6c7 CompactLocationBar 1st step: by [email protected] · 16 years ago
- a64f3390 Accessibility information from the renderer was not being returned to tools like screen readers, etc. by [email protected] · 16 years ago
- 0e0e6d75 Enabling the default button behavior on Linux toolkit_views. by [email protected] · 16 years ago
- 7f14e1f Relanding focus traversal on Linux toolkit views. by [email protected] · 16 years ago
- 595513f Reverting 27504, it breaks the interactive ui tests on Windows. by [email protected] · 16 years ago
- cec6c9c5 See original review at http://codereview.chromium.org/251001/show by [email protected] · 16 years ago
- 96f960d Lands http://codereview.chromium.org/201102 for Oshima: by [email protected] · 16 years ago
- f8dce00 Landing oshima patch. by [email protected] · 16 years ago
- 5c9e97a First cut at implementation of FindBar for views / gtk by [email protected] · 16 years ago
- 4768c65b Adds support for initiating drags from bookmark menus. by [email protected] · 16 years ago
- 134c47b9 Relands drop support: by [email protected] · 16 years ago
- 302e0e1 Reverts recent patch as broke build on toolkit_views. by [email protected] · 16 years ago
- 493ba6474 Adds drop support for views on gtk. As X lazily provides drop data I by [email protected] · 16 years ago
- 148d105 This CL adds accelerators to the Linux toolkit views. by [email protected] · 16 years ago
- 82166b6 This CL removes the last (major) Windows specific part out of the focus manager. by [email protected] · 16 years ago
- c39e715 Revert : by [email protected] · 16 years ago
- 3c3ba74 Relanding focus manager refactoring with build fix, see:http://codereview.chromium.org/125148BUG=NoneTEST=NoneTBR=ben by [email protected] · 16 years ago
- 42c35a5 Reverting 18872. Broke the Windows build. by [email protected] · 16 years ago
- a109d02 Removed the last Windows specific part out of the focus manager. HWNDs are not subclassed anymore.The FocusManager is now created and owned by top-level WidgetWins.BUG=NoneTEST=Run the unit tests, UI tests, interactive UI tests. Fully test the focus behavior in the browser: activate/deactivate the browser windows, make sure focus is remembered. Switch tabs, make sure focus is remembered for each tab. make sure accelerators work as expected. Test focus traversal in a web page, in the option dialog. by [email protected] · 16 years ago
- 4bd23f3 A new menu system for views. by [email protected] · 16 years ago
- 71421c3f Fix keyboard accelerator registration issue in views::View. by [email protected] · 16 years ago
- a52ca467 Implement some basic functionality in RootView and View. by [email protected] · 16 years ago
- 9abf8dd6 Replace HCURSOR usage in views::View with a new gfx::NativeCursor type that also supports GdkCursor*, and wires this up with the existing implementors of the GetCursorForPoint method. by [email protected] · 16 years ago
- 319d4ae Removes some NOTIMPLEMENTED now that TooltipManager exists on linux. by [email protected] · 16 years ago
- 8252251 ChromeCanvas->gfx::Canvas by [email protected] · 16 years ago
- ca13d804c Clean-up of the accelerator code. by [email protected] · 16 years ago
- d5282e7 This CL updates chrome to the latest version of skia, retrieved via DEPS, and by [email protected] · 16 years ago
- 0d52b230 Removing floating views, they are not used anymore. by [email protected] · 16 years ago
- 3ee83f2c Add a new ViewsDelegate interface and implementation in the windows browser UI. by [email protected] · 16 years ago
- 4a19063 This is the first pass at themes. by [email protected] · 16 years ago
- 7ccc52b7 Add PreferredSizeChanged() to View to allow subviews to notify their parents that they'd really like another layout.R=skyTEST=none by [email protected] · 16 years ago
- 2362e4f Move src/chrome/views to src/views. RS=darin http://crbug.com/11387 by [email protected] · 16 years ago[Renamed (98%) from chrome/views/view.cc]
- 3712621 Move: drag_drop_types, favicon_size, icon_util, insets, path, message_box_flags, os_exchange_data to src/app by [email protected] · 16 years ago
- a5da0aa9 Move chrome_canvas to app/gfx by [email protected] · 16 years ago
- a92b864 Move l10n_util to app/ by [email protected] · 16 years ago
- cd8c4790 Adds a GetWindow method to View. by [email protected] · 16 years ago
- 6c50fc5 Issue 21268: The RemakeSee http://codereview.chromium.org/21268 for the original issue which was partially reverted due to a possible regression. Issue 8819 was created to track the part of the original fix which was reverted.A double-click come as an event which follows a single-click. The core of this change is to makesure that a double-click arrives at the object which handled the single-click which preceeded it.If it does not, then the double-click is transformed into a single-click at the dispatch level.The tricky part is that a single-click and the double-click which follows it may not both be clientor non-client. So, all double-clicks (client or non-client) are now centrally handled and replacedwhen needed by second single-clicks.Note that the behavior which was reverted was to discard a double-click rather than reducing it toa single-click. The bug filed as a regression involved using a double-middle-click as two single-clicks when destroying compressed tabs sequentially.BUG=8819 by [email protected] · 16 years ago
- 464fdb3 Lands http://codereview.chromium.org/43009 . by [email protected] · 16 years ago
- f3735c5d Render into a ChromeCanvasPaint object in a RootView under Linux. by [email protected] · 16 years ago
- fef1064 Renames AccessibleWrapper to ViewAccessibilityWrapper for clarity. by [email protected] · 16 years ago
- 2a2576e9 Move widget related files into views/widget by [email protected] · 16 years ago
- 4a8d327 Unrevert 11294. by [email protected] · 16 years ago
- b6f87899 NO CODE CHANGE by [email protected] · 16 years ago
- 5c2b98b Fixes crash in ResizeCorner. ResizeCorner was caching the BrowserView by [email protected] · 16 years ago
- 4c9b24c Revert r9953 since it caused regressions like: http://crbug.com/8287 by [email protected] · 16 years ago
- 32670b0 Support DWM switching. by [email protected] · 16 years ago
- bab44ba An attempt at fixing a crasher reported from the field. by [email protected] · 17 years ago
- d5c4f38 Fixing 8010: Missing options from Options dlg. by [email protected] · 17 years ago
- 4f3dc37 The find bar should be owned and managed from the BrowserView, not the WebContentsView, since it's part of the "chrome". by [email protected] · 17 years ago
- 67a8eb1 Solved 2 bugs which caused Chrome to maximize itself whendouble clicking, either on the new tab button, on the closetab button or on a single tab.BUG=2827BUG=3787The problem comes from the Windows event sequence upon adouble-click (simplified here):1 - hit-test2 - mouse-down4 - mouse-up/click5 - hit-test6 - mouse down7 - mouse up/double-clickThe 1st hit-test is always performed correctly, returningclient for tabs and non-client for the tab-strip (background).The 2nd hit test is not performed correctly to avoid crashesin Chromebot from events being processed while tabs are animating.Since we have no record of these crashes, Ben prefers we keepthis special-case, even though we are responding incorrectlyto the windows hit-test. So, when the tabs are animating wereturn a HTNOWHERE hit which the caller translates into anHTCAPTION hit. This even though a tab-control (new-tab/close-tab)may have been hit.The problem is that having returned HTCAPTION to Windows defaultmessage handling, we get a NON-CLIENT double-click event insteadof a standard one.To keep the behavior of the second hit-test AND prevent theChrome window from maximizing, this change simply declaresthe non-client double-click as handled when the tabs areanimating.Another trick we pulled in the hit-test is to return HTCAPTIONwhen a single tab is present. This allows the entire window to be dragged but causes the context menu to be wrong and the windowto maximize when double clicking on the single tab.The solution here is to correct return a client hit for a singletab and, upon handling a client single-click, delegate to thenon-client single-click default handler. by [email protected] · 17 years ago
- 2fb6d46 Make system menus show up at the right place for all frames, whether they're triggered by clicking the window icon or hitting alt-space. Make clicking the icon for windows without a non-client view (e.g. the Bookmark Manager on Aero Glass) bring up the system menu. by [email protected] · 17 years ago
- 830e206 Don't focus unfocusable things. Review URL: http://codereview.chromium.org/20348 by [email protected] · 17 years ago
- b6296fd Fix an issue with HWNDView visibility where invisible (i.e. SetVisible(false)) views would have ShowWindow() called on them, which was bogus. by [email protected] · 17 years ago
- 6ff244f Fix the broken commit in r8250. The problem was that basictypes.h by [email protected] · 17 years ago
- e044f8d Revert "Add #ifdefs to the views/ code and move windows specific code by [email protected] · 17 years ago
- 81514c5 Add #ifdefs to the views/ code and move windows specific code into their own files to get some files compiling. by [email protected] · 17 years ago
- bb515ed Constify the params of a couple View functions, which I'll need for an upcoming change to be able to call these from someone else's const member function. by [email protected] · 17 years ago
- 3b680a8 Replace some CRects with gfx::Rect by [email protected] · 17 years ago
- a0dde12 Rename Container->Widget by [email protected] · 17 years ago
- 9a3f0ac2 Make border and background setting and getting non-virtual and use the correct style. I was debugging in here and this was annoying me, since there is no reason for these functions to be virtual. by [email protected] · 17 years ago
- 8c30313 Fixes bug in showing context menu for buttons. In particular because by [email protected] · 17 years ago
- f704ee7 Changes tree/table to pass in an appropriate location when the context by [email protected] · 17 years ago
- e8e0f36 In dialogs, when the focus moves to a button, that button should become the default button. by [email protected] · 17 years ago
- 042811c Adds support for keyboard-triggered (through VK_APPS and SHIFT+VK_F10) right-click menu, specifically on the toolbar's back/forward buttons. by [email protected] · 17 years ago
- 066e70a Adds a horizontal split view. by [email protected] · 17 years ago
- 0a1d36b2 Convert SchedulePaint and a few other methods to use gfx types. by [email protected] · 17 years ago
- c2dacc9 Rename ChromeViews namespace to views by [email protected] · 17 years ago
- 80f8b9f Make View::SetBounds take a const gfx::Rect& instead of a const CRect& by [email protected] · 17 years ago
- 4d0bd10 Rename ViewContainer to Container and HWNDViewContainer to ContainerWin. by [email protected] · 17 years ago
- 154f8bc Convert GetPreferredSize from: by [email protected] · 17 years ago
- 613b806 Convert HitTest/GetViewForPoint to use gfx::Point by [email protected] · 17 years ago
- 96b667d Change all ConvertPointTo* methods to use gfx::Point instead of CPoint. by [email protected] · 17 years ago
- 0d8ea70 Replace View::GetBounds(CRect* bounds) const; with gfx::Rect bounds() const. by [email protected] · 17 years ago
- 6332998 Fix RTL issues with opaque frame. by [email protected] · 17 years ago
- de56f378 Merge the chrome_webkit_merge_branch back on to trunk. This brings us by [email protected] · 17 years ago
- 6f3bb6c Rename legacy methods that were in CamelCase to unix_hacker. by [email protected] · 17 years ago
- 82739cf Allow Views to support an optional hit-test mask. Make hittest use this. by [email protected] · 17 years ago
- bf09a50 Use a more compact license header in source files. by license.bot · 17 years ago
- 1eb89e8 Large patch set (159 files total) to cleanup the includes. by [email protected] · 17 years ago
- 09911bf Add chrome to the repository. by initial.commit · 17 years ago