diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-07 03:25:48 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-07 03:25:48 +0000 |
commit | dbb66e6bf4914172a96f5121b1ffcad73fb0826d (patch) | |
tree | d8ad643a76f008edd687b2a6fc73fbc0293f2227 /ui/views/examples/examples_window.cc | |
parent | b5630e5b4504b033d8262eb902ddc867477d1cdf (diff) | |
download | chromium_src-dbb66e6bf4914172a96f5121b1ffcad73fb0826d.zip chromium_src-dbb66e6bf4914172a96f5121b1ffcad73fb0826d.tar.gz chromium_src-dbb66e6bf4914172a96f5121b1ffcad73fb0826d.tar.bz2 |
Views based implementation of treeview. There are a couple of things
left to resolve: editing, context menus and auto_expand_children.
BUG=109141
TEST=none
R=ben@chromium.org
Review URL: http://codereview.chromium.org/9120014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116807 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/examples/examples_window.cc')
-rw-r--r-- | ui/views/examples/examples_window.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/views/examples/examples_window.cc b/ui/views/examples/examples_window.cc index 9aad8ed..a60baa6 100644 --- a/ui/views/examples/examples_window.cc +++ b/ui/views/examples/examples_window.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -31,6 +31,7 @@ #include "ui/views/examples/text_example.h" #include "ui/views/examples/textfield_example.h" #include "ui/views/examples/throbber_example.h" +#include "ui/views/examples/tree_view_example.h" #include "ui/views/examples/widget_example.h" #include "ui/views/focus/accelerator_handler.h" #include "ui/views/layout/grid_layout.h" @@ -110,6 +111,7 @@ class ExamplesWindowContents : public views::WidgetDelegateView { // Adds all the individual examples to the tab strip. void AddExamples() { + AddExample(new TreeViewExample); AddExample(new BubbleExample); AddExample(new ButtonExample); AddExample(new ComboboxExample); |