Home | History | Annotate | Download | only in table

Lines Matching refs:TableView

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() {}
117 TableView::TableView(ui::TableModel* model,
141 TableView::~TableView() {
148 void TableView::SetModel(ui::TableModel* model) {
160 View* TableView::CreateParentIfNecessary() {
169 void TableView::SetRowBackgroundPainter(
174 void TableView::SetGrouper(TableGrouper* grouper) {
179 int TableView::RowCount() const {
183 int TableView::SelectedRowCount() {
187 void TableView::Select(int model_row) {
194 int TableView::FirstSelectedRow() {
198 void TableView::SetColumnVisibility(int id, bool is_visible) {
221 void TableView::ToggleSortOrder(int visible_column_index) {
240 bool TableView::IsColumnVisible(int id) const {
248 void TableView::AddColumn(const ui::TableColumn& col) {
253 bool TableView::HasColumn(int id) const {
261 void TableView::SetVisibleColumnWidth(int index, int width) {
275 int TableView::ModelToView(int model_index) const {
284 int TableView::ViewToModel(int view_index) const {
293 void TableView::Layout() {
320 gfx::Size TableView::GetPreferredSize() {
327 bool TableView::OnKeyPressed(const ui::KeyEvent& event) {
370 bool TableView::OnMousePressed(const ui::MouseEvent& event) {
392 bool TableView::GetTooltipText(const gfx::Point& p,
397 bool TableView::GetTooltipTextOrigin(const gfx::Point& p,
402 void TableView::OnModelChanged() {
407 void TableView::OnItemsChanged(int start, int length) {
411 void TableView::OnItemsAdded(int start, int length) {
417 void TableView::OnItemsRemoved(int start, int length) {
440 gfx::Point TableView::GetKeyboardContextMenuLocation() {
458 void TableView::OnPaint(gfx::Canvas* canvas) {
565 void TableView::OnFocus() {
569 void TableView::OnBlur() {
573 void TableView::NumRowsChanged() {
579 void TableView::SetSortDescriptors(const SortDescriptors& sort_descriptors) {
586 void TableView::SortItemsAndUpdateMapping() {
611 int TableView::CompareRows(int model_row1, int model_row2) {
624 gfx::Rect TableView::GetRowBounds(int row) const {
628 gfx::Rect TableView::GetCellBounds(int row, int visible_column_index) const {
635 void TableView::AdjustCellBoundsForText(int visible_column_index,
649 void TableView::CreateHeaderIfNecessary() {
658 void TableView::UpdateVisibleColumnSizes() {
685 TableView::PaintRegion TableView::GetPaintRegion(
719 gfx::Rect TableView::GetPaintBounds(gfx::Canvas* canvas) const {
726 void TableView::SchedulePaintForSelection() {
737 ui::TableColumn TableView::FindColumnByID(int id) const {
746 void TableView::SelectByViewIndex(int view_index) {
757 void TableView::SetSelectionModel(const ui::ListSelectionModel& new_selection) {
781 void TableView::AdvanceSelection(AdvanceDirection direction) {
794 void TableView::ConfigureSelectionModelForEvent(
836 void TableView::SelectRowsInRangeFrom(int view_index,
848 GroupRange TableView::GetGroupRange(int model_index) const {
859 bool TableView::GetTooltipImpl(const gfx::Point& location,