Skip to content
Snippets Groups Projects
Commit 3813529c authored by Julien Corcessin's avatar Julien Corcessin Committed by MADELA Patrick
Browse files

Evolution Fit : Commit intermédiaire

NE PAS UTILISER EN RELEASE !!!
parent aa7c69d8
No related branches found
No related tags found
No related merge requests found
......@@ -109,9 +109,9 @@ public class InfoNodeView extends View implements IView {
win.setBackground(bg);
win.setBorder(null);
win.getWindowProperties().getTabProperties().getTitledTabProperties().getNormalProperties()
.getComponentProperties().setBackgroundColor(bg);
.getComponentProperties().setBackgroundColor(bg);
win.getWindowProperties().getTabProperties().getTitledTabProperties().getHighlightedProperties()
.getComponentProperties().setBackgroundColor(bg);
.getComponentProperties().setBackgroundColor(bg);
}
/**
......@@ -123,9 +123,9 @@ public class InfoNodeView extends View implements IView {
protected void setForeground(DockingWindow win, Color fg) {
win.setForeground(fg);
win.getWindowProperties().getTabProperties().getTitledTabProperties().getNormalProperties()
.getComponentProperties().setForegroundColor(fg);
.getComponentProperties().setForegroundColor(fg);
win.getWindowProperties().getTabProperties().getTitledTabProperties().getHighlightedProperties()
.getComponentProperties().setForegroundColor(fg);
.getComponentProperties().setForegroundColor(fg);
}
/**
......@@ -164,9 +164,9 @@ public class InfoNodeView extends View implements IView {
public void setClosable(boolean closable) {
if (getWindowProperties() != null) {
getWindowProperties().getTabProperties().getNormalButtonProperties().getCloseButtonProperties()
.setVisible(closable);
.setVisible(closable);
getWindowProperties().getTabProperties().getHighlightedButtonProperties().getCloseButtonProperties()
.setVisible(closable);
.setVisible(closable);
getWindowProperties().setCloseEnabled(closable);
}
}
......@@ -257,7 +257,11 @@ public class InfoNodeView extends View implements IView {
@Override
public void viewFocusChanged(View previouslyFocusedView, View focusedView) {
// Not used yet.
if (InfoNodeView.this.equals(focusedView)) {
listener.focusGained();
} else {
listener.focusLost();
}
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment