HomeSort by relevance Sort by last modified time
    Searched full:treeview (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/chromium_org/ui/views/controls/tree/
tree_view_controller.h 17 class TreeView;
21 // Controller for the treeview.
26 virtual void OnTreeViewSelectionChanged(TreeView* tree_view) = 0;
29 // TreeView is editable.
30 virtual bool CanEdit(TreeView* tree_view, ui::TreeModelNode* node);
tree_view.cc 46 const char TreeView::kViewClassName[] = "TreeView";
71 TreeView::TreeView()
94 TreeView::~TreeView() {
103 View* TreeView::CreateParentIfNecessary() {
109 void TreeView::SetModel(TreeModel* model) {
136 void TreeView::SetEditable(bool editable) {
143 void TreeView::StartEditing(TreeModelNode* node)
    [all...]
tree_view_controller.cc 12 bool TreeViewController::CanEdit(TreeView* tree_view, ui::TreeModelNode* node) {
tree_view.h 27 // TreeView displays hierarchical data as returned from a TreeModel. The user
34 class VIEWS_EXPORT TreeView : public ui::TreeModelObserver,
42 TreeView();
43 virtual ~TreeView();
48 // Sets the model. TreeView does not take ownership of the model.
104 // Sets the controller, which may be null. TreeView does not take ownership
349 // The editor; lazily created and never destroyed (well, until TreeView is
391 DISALLOW_COPY_AND_ASSIGN(TreeView);
tree_view_unittest.cc 66 TreeView tree_;
69 std::string InternalNodeAsString(TreeView::InternalNode* node);
104 tree_.IncrementSelection(next ? TreeView::INCREMENT_NEXT :
105 TreeView::INCREMENT_PREVIOUS);
133 TreeView::InternalNode* node) {
  /external/clang/tools/diagtool/
CMakeLists.txt 15 TreeView.cpp
TreeView.cpp 1 //===- TreeView.cpp - diagtool tool for printing warning flags ------------===//
27 TreeView)
135 int TreeView::run(unsigned int argc, char **argv, llvm::raw_ostream &out) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 47 tv_style = style.layout('Treeview')
49 # "erase" Treeview layout
50 style.layout('Treeview', '')
51 self.assertEqual(style.layout('Treeview'),
56 style.layout('Treeview', tv_style)
57 self.assertEqual(style.layout('Treeview'), tv_style)
63 self.assertRaises(Tkinter.TclError, style.layout, 'Treeview',
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_style.py 47 tv_style = style.layout('Treeview')
49 # "erase" Treeview layout
50 style.layout('Treeview', '')
51 self.assertEqual(style.layout('Treeview'),
56 style.layout('Treeview', tv_style)
57 self.assertEqual(style.layout('Treeview'), tv_style)
63 self.assertRaises(Tkinter.TclError, style.layout, 'Treeview',
  /external/chromium_org/ui/views/examples/
tree_view_example.h 20 class TreeView;
54 virtual void OnTreeViewSelectionChanged(TreeView* tree_view) OVERRIDE;
55 virtual bool CanEdit(TreeView* tree_view, ui::TreeModelNode* node) OVERRIDE;
71 TreeView* tree_view_;
tree_view_example.cc 42 tree_view_ = new TreeView();
109 void TreeViewExample::OnTreeViewSelectionChanged(TreeView* tree_view) {
120 bool TreeViewExample::CanEdit(TreeView* tree_view,
  /external/chromium_org/chrome/browser/ui/views/
collected_cookies_views.h 28 class TreeView;
66 virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view) OVERRIDE;
83 views::View* CreateScrollView(views::TreeView* pane);
89 void AddContentException(views::TreeView* tree_view, ContentSetting setting);
107 views::TreeView* allowed_cookies_tree_;
108 views::TreeView* blocked_cookies_tree_;
  /external/chromium/chrome/browser/ui/views/
collected_cookies_win.h 62 virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view);
77 void AddContentException(views::TreeView* tree_view, ContentSetting setting);
95 views::TreeView* allowed_cookies_tree_;
96 views::TreeView* blocked_cookies_tree_;
  /external/chromium_org/ui/oak/
oak_window.h 47 virtual void OnTreeViewSelectionChanged(views::TreeView* tree) OVERRIDE;
51 scoped_ptr<views::TreeView> tree_;
oak_window.cc 113 void OakWindow::OnTreeViewSelectionChanged(views::TreeView* tree) {
123 tree_.reset(new views::TreeView);
  /external/chromium/chrome/browser/ui/gtk/
task_manager_gtk.h 55 // Sets up the treeview widget.
64 // Sets the treeview row data. |row| is an index into the model and |iter|
65 // is the current position in the treeview.
68 // Queries the treeview for the selected rows, and kills those processes.
90 // Changed signal handler that is sent when the treeview selection changes.
204 // The treeview that contains the process list.
task_manager_gtk.cc 157 // Shows or hides a treeview column.
158 void TreeViewColumnSetVisible(GtkWidget* treeview, TaskManagerColumn colid,
161 GTK_TREE_VIEW(treeview), TreeViewColumnIndexFromID(colid));
165 bool TreeViewColumnIsVisible(GtkWidget* treeview, TaskManagerColumn colid) {
167 GTK_TREE_VIEW(treeview), TreeViewColumnIndexFromID(colid));
171 void TreeViewInsertColumnWithPixbuf(GtkWidget* treeview, int resid) {
176 gtk_tree_view_set_tooltip_column(GTK_TREE_VIEW(treeview), colid);
193 gtk_tree_view_append_column(GTK_TREE_VIEW(treeview), column);
198 void TreeViewInsertColumnWithName(GtkWidget* treeview,
202 GTK_TREE_VIEW(treeview), -1
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
task_manager_gtk.h 53 // Sets up the treeview widget.
62 // Sets the treeview row data. |row| is an index into the model and |iter|
63 // is the current position in the treeview.
66 // Queries the treeview for the selected rows, and kills those processes.
88 // Changed signal handler that is sent when the treeview selection changes.
223 // The treeview that contains the process list.
task_manager_gtk.cc 167 // Shows or hides a treeview column.
168 void TreeViewColumnSetVisible(GtkWidget* treeview, TaskManagerColumn colid,
171 GTK_TREE_VIEW(treeview), TreeViewColumnIndexFromID(colid));
175 bool TreeViewColumnIsVisible(GtkWidget* treeview, TaskManagerColumn colid) {
177 GTK_TREE_VIEW(treeview), TreeViewColumnIndexFromID(colid));
183 void TreeViewInsertTaskColumn(GtkWidget* treeview, int resid) {
188 gtk_tree_view_set_tooltip_column(GTK_TREE_VIEW(treeview), colid);
199 gtk_tree_view_append_column(GTK_TREE_VIEW(treeview), column);
204 void TreeViewInsertColumnWithName(GtkWidget* treeview,
208 GTK_TREE_VIEW(treeview), -1
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
TreeViewView.java 27 import com.android.hierarchyviewerlib.ui.TreeView;
46 private TreeView mTreeView;
59 mTreeView = new TreeView(treeViewContainer);
  /external/chromium_org/chrome/browser/ui/views/bookmarks/
bookmark_editor_view.h 29 class TreeView;
59 // Model for the TreeView. Trivial subclass that doesn't allow titles with
95 virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view) OVERRIDE;
96 virtual bool CanEdit(views::TreeView* tree_view,
224 // Model driving the TreeView.
228 views::TreeView* tree_view_;
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_editor_view.h 56 // Model for the TreeView. Trivial subclass that doesn't allow titles with
98 virtual void OnTreeViewSelectionChanged(views::TreeView* tree_view);
99 virtual bool CanEdit(views::TreeView* tree_view, ui::TreeModelNode* node);
224 // Model driving the TreeView.
228 views::TreeView* tree_view_;
  /external/chromium/chrome/browser/debugger/manual_tests/
highlight-nodes.html 6 <p>This page has basic tests of node highlighting in the inspected page. To test, load this page, open the DevTools and mouseover the nodes in the treeview of the inspector. You should see the highlights happen with the appropriate padding/border/margin/content highlights.</p>
  /external/chromium_org/third_party/WebKit/ManualTests/inspector/
highlight-nodes.html 6 <p>This page has basic tests of node highlighting in the inspected page. To tests, load this page, open the inspector and mouseover the nodes in the treeview of the inspector. You should see the highlights happen with the appropriate padding/border/margin/content highlights.</p>
  /external/chromium_org/third_party/opus/src/doc/
header.html 10 $treeview

Completed in 1924 milliseconds

1 2 3 4