-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configurable status bar color (#369)
* added preference FAIL_BACKGROUND_COLOR * added persistence for preference FAIL_BACKGROUND_COLOR * added preference FAIL_BACKGROUND_COLOR to PreferencePage * made VisualStatusPresenter use the configured value for FAIL_BACKGROUND_COLOR * added preference FAIL_TEXT_COLOR * made VisualStatusPresenter use FAIL_TEXT_COLOR * added SWTColorFieldEditor for FAIL_TEXT_COLOR to PreferencePage * added persistence for preference FAIL_TEXT_COLOR * fixed failing test * added missing license headers * replaced usage of FailBackgroundColor and similar with FailingBackgroundColor and equivalents * replaced usage of FailTextColor and similar with FailingTextColor and equivalents * fix: minor issues detected by sonar Co-authored-by: Jan Heyd <j.heyd@mailbox.tu-berlin.de>
- Loading branch information
Showing
10 changed files
with
198 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
infinitest-eclipse/src/main/java/org/infinitest/eclipse/prefs/SwtColorFieldEditor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
package org.infinitest.eclipse.prefs; | ||
|
||
import org.eclipse.jface.preference.*; | ||
import org.eclipse.swt.*; | ||
import org.eclipse.swt.widgets.*; | ||
|
||
/* | ||
* Infinitest, a Continuous Test Runner. | ||
* | ||
* Copyright (C) 2010-2013 | ||
* "Ben Rady" <benrady@gmail.com>, | ||
* "Rod Coffin" <rfciii@gmail.com>, | ||
* "Ryan Breidenbach" <ryan.breidenbach@gmail.com> | ||
* "David Gageot" <david@gageot.net>, et al. | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
public class SwtColorFieldEditor extends ComboFieldEditor { | ||
|
||
private static final String[][] ENTRY_NAMES_AND_VALUES = { | ||
{"Black", String.valueOf(SWT.COLOR_BLACK)}, | ||
{"Blue", String.valueOf(SWT.COLOR_BLUE )}, | ||
{"Blue (Dark)", String.valueOf(SWT.COLOR_DARK_BLUE)}, | ||
{"Cyan", String.valueOf(SWT.COLOR_CYAN)}, | ||
{"Cyan(Dark)", String.valueOf(SWT.COLOR_DARK_CYAN)}, | ||
{"Green", String.valueOf(SWT.COLOR_GREEN)}, | ||
{"Green (Dark)", String.valueOf(SWT.COLOR_DARK_GREEN)}, | ||
{"Gray", String.valueOf(SWT.COLOR_GRAY)}, | ||
{"Gray (Dark)", String.valueOf(SWT.COLOR_DARK_GRAY)}, | ||
{"Red", String.valueOf(SWT.COLOR_RED)}, | ||
{"Red (Dark)", String.valueOf(SWT.COLOR_DARK_RED)}, | ||
{"Magenta", String.valueOf(SWT.COLOR_MAGENTA)}, | ||
{"Magenta (Dark)", String.valueOf(SWT.COLOR_DARK_MAGENTA)}, | ||
{"Yellow", String.valueOf(SWT.COLOR_YELLOW)}, | ||
{"Yellow (Dark)", String.valueOf(SWT.COLOR_DARK_YELLOW)}, | ||
{"White", String.valueOf(SWT.COLOR_WHITE)}, | ||
}; | ||
|
||
public SwtColorFieldEditor(String name, String labelText, Composite parent) { | ||
super(name, labelText, ENTRY_NAMES_AND_VALUES, parent); | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
infinitest-eclipse/src/main/java/org/infinitest/eclipse/trim/ColorSettings.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
package org.infinitest.eclipse.trim; | ||
|
||
import org.eclipse.swt.*; | ||
|
||
/* | ||
* Infinitest, a Continuous Test Runner. | ||
* | ||
* Copyright (C) 2010-2013 | ||
* "Ben Rady" <benrady@gmail.com>, | ||
* "Rod Coffin" <rfciii@gmail.com>, | ||
* "Ryan Breidenbach" <ryan.breidenbach@gmail.com> | ||
* "David Gageot" <david@gageot.net>, et al. | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
*/ | ||
public class ColorSettings { | ||
private static int failingBackgroundColor = SWT.COLOR_DARK_RED; | ||
private static int failingTextColor = SWT.COLOR_WHITE; | ||
|
||
private ColorSettings() { | ||
} | ||
|
||
public static int getFailingTextColor() { | ||
return failingTextColor; | ||
} | ||
|
||
public static void setFailngTextColor(int failTextColor) { | ||
ColorSettings.failingTextColor = failTextColor; | ||
} | ||
|
||
public static int getFailingBackgroundColor() { | ||
return failingBackgroundColor; | ||
} | ||
|
||
public static void setFailingBackgroundColor(int failBackgroundColor) { | ||
ColorSettings.failingBackgroundColor = failBackgroundColor; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters