[SRADA-88] Remove gradation color in tables
authordongkyu6 lee <dongkyu6.lee@samsung.com>
Tue, 23 Feb 2016 05:25:16 +0000 (14:25 +0900)
committerdongkyu6 lee <dongkyu6.lee@samsung.com>
Tue, 23 Feb 2016 05:25:16 +0000 (14:25 +0900)
Change-Id: Iba63494d17e8d4b0bd206314790b114517cc31a9
Signed-off-by: dongkyu6 lee <dongkyu6.lee@samsung.com>
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/common/explorer/DAFileExplorerEmptyCellRenderer.java [changed mode: 0644->0755]
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/interactive/table/InteractiveTableCellRenderer.java [changed mode: 0644->0755]
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/summary/profiling/FunctionUsageProfilingTableCellRenderer.java [changed mode: 0644->0755]
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/timeline/uievent/UIEventListDialogTableCellRenderer.java [changed mode: 0644->0755]
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/toolbar/replayEditor/ReplayEditScreenshotTableCellRenderer.java [changed mode: 0644->0755]
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/widgets/table/DATableCellRenderer.java [changed mode: 0644->0755]
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/widgets/table/DATableEmptyCellRenderer.java [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index 6fbe32b..6ef80d2
@@ -46,7 +46,7 @@ public class DAFileExplorerEmptyCellRenderer extends DATableEmptyCellRenderer {
 
                if (isSelected()) {
                        gc.setForeground(ColorResources.TABLE_CONTENTS_SELECTED_START);
-                       gc.setBackground(ColorResources.TABLE_CONTENTS_SELECTED_END);
+                       gc.setBackground(ColorResources.TABLE_CONTENTS_SELECTED_START);
                } else {
                        gc.setBackground(getDisplay().getSystemColor(
                                        SWT.COLOR_WIDGET_BACKGROUND));
old mode 100644 (file)
new mode 100755 (executable)
index a125f9d..ec1d8b5
@@ -65,7 +65,7 @@ public class InteractiveTableCellRenderer extends DATableCellRenderer {
 
                if (drawAsSelected) {
                        gc.setForeground(ColorResources.TABLE_CONTENTS_SELECTED_START);
-                       gc.setBackground(ColorResources.TABLE_CONTENTS_SELECTED_END);
+                       gc.setBackground(ColorResources.TABLE_CONTENTS_SELECTED_START);
                } else {
                        if (item.getParent().isEnabled()) {
                                Color bg = item.getBackground();
old mode 100644 (file)
new mode 100755 (executable)
index ae31878..418b0df
@@ -43,10 +43,10 @@ public class FunctionUsageProfilingTableCellRenderer extends
                if (rateStr.contains(CommonConstants.PERCENT)) {
                        if (drawAsSelected) {
                                gc.setForeground(ColorResources.PROFILING_GRAPH_SELECTION_COLOR_START);
-                               gc.setBackground(ColorResources.PROFILING_GRAPH_SELECTION_COLOR_END);
+                               gc.setBackground(ColorResources.PROFILING_GRAPH_SELECTION_COLOR_START);
                        } else {
                                gc.setForeground(ColorResources.PROFILING_GRAPH_COLOR_START);
-                               gc.setBackground(ColorResources.PROFILING_GRAPH_COLOR_END);
+                               gc.setBackground(ColorResources.PROFILING_GRAPH_COLOR_START);
                        }
                        String[] splitRateStr = rateStr.split(CommonConstants.PERCENT);
                        rateStr = new String(splitRateStr[0].trim());
old mode 100644 (file)
new mode 100755 (executable)
index 163d6a3..0aa17b9
@@ -66,7 +66,7 @@ public class UIEventListDialogTableCellRenderer extends DefaultCellRenderer {
                }
                if (drawAsSelected) {
                        gc.setForeground(ColorResources.TABLE_CONTENTS_SELECTED_START);
-                       gc.setBackground(ColorResources.TABLE_CONTENTS_SELECTED_END);
+                       gc.setBackground(ColorResources.TABLE_CONTENTS_SELECTED_START);
                } else {
                        if (item.getParent().isEnabled()) {
                                Color bg = item.getBackground();
old mode 100644 (file)
new mode 100755 (executable)
index 1a4d9b9..4bfcb26
@@ -57,7 +57,7 @@ public class ReplayEditScreenshotTableCellRenderer extends DefaultCellRenderer {
                boolean drawBackground = true;
                if (item.getChecked() && getColumn() == 0) {
                        gc.setForeground(ColorResources.TABLE_CONTENTS_SELECTED_START);
-                       gc.setBackground(ColorResources.TABLE_CONTENTS_SELECTED_END);
+                       gc.setBackground(ColorResources.TABLE_CONTENTS_SELECTED_START);
                } else {
                        if (item.getParent().isEnabled()) {
                                Color bg = item.getBackground();
old mode 100644 (file)
new mode 100755 (executable)
index 2cd4156..319f63b
@@ -67,7 +67,7 @@ public class DATableCellRenderer extends DefaultCellRenderer {
 
                if (drawAsSelected) {
                        gc.setForeground(ColorResources.TABLE_CONTENTS_SELECTED_START);
-                       gc.setBackground(ColorResources.TABLE_CONTENTS_SELECTED_END);
+                       gc.setBackground(ColorResources.TABLE_CONTENTS_SELECTED_START);
                } else {
                        if (item.getParent().isEnabled()) {
                                Color bg = item.getBackground();
old mode 100644 (file)
new mode 100755 (executable)
index 65fe494..94737a3
@@ -49,7 +49,7 @@ public class DATableEmptyCellRenderer extends GridCellRenderer {
 
                if (isSelected()) {
                        gc.setForeground(ColorResources.TABLE_CONTENTS_SELECTED_START);
-                       gc.setBackground(ColorResources.TABLE_CONTENTS_SELECTED_END);
+                       gc.setBackground(ColorResources.TABLE_CONTENTS_SELECTED_START);
                } else {
                        if (table.isEnabled()) {
                                drawBackground = false;