OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tableview
(Results
1 - 25
of
57
) sorted by null
1
2
3
/external/chromium_org/ui/views/controls/table/
table_view.cc
73
struct
TableView
::SortHelper {
74
explicit SortHelper(
TableView
* table) : table(table) {}
80
TableView
* table;
86
struct
TableView
::GroupSortHelper {
87
explicit GroupSortHelper(
TableView
* table) : table(table) {}
100
TableView
* table;
104
TableView
::VisibleColumn::VisibleColumn() : x(0), width(0) {}
106
TableView
::VisibleColumn::~VisibleColumn() {}
108
TableView
::PaintRegion::PaintRegion()
115
TableView
::PaintRegion::~PaintRegion() {
[
all
...]
table_view_observer.h
12
class
TableView
;
15
// TableViewObserver is notified about the
TableView
selection.
table_header.h
14
class
TableView
;
25
explicit TableHeader(
TableView
* table);
63
TableView
* table_;
table_grouper.h
15
// TableGrouper is used by
TableView
to group a set of rows and treat them
table_utils.h
19
class
TableView
;
53
int GetClosestVisibleColumnIndex(const
TableView
* table, int x);
table_view.h
18
// A
TableView
is a view that displays multiple rows with any number of columns.
19
//
TableView
is driven by a TableModel. The model returns the contents
21
//
TableView
of changes to the model so that the display may be updated
24
//
TableView
itself has an observer that is notified when the selection
51
class VIEWS_EXPORT
TableView
89
TableView
(ui::TableModel* model,
93
virtual ~
TableView
();
108
// Sets the TableGrouper.
TableView
does not own |grouper| (common use case is
112
// Returns the number of rows in the
TableView
.
343
DISALLOW_COPY_AND_ASSIGN(
TableView
);
[
all
...]
/external/chromium_org/third_party/skia/src/views/mac/
SkOptionsTableView.mm
146
- (NSInteger)numberOfRowsInTableView:(NSTableView *)
tableView
{
150
- (id)
tableView
:(NSTableView *)
tableView
objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
151
int columnIndex = [
tableView
columnWithIdentifier:[tableColumn identifier]];
164
- (NSCell *)
tableView
:(NSTableView *)
tableView
dataCellForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
166
int columnIndex = [
tableView
columnWithIdentifier:[tableColumn identifier]];
175
- (void)
tableView
:(NSTableView *)
tableView
willDisplayCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
176
int columnIndex = [
tableView
columnWithIdentifier:[tableColumn identifier]]
[
all
...]
/external/skia/src/views/mac/
SkOptionsTableView.mm
146
- (NSInteger)numberOfRowsInTableView:(NSTableView *)
tableView
{
150
- (id)
tableView
:(NSTableView *)
tableView
objectValueForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
151
int columnIndex = [
tableView
columnWithIdentifier:[tableColumn identifier]];
164
- (NSCell *)
tableView
:(NSTableView *)
tableView
dataCellForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
166
int columnIndex = [
tableView
columnWithIdentifier:[tableColumn identifier]];
175
- (void)
tableView
:(NSTableView *)
tableView
willDisplayCell:(id)cell forTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row {
176
int columnIndex = [
tableView
columnWithIdentifier:[tableColumn identifier]]
[
all
...]
/external/chromium_org/ui/oak/
oak_window.h
13
class
TableView
;
57
scoped_ptr<views::
TableView
> details_;