OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_COCOA_TABLE_MODEL_ARRAY_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_TABLE_MODEL_ARRAY_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_COCOA_TABLE_MODEL_ARRAY_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_COCOA_TABLE_MODEL_ARRAY_CONTROLLER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #import <Cocoa/Cocoa.h> | 9 #import <Cocoa/Cocoa.h> |
10 | 10 |
11 #include "app/table_model_observer.h" | 11 #include "app/table_model_observer.h" |
12 #include "base/cocoa_protocols_mac.h" | 12 #include "base/cocoa_protocols_mac.h" |
13 #include "base/scoped_nsobject.h" | 13 #include "base/scoped_nsobject.h" |
14 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
15 | 15 |
16 class RemoveRowsObserverBridge; | 16 class RemoveRowsObserverBridge; |
17 class RemoveRowsTableModel; | 17 class RemoveRowsTableModel; |
18 @class TableModelArrayController; | 18 @class TableModelArrayController; |
19 | 19 |
20 // This class functions as an adapter from a RemoveRowsTableModel to a Cocoa | 20 // This class allows you to use a RemoveRowsTableModel with Cocoa bindings. |
21 // NSArrayController, to be used with bindings. | |
22 // It maps the CanRemoveRows method to its canRemove property, and exposes | 21 // It maps the CanRemoveRows method to its canRemove property, and exposes |
23 // RemoveRows and RemoveAll as actions (remove: and removeAll:). | 22 // RemoveRows and RemoveAll as actions (remove: and removeAll:). |
24 // If the table model has groups, these are inserted into the list of arranged | 23 // If the table model has groups, these are inserted into the list of arranged |
25 // objects as group rows. | 24 // objects as group rows. |
26 // The designated initializer is the same as for NSArrayController, | 25 // The designated initializer is the same as for NSArrayController, |
27 // initWithContent:, but usually this class is instantiated from a nib file. | 26 // initWithContent:, but usually this class is instantiated from a nib file. |
28 // Clicking on a group row selects all rows belonging to that group, like it | 27 // Clicking on a group row selects all rows belonging to that group, like it |
29 // does in a Windows table_view. | 28 // does in a Windows table_view. |
30 // In order to show group rows, this class must be the delegate of the | 29 // In order to show group rows, this class must be the delegate of the |
31 // NSTableView. | 30 // NSTableView. |
(...skipping 13 matching lines...) Expand all Loading... |
45 // groups, it can be nil. | 44 // groups, it can be nil. |
46 - (void)bindToTableModel:(RemoveRowsTableModel*)model | 45 - (void)bindToTableModel:(RemoveRowsTableModel*)model |
47 withColumns:(NSDictionary*)columns | 46 withColumns:(NSDictionary*)columns |
48 groupTitleColumn:(NSString*)groupTitleColumn; | 47 groupTitleColumn:(NSString*)groupTitleColumn; |
49 | 48 |
50 - (IBAction)removeAll:(id)sender; | 49 - (IBAction)removeAll:(id)sender; |
51 | 50 |
52 @end | 51 @end |
53 | 52 |
54 #endif // CHROME_BROWSER_UI_COCOA_TABLE_MODEL_ARRAY_CONTROLLER_H_ | 53 #endif // CHROME_BROWSER_UI_COCOA_TABLE_MODEL_ARRAY_CONTROLLER_H_ |
| 54 |
OLD | NEW |