Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0c0e6d5e6fae1f355267b8f300887127db262c2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*****************************************************************************
 * Copyright (c) 2014 CEA LIST and others.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   CEA LIST - Initial API and implementation
 *
 *****************************************************************************/

package org.eclipse.papyrus.infra.nattable.dataprovider;

import org.eclipse.papyrus.infra.nattable.manager.table.INattableModelManager;
import org.eclipse.papyrus.infra.nattable.manager.table.ITreeNattableModelManager;
import org.eclipse.papyrus.infra.nattable.model.nattable.nattableaxis.ITreeItemAxis;
import org.eclipse.papyrus.infra.nattable.model.nattable.nattablestyle.DisplayStyle;
import org.eclipse.papyrus.infra.nattable.utils.FillingConfigurationUtils;
import org.eclipse.papyrus.infra.nattable.utils.TableHelper;

/**
 * @author Vincent Lorenzo
 *
 */
public class HierarchicalRowLabelHeaderDataProvider extends RowLabelHeaderDataProvider {

	/**
	 * Constructor.
	 *
	 * @param tableModelManager
	 */
	public HierarchicalRowLabelHeaderDataProvider(INattableModelManager tableModelManager) {
		super(tableModelManager);
	}

	/**
	 *
	 * @see org.eclipse.papyrus.infra.nattable.dataprovider.AbstractDataProvider#getColumnCount()
	 *
	 * @return
	 */
	@Override
	public int getColumnCount() {
		if (displayLabel) {
			final DisplayStyle style = TableHelper.getTableDisplayStyle(this.manager);
			if (DisplayStyle.NORMAL.equals(style) || DisplayStyle.HIERARCHIC_SINGLE_TREE_COLUMN.equals(style)) {
				return 1;
			} else if (DisplayStyle.HIERARCHIC_MULTI_TREE_COLUMN.equals(style)) {
				boolean hasConfForFirstLevel = FillingConfigurationUtils.hasTreeFillingConfigurationForDepth(this.manager.getTable(), 0);
				int maxDepth = FillingConfigurationUtils.getMaxDepthForTree(this.manager.getTable());
				int depth = maxDepth * 2;
				if (!hasConfForFirstLevel) {
					depth += 1;
				} else {
					depth += 2;
				}
				return depth;
			}
		}
		return 0;
	}

	/**
	 *
	 * @param axis
	 *            a tree item axis
	 * @return
	 * 		the depth of the element
	 */
	protected final int getDepth(final ITreeItemAxis axis) {
		if (this.manager instanceof ITreeNattableModelManager) {
			return ((ITreeNattableModelManager) this.manager).getTreeItemDepth(axis);
		}
		return 0;
	}

	/**
	 *
	 * @see org.eclipse.papyrus.infra.nattable.dataprovider.AbstractIndexHeaderDataProvider#getDa_itaValue(int, int)
	 *
	 * @param columnIndex
	 * @param rowIndex
	 * @return
	 */
	@Override
	public Object getDataValue(int columnIndex, int rowIndex) {
		if (rowIndex >= 0) {
			Object rowElement = this.manager.getRowElement(rowIndex);
			final DisplayStyle style = TableHelper.getTableDisplayStyle(this.manager.getTable());
			if (DisplayStyle.NORMAL.equals(style) || DisplayStyle.HIERARCHIC_SINGLE_TREE_COLUMN.equals(style)) {
				return rowElement;
			} else if (DisplayStyle.HIERARCHIC_MULTI_TREE_COLUMN.equals(style)) {
				if (rowElement instanceof ITreeItemAxis) {
					int depth = getDepth((ITreeItemAxis) rowElement);
					if (depth == columnIndex) {
						return rowElement;
					}
				}
			}
		}
		return ""; //$NON-NLS-1$
	}
}

Back to the top