Move icons to icons directory. Now, start working on tests to check that all the icons has his image.
@ -36,7 +36,7 @@ mindplot.ImageIcon = function(iconModel, topic, designer) {
|
|||||||
|
|
||||||
var container = new Element('div');
|
var container = new Element('div');
|
||||||
var removeImage = new Element('img');
|
var removeImage = new Element('img');
|
||||||
removeImage.src = "../images/bin.png";
|
removeImage.src = "../icons/bin.png";
|
||||||
removeImage.inject(container);
|
removeImage.inject(container);
|
||||||
|
|
||||||
if (!designer._viewMode)
|
if (!designer._viewMode)
|
||||||
@ -263,87 +263,87 @@ mindplot.ImageIcon.ICON_TYPE_TASK_FIVE = mindplot.ImageIcon.ICON_FAMILIY_TASK_PR
|
|||||||
|
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP = new Object();
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP = new Object();
|
||||||
//FLAG
|
//FLAG
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FLAG_BLUE] = "../images/flag_blue.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FLAG_BLUE] = "../icons/flag_blue.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FLAG_GREEN] = "../images/flag_green.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FLAG_GREEN] = "../icons/flag_green.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FLAG_ORANGE] = "../images/flag_orange.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FLAG_ORANGE] = "../icons/flag_orange.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FLAG_PINK] = "../images/flag_pink.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FLAG_PINK] = "../icons/flag_pink.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FLAG_PURPLE] = "../images/flag_purple.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FLAG_PURPLE] = "../icons/flag_purple.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FLAG_YELLOW] = "../images/flag_yellow.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FLAG_YELLOW] = "../icons/flag_yellow.png";
|
||||||
//BULLET
|
//BULLET
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_BLACK] = "../images/bullet_black.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_BLACK] = "../icons/bullet_black.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_BLUE] = "../images/bullet_blue.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_BLUE] = "../icons/bullet_blue.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_GREEN] = "../images/bullet_blue.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_GREEN] = "../icons/bullet_blue.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_ORANGE] = "../images/bullet_green.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_ORANGE] = "../icons/bullet_green.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_RED] = "../images/bullet_orange.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_RED] = "../icons/bullet_orange.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_PINK] = "../images/bullet_pink.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_PINK] = "../icons/bullet_pink.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_PURPLE] = "../images/bullet_purple.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULLET_PURPLE] = "../icons/bullet_purple.png";
|
||||||
//TAGS
|
//TAGS
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_BLUE] = "../images/tag_blue.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_BLUE] = "../icons/tag_blue.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_GREEN] = "../images/tag_green.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_GREEN] = "../icons/tag_green.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_ORANGE] = "../images/tag_orange.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_ORANGE] = "../icons/tag_orange.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_RED] = "../images/tag_red.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_RED] = "../icons/tag_red.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_PINK] = "../images/tag_pink.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_PINK] = "../icons/tag_pink.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_YELLOW] = "../images/tag_yellow.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_YELLOW] = "../icons/tag_yellow.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_PURPLE] = "../images/tag_purple.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TAG_PURPLE] = "../icons/tag_purple.png";
|
||||||
//FACES
|
//FACES
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_FUNY_ANGEL] = "../images/face-angel.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_FUNY_ANGEL] = "../icons/face-angel.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_FUNY_DEVIL] = "../images/face-devilish.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_FUNY_DEVIL] = "../icons/face-devilish.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_FUNY_GLASSES] = "../images/face-glasses.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_FUNY_GLASSES] = "../icons/face-glasses.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_FUNY_KISS] = "../images/face-kiss.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_FUNY_KISS] = "../icons/face-kiss.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_FUNY_MONKEY] = "../images/face-monkey.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_FUNY_MONKEY] = "../icons/face-monkey.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_PLAIN] = "../images/face-plain.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_PLAIN] = "../icons/face-plain.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_CRYING] = "../images/face-crying.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_CRYING] = "../icons/face-crying.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_SAD] = "../images/face-sad.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_SAD] = "../icons/face-sad.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_SMILE] = "../images/face-smile.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_SMILE] = "../icons/face-smile.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_SURPRISE] = "../images/face-surprise.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_SURPRISE] = "../icons/face-surprise.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_WINK] = "../images/face-wink.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_FACE_WINK] = "../icons/face-wink.png";
|
||||||
|
|
||||||
//ARROWS
|
//ARROWS
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROW_UP] = "../images/arrow_up.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROW_UP] = "../icons/arrow_up.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROW_DOWN] = "../images/arrow_down.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROW_DOWN] = "../icons/arrow_down.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROW_LEFT] = "../images/arrow_left.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROW_LEFT] = "../icons/arrow_left.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROW_RIGHT] = "../images/arrow_right.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROW_RIGHT] = "../icons/arrow_right.png";
|
||||||
|
|
||||||
// ARROWS COMPLEX.
|
// ARROWS COMPLEX.
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROWC_TURN_LEFT] = "../images/arrow_turn_left.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROWC_TURN_LEFT] = "../icons/arrow_turn_left.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROWC_TURN_RIGHT] = "../images/arrow_turn_right.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROWC_TURN_RIGHT] = "../icons/arrow_turn_right.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROWC_UNDO] = "../images/arrow_undo.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROWC_UNDO] = "../icons/arrow_undo.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROWC_ANTICLOCKWISE] = "../images/arrow_rotate_anticlockwise.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROWC_ANTICLOCKWISE] = "../icons/arrow_rotate_anticlockwise.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROWC_CLOCKWISE] = "../images/arrow_rotate_clockwise.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ARROWC_CLOCKWISE] = "../icons/arrow_rotate_clockwise.png";
|
||||||
|
|
||||||
//CHARTS
|
//CHARTS
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CHART_BAR] = "../images/chart_bar.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CHART_BAR] = "../icons/chart_bar.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CHART_LINE] = "../images/chart_line.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CHART_LINE] = "../icons/chart_line.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CHART_CURVE] = "../images/chart_curve.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CHART_CURVE] = "../icons/chart_curve.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CHART_PIE] = "../images/chart_pie.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CHART_PIE] = "../icons/chart_pie.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CHART_ORGANISATION] = "../images/chart_organisation.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CHART_ORGANISATION] = "../icons/chart_organisation.png";
|
||||||
|
|
||||||
// THUMB
|
// THUMB
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ONOFF_THUMB_UP] = "../images/thumb_up.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ONOFF_THUMB_UP] = "../icons/thumb_up.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ONOFF_THUMB_DOWN] = "../images/thumb_down.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ONOFF_THUMB_DOWN] = "../icons/thumb_down.png";
|
||||||
|
|
||||||
// ON OFF
|
// ON OFF
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TICK_ON] = "../images/tick.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TICK_ON] = "../icons/tick.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TICK_OFF] = "../images/cross.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_TICK_OFF] = "../icons/cross.png";
|
||||||
|
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULB_ON] = "../images/lightbulb.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULB_ON] = "../icons/lightbulb.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULB_OFF] = "../images/lightbulb_off.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_BULB_OFF] = "../icons/lightbulb_off.png";
|
||||||
|
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CONNECT_ON] = "../images/connect.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CONNECT_ON] = "../icons/connect.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CONNECT_OFF] = "../images/disconnect.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_CONNECT_OFF] = "../icons/disconnect.png";
|
||||||
|
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ONOFF_CLOCK] = "../images/clock.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ONOFF_CLOCK] = "../icons/clock.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ONOFF_CLOCK_RED] = "../images/clock_red.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ONOFF_CLOCK_RED] = "../icons/clock_red.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ONOFF_ADD] = "../images/add.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ONOFF_ADD] = "../icons/add.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ONOFF_DELETE] = "../images/delete.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_ONOFF_DELETE] = "../icons/delete.png";
|
||||||
//MONEY
|
//MONEY
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_MONEY] = "../images/money.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_MONEY] = "../icons/money.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_DOLLAR] = "../images/money_dollar.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_DOLLAR] = "../icons/money_dollar.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_EURO] = "../images/money_euro.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_EURO] = "../icons/money_euro.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_POUND] = "../images/money_pound.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_POUND] = "../icons/money_pound.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_YEN] = "../images/money_yen.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_YEN] = "../icons/money_yen.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_COINS] = "../images/coins.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_COINS] = "../icons/coins.png";
|
||||||
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_RUBY] = "../images/ruby.png";
|
mindplot.ImageIcon.prototype.ICON_IMAGE_MAP[mindplot.ImageIcon.ICON_TYPE_MONEY_RUBY] = "../icons/ruby.png";
|
||||||
|
|
||||||
|
|
||||||
//FAMILIES
|
//FAMILIES
|
||||||
|
6
pom.xml
@ -38,9 +38,9 @@
|
|||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<inherited>true</inherited>
|
<inherited>true</inherited>
|
||||||
<artifactId>maven-resources-plugin</artifactId>
|
<artifactId>maven-resources-plugin</artifactId>
|
||||||
<configuration>
|
<!--<configuration>-->
|
||||||
<encoding>UTF-8</encoding>
|
<!--<encoding>UTF-8</encoding>-->
|
||||||
</configuration>
|
<!--</configuration>-->
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
@ -119,12 +119,6 @@
|
|||||||
<version>1.5.6</version>
|
<version>1.5.6</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>org.springframework.ws</groupId>
|
|
||||||
<artifactId>spring-ws-core-tiger</artifactId>
|
|
||||||
<version>1.5.6</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hibernate</groupId>
|
<groupId>org.hibernate</groupId>
|
||||||
<artifactId>hibernate</artifactId>
|
<artifactId>hibernate</artifactId>
|
||||||
@ -167,12 +161,6 @@
|
|||||||
</exclusion>
|
</exclusion>
|
||||||
</exclusions>
|
</exclusions>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>com.octo.captcha</groupId>
|
|
||||||
<artifactId>jcaptcha</artifactId>
|
|
||||||
<version>1.0</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.acegisecurity</groupId>
|
<groupId>org.acegisecurity</groupId>
|
||||||
<artifactId>acegi-security</artifactId>
|
<artifactId>acegi-security</artifactId>
|
||||||
|
@ -35,16 +35,13 @@ final public class FreemindIconConverter {
|
|||||||
private final static Map<String, MindmapIcon> freeIdToIcon = new HashMap<String, MindmapIcon>();
|
private final static Map<String, MindmapIcon> freeIdToIcon = new HashMap<String, MindmapIcon>();
|
||||||
private final static Map<MindmapIcon, String> iconToFreeId = new HashMap<MindmapIcon, String>();
|
private final static Map<MindmapIcon, String> iconToFreeId = new HashMap<MindmapIcon, String>();
|
||||||
|
|
||||||
private static final MindmapIcon DEFAULT_ICON = MindmapIcons.getIconByFamily(IconFamily.BULLET).get(3);
|
|
||||||
|
|
||||||
private FreemindIconConverter() {
|
private FreemindIconConverter() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
public static String toWiseId(@NotNull String iconId) {
|
public static String toWiseId(@NotNull String iconId) {
|
||||||
final MindmapIcon result = freeIdToIcon.get(iconId);
|
final MindmapIcon result = freeIdToIcon.get(iconId);
|
||||||
return result!=null?result.getId():null;
|
return result != null ? result.getId() : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
@ -55,19 +52,18 @@ final public class FreemindIconConverter {
|
|||||||
|
|
||||||
static {
|
static {
|
||||||
|
|
||||||
// Load bullets image mapping ...
|
// Map numbers icons family ...
|
||||||
final List<MindmapIcon> bulletsImages = MindmapIcons.getIconByFamily(IconFamily.BULLET);
|
final List<MindmapIcon> bulletsImages = MindmapIcons.getIconByFamily(IconFamily.BULLET);
|
||||||
|
|
||||||
for (int i = 0; i < bulletsImages.size(); i++) {
|
for (int i = 0; i < bulletsImages.size(); i++) {
|
||||||
final MindmapIcon icon = bulletsImages.get(i);
|
final MindmapIcon icon = bulletsImages.get(i);
|
||||||
iconToFreeId.put(icon, "full-" + i);
|
iconToFreeId.put(icon, "full-" + i);
|
||||||
}
|
}
|
||||||
|
|
||||||
final List<MindmapIcon> bulbImages = MindmapIcons.getIconByFamily(IconFamily.BULB);
|
// Generic mapping ...
|
||||||
iconToFreeId.put(bulbImages.get(0), "idea");
|
iconToFreeId.put(MindmapIcons.BULB_LIGHT_ON, "idea");
|
||||||
|
iconToFreeId.put(MindmapIcons.TICK_TICK, "button_ok");
|
||||||
final List<MindmapIcon> tickImages = MindmapIcons.getIconByFamily(IconFamily.TICK);
|
iconToFreeId.put(MindmapIcons.TICK_CROSS, "button_cancel");
|
||||||
iconToFreeId.put(tickImages.get(0), "button_ok");
|
|
||||||
iconToFreeId.put(tickImages.get(1), "button_cancel");
|
|
||||||
|
|
||||||
// Map arrow icons ...
|
// Map arrow icons ...
|
||||||
iconToFreeId.put(MindmapIcons.ARROW_UP, "up");
|
iconToFreeId.put(MindmapIcons.ARROW_UP, "up");
|
||||||
|
@ -20,11 +20,14 @@ package com.wisemapping.model;
|
|||||||
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
|
import java.lang.IllegalStateException;
|
||||||
|
import java.lang.reflect.Field;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
|
|
||||||
public class MindmapIcons {
|
public class MindmapIcons {
|
||||||
|
|
||||||
private static Map<IconFamily, List<MindmapIcon>> images = new HashMap<IconFamily, List<MindmapIcon>>();
|
private static Map<IconFamily, List<MindmapIcon>> iconsByFamily;
|
||||||
|
|
||||||
public static final MindmapIcon FACE_PLAIN = new MindmapIcon(IconFamily.SMILEY, "plain");
|
public static final MindmapIcon FACE_PLAIN = new MindmapIcon(IconFamily.SMILEY, "plain");
|
||||||
public static final MindmapIcon FACE_SAD = new MindmapIcon(IconFamily.SMILEY, "sad");
|
public static final MindmapIcon FACE_SAD = new MindmapIcon(IconFamily.SMILEY, "sad");
|
||||||
@ -41,179 +44,116 @@ public class MindmapIcons {
|
|||||||
public static final MindmapIcon ARROW_LEFT = new MindmapIcon(IconFamily.ARROW, "left");
|
public static final MindmapIcon ARROW_LEFT = new MindmapIcon(IconFamily.ARROW, "left");
|
||||||
public static final MindmapIcon ARROW_RIGHT = new MindmapIcon(IconFamily.ARROW, "right");
|
public static final MindmapIcon ARROW_RIGHT = new MindmapIcon(IconFamily.ARROW, "right");
|
||||||
|
|
||||||
static {
|
public static final MindmapIcon TASK_ONE = new MindmapIcon(IconFamily.TASK, "one");
|
||||||
images.put(IconFamily.BULLET, getImagesBullet());
|
public static final MindmapIcon TASK_TWO = new MindmapIcon(IconFamily.TASK, "two");
|
||||||
images.put(IconFamily.FLAG, getImagesFlag());
|
public static final MindmapIcon TASK_THREE = new MindmapIcon(IconFamily.TASK, "three");
|
||||||
images.put(IconFamily.NUMBER, getImagesNumber());
|
public static final MindmapIcon TASK_FOUR = new MindmapIcon(IconFamily.TASK, "four");
|
||||||
images.put(IconFamily.TAG, getImagesTag());
|
public static final MindmapIcon TASK_FIVE = new MindmapIcon(IconFamily.TASK, "five");
|
||||||
images.put(IconFamily.TASK, getImagesTask());
|
|
||||||
images.put(IconFamily.SMILEY, getImagesFaces());
|
public static final MindmapIcon ARROWC_UNDO = new MindmapIcon(IconFamily.ARROWC, "undo");
|
||||||
images.put(IconFamily.BULB, getImagesBulb());
|
public static final MindmapIcon ARROWC_ANTICLOCK_WISE = new MindmapIcon(IconFamily.ARROWC, "rotate_anticlockwise");
|
||||||
images.put(IconFamily.ARROW, getImagesArrow());
|
public static final MindmapIcon ARROWC_CLOCK_WISE = new MindmapIcon(IconFamily.ARROWC, "rotate_clockwise");
|
||||||
images.put(IconFamily.ARROWC, getImagesArrowC());
|
public static final MindmapIcon ARROWC_LEFT = new MindmapIcon(IconFamily.ARROWC, "turn_left");
|
||||||
images.put(IconFamily.CONN, getImagesConn());
|
public static final MindmapIcon ARROWC_RIGHT = new MindmapIcon(IconFamily.ARROWC, "turn_right");
|
||||||
images.put(IconFamily.THUMB, getImagesThumbs());
|
|
||||||
images.put(IconFamily.TICK, getImagesTick());
|
public static final MindmapIcon BULB_LIGHT_ON = new MindmapIcon(IconFamily.BULB, "light_on");
|
||||||
images.put(IconFamily.ONOFF, getImagesOnOff());
|
public static final MindmapIcon BULB_LIGHT__OFF = new MindmapIcon(IconFamily.BULB, "light_off");
|
||||||
images.put(IconFamily.MONEY, getImagesMoney());
|
|
||||||
images.put(IconFamily.CHART, getImagesChart());
|
public static final MindmapIcon TICK_TICK = new MindmapIcon(IconFamily.TICK, "tick");
|
||||||
|
public static final MindmapIcon TICK_CROSS = new MindmapIcon(IconFamily.TICK, "cross");
|
||||||
|
|
||||||
|
public static final MindmapIcon CHART_BAR = new MindmapIcon(IconFamily.CHART, "bar");
|
||||||
|
public static final MindmapIcon CHART_LINE = new MindmapIcon(IconFamily.CHART, "line");
|
||||||
|
public static final MindmapIcon CHART_CURVE = new MindmapIcon(IconFamily.CHART, "curve");
|
||||||
|
public static final MindmapIcon CHART_PIE = new MindmapIcon(IconFamily.CHART, "pie");
|
||||||
|
public static final MindmapIcon CHART_ORGANISATION = new MindmapIcon(IconFamily.CHART, "organisation");
|
||||||
|
|
||||||
|
public static final MindmapIcon ONOFF_CLOCK = new MindmapIcon(IconFamily.ONOFF, "clock");
|
||||||
|
public static final MindmapIcon ONOFF_CLOCK__RED = new MindmapIcon(IconFamily.ONOFF, "clock_red");
|
||||||
|
public static final MindmapIcon ONOFF_ADD = new MindmapIcon(IconFamily.ONOFF, "add");
|
||||||
|
public static final MindmapIcon ONOFF_DELETE = new MindmapIcon(IconFamily.ONOFF, "delete");
|
||||||
|
|
||||||
|
public static final MindmapIcon TAG_BLUE = new MindmapIcon(IconFamily.TAG, "blue");
|
||||||
|
public static final MindmapIcon TAG_GREEN = new MindmapIcon(IconFamily.TAG, "green");
|
||||||
|
public static final MindmapIcon TAG_ORANGE = new MindmapIcon(IconFamily.TAG, "orange");
|
||||||
|
public static final MindmapIcon TAG_RED = new MindmapIcon(IconFamily.TAG, "red");
|
||||||
|
public static final MindmapIcon TAG_PINK = new MindmapIcon(IconFamily.TAG, "pink");
|
||||||
|
public static final MindmapIcon TAG_YELLOW = new MindmapIcon(IconFamily.TAG, "yellow");
|
||||||
|
|
||||||
|
public static final MindmapIcon NUMBER_ONE = new MindmapIcon(IconFamily.NUMBER, "one");
|
||||||
|
public static final MindmapIcon NUMBER_TWO = new MindmapIcon(IconFamily.NUMBER, "two");
|
||||||
|
public static final MindmapIcon NUMBER_THREE = new MindmapIcon(IconFamily.NUMBER, "three");
|
||||||
|
public static final MindmapIcon NUMBER_FOUR = new MindmapIcon(IconFamily.NUMBER, "four");
|
||||||
|
public static final MindmapIcon NUMBER_FIVE = new MindmapIcon(IconFamily.NUMBER, "five");
|
||||||
|
public static final MindmapIcon NUMBER_SIX = new MindmapIcon(IconFamily.NUMBER, "six");
|
||||||
|
public static final MindmapIcon NUMBER_SEVEN = new MindmapIcon(IconFamily.NUMBER, "seven");
|
||||||
|
public static final MindmapIcon NUMBER_EIGHT = new MindmapIcon(IconFamily.NUMBER, "eight");
|
||||||
|
public static final MindmapIcon NUMBER_NINE = new MindmapIcon(IconFamily.NUMBER, "nine");
|
||||||
|
|
||||||
|
public static final MindmapIcon FLAG_BLUE = new MindmapIcon(IconFamily.FLAG, "blue");
|
||||||
|
public static final MindmapIcon FLAG_GREEN = new MindmapIcon(IconFamily.FLAG, "green");
|
||||||
|
public static final MindmapIcon FLAG_ORANGE = new MindmapIcon(IconFamily.FLAG, "orange");
|
||||||
|
public static final MindmapIcon FLAG_PINK = new MindmapIcon(IconFamily.FLAG, "pink");
|
||||||
|
public static final MindmapIcon FLAG_PURPLE = new MindmapIcon(IconFamily.FLAG, "purple");
|
||||||
|
public static final MindmapIcon FLAG_YELLOW = new MindmapIcon(IconFamily.FLAG, "yellow");
|
||||||
|
|
||||||
|
public static final MindmapIcon BULLET_BLACK = new MindmapIcon(IconFamily.BULLET, "black");
|
||||||
|
public static final MindmapIcon BULLET_BLUE = new MindmapIcon(IconFamily.BULLET, "blue");
|
||||||
|
public static final MindmapIcon BULLET_BLUEGREEN = new MindmapIcon(IconFamily.BULLET, "green");
|
||||||
|
public static final MindmapIcon BULLET_BLUEORANGE = new MindmapIcon(IconFamily.BULLET, "orange");
|
||||||
|
public static final MindmapIcon BULLET_BLUERED = new MindmapIcon(IconFamily.BULLET, "red");
|
||||||
|
public static final MindmapIcon BULLET_BLUEPINK = new MindmapIcon(IconFamily.BULLET, "pink");
|
||||||
|
public static final MindmapIcon BULLET_BLUEPURPLE = new MindmapIcon(IconFamily.BULLET, "purple");
|
||||||
|
|
||||||
|
public static final MindmapIcon MONEY_GENERIC = new MindmapIcon(IconFamily.MONEY, "money");
|
||||||
|
public static final MindmapIcon MONEY_DOLLAR = new MindmapIcon(IconFamily.MONEY, "dollar");
|
||||||
|
public static final MindmapIcon MONEY_EURO = new MindmapIcon(IconFamily.MONEY, "euro");
|
||||||
|
public static final MindmapIcon MONEY_POUND = new MindmapIcon(IconFamily.MONEY, "pound");
|
||||||
|
public static final MindmapIcon MONEY_YEN = new MindmapIcon(IconFamily.MONEY, "yen");
|
||||||
|
public static final MindmapIcon MONEY_COINS = new MindmapIcon(IconFamily.MONEY, "coins");
|
||||||
|
public static final MindmapIcon MONEY_RUBY = new MindmapIcon(IconFamily.MONEY, "ruby");
|
||||||
|
public static final MindmapIcon MONEY_CONNECT = new MindmapIcon(IconFamily.CONN, "connect");
|
||||||
|
public static final MindmapIcon MONEY_DISCONNECT = new MindmapIcon(IconFamily.CONN, "disconnect");
|
||||||
|
|
||||||
|
@NotNull
|
||||||
|
public static List<MindmapIcon> getIconByFamily(@NotNull IconFamily family) {
|
||||||
|
|
||||||
|
load();
|
||||||
|
return iconsByFamily.get(family);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesFaces() {
|
private static void load() {
|
||||||
final List<MindmapIcon> images = new ArrayList<MindmapIcon>();
|
try {
|
||||||
images.add(FACE_PLAIN);
|
if (iconsByFamily == null) {
|
||||||
images.add(FACE_SAD);
|
iconsByFamily = new HashMap<IconFamily, List<MindmapIcon>>();
|
||||||
images.add(FACE_CRYING);
|
|
||||||
images.add(FACE_SMILE);
|
|
||||||
images.add(FACE_SURPRISE);
|
|
||||||
images.add(FACE_WINK);
|
|
||||||
return images;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesArrow() {
|
Field[] fields = MindmapIcons.class.getDeclaredFields();
|
||||||
final List<MindmapIcon> result = new ArrayList<MindmapIcon>();
|
for (Field field : fields) {
|
||||||
result.add(ARROW_UP);
|
final Object object = field.get(null);
|
||||||
result.add(ARROW_DOWN);
|
|
||||||
result.add(ARROW_LEFT);
|
|
||||||
result.add(ARROW_RIGHT);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesArrowC() {
|
if (object instanceof MindmapIcon) {
|
||||||
final List<MindmapIcon> result = new ArrayList<MindmapIcon>();
|
|
||||||
result.add(new MindmapIcon(IconFamily.ARROWC, "undo"));
|
|
||||||
result.add(new MindmapIcon(IconFamily.ARROWC, "rotate_anticlockwise"));
|
|
||||||
result.add(new MindmapIcon(IconFamily.ARROWC, "rotate_clockwise"));
|
|
||||||
result.add(new MindmapIcon(IconFamily.ARROWC, "turn_left"));
|
|
||||||
result.add(new MindmapIcon(IconFamily.ARROWC, "turn_right"));
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesBulb() {
|
final MindmapIcon icon = (MindmapIcon) object;
|
||||||
final List<MindmapIcon> images = new ArrayList<MindmapIcon>();
|
final IconFamily iconFamily = icon.getFamily();
|
||||||
images.add(new MindmapIcon(IconFamily.BULB, "light_on"));
|
List<MindmapIcon> mindmapIcons = iconsByFamily.get(iconFamily);
|
||||||
images.add(new MindmapIcon(IconFamily.BULB, "light_off"));
|
if (mindmapIcons == null) {
|
||||||
return images;
|
mindmapIcons = new ArrayList<MindmapIcon>();
|
||||||
}
|
iconsByFamily.put(iconFamily, mindmapIcons);
|
||||||
|
}
|
||||||
private static List<MindmapIcon> getImagesTick() {
|
mindmapIcons.add(icon);
|
||||||
final List<MindmapIcon> images = new ArrayList<MindmapIcon>();
|
}
|
||||||
images.add(new MindmapIcon(IconFamily.TICK, "tick"));
|
}
|
||||||
images.add(new MindmapIcon(IconFamily.TICK, "cross"));
|
|
||||||
return images;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesChart() {
|
|
||||||
final List<MindmapIcon> images = new ArrayList<MindmapIcon>();
|
|
||||||
images.add(new MindmapIcon(IconFamily.CHART, "bar"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.CHART, "line"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.CHART, "curve"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.CHART, "pie"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.CHART, "organisation"));
|
|
||||||
return images;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesOnOff() {
|
|
||||||
final List<MindmapIcon> images = new ArrayList<MindmapIcon>();
|
|
||||||
images.add(new MindmapIcon(IconFamily.ONOFF, "clock"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.ONOFF, "clock_red"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.ONOFF, "add"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.ONOFF, "delete"));
|
|
||||||
return images;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesMoney() {
|
|
||||||
final List<MindmapIcon> images = new ArrayList<MindmapIcon>();
|
|
||||||
images.add(new MindmapIcon(IconFamily.MONEY, "money"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.MONEY, "dollar"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.MONEY, "euro"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.MONEY, "pound"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.MONEY, "yen"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.MONEY, "coins"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.MONEY, "ruby"));
|
|
||||||
return images;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesThumbs() {
|
|
||||||
final List<MindmapIcon> images = new ArrayList<MindmapIcon>();
|
|
||||||
images.add(THUMB__UP);
|
|
||||||
images.add(THUMB_DOWN);
|
|
||||||
return images;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesConn() {
|
|
||||||
final List<MindmapIcon> images = new ArrayList<MindmapIcon>();
|
|
||||||
images.add(new MindmapIcon(IconFamily.CONN, "connect"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.CONN, "disconnect"));
|
|
||||||
return images;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesBullet() {
|
|
||||||
final List<MindmapIcon> images = new ArrayList<MindmapIcon>();
|
|
||||||
images.add(new MindmapIcon(IconFamily.BULLET, "black"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.BULLET, "blue"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.BULLET, "green"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.BULLET, "orange"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.BULLET, "red"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.BULLET, "pink"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.BULLET, "purple"));
|
|
||||||
return images;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesFlag() {
|
|
||||||
final List<MindmapIcon> images = new ArrayList<MindmapIcon>();
|
|
||||||
images.add(new MindmapIcon(IconFamily.FLAG, "blue"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.FLAG, "green"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.FLAG, "orange"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.FLAG, "pink"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.FLAG, "purple"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.FLAG, "yellow"));
|
|
||||||
return images;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesNumber() {
|
|
||||||
final List<MindmapIcon> images = new ArrayList<MindmapIcon>();
|
|
||||||
images.add(new MindmapIcon(IconFamily.NUMBER, "one"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.NUMBER, "two"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.NUMBER, "three"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.NUMBER, "four"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.NUMBER, "five"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.NUMBER, "six"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.NUMBER, "seven"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.NUMBER, "eight"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.NUMBER, "nine"));
|
|
||||||
return images;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesTag() {
|
|
||||||
final List<MindmapIcon> images = new ArrayList<MindmapIcon>();
|
|
||||||
images.add(new MindmapIcon(IconFamily.TAG, "blue"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.TAG, "green"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.TAG, "orange"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.TAG, "red"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.TAG, "pink"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.TAG, "yellow"));
|
|
||||||
return images;
|
|
||||||
}
|
|
||||||
|
|
||||||
private static List<MindmapIcon> getImagesTask() {
|
|
||||||
final List<MindmapIcon> images = new ArrayList<MindmapIcon>();
|
|
||||||
images.add(new MindmapIcon(IconFamily.TASK, "one"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.TASK, "two"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.TASK, "three"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.TASK, "four"));
|
|
||||||
images.add(new MindmapIcon(IconFamily.TASK, "five"));
|
|
||||||
return images;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public static List<MindmapIcon> getIconByFamily(IconFamily family) {
|
}
|
||||||
return images.get(family);
|
} catch (IllegalAccessException e) {
|
||||||
|
throw new IllegalStateException(e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static MindmapIcon findById(final @NotNull String id) {
|
public static MindmapIcon findById(final @NotNull String id) {
|
||||||
for (IconFamily imageFamily : images.keySet()) {
|
for (IconFamily imageFamily : iconsByFamily.keySet()) {
|
||||||
final List<MindmapIcon> mindmapIcons = images.get(imageFamily);
|
final List<MindmapIcon> mindmapIcons = iconsByFamily.get(imageFamily);
|
||||||
for (MindmapIcon mindmapIcon : mindmapIcons) {
|
for (MindmapIcon mindmapIcon : mindmapIcons) {
|
||||||
if (mindmapIcon.getId().equals(id)) {
|
if (mindmapIcon.getId().equals(id)) {
|
||||||
return mindmapIcon;
|
return mindmapIcon;
|
||||||
|
0
wise-webapp/src/main/webapp/images/add.png → wise-webapp/src/main/webapp/icons/add.png
Executable file → Normal file
Before Width: | Height: | Size: 733 B After Width: | Height: | Size: 733 B |
Before Width: | Height: | Size: 62 B After Width: | Height: | Size: 62 B |
Before Width: | Height: | Size: 379 B After Width: | Height: | Size: 379 B |
Before Width: | Height: | Size: 345 B After Width: | Height: | Size: 345 B |
Before Width: | Height: | Size: 484 B After Width: | Height: | Size: 484 B |
Before Width: | Height: | Size: 409 B After Width: | Height: | Size: 409 B |
Before Width: | Height: | Size: 608 B After Width: | Height: | Size: 608 B |
Before Width: | Height: | Size: 602 B After Width: | Height: | Size: 602 B |
Before Width: | Height: | Size: 516 B After Width: | Height: | Size: 516 B |
Before Width: | Height: | Size: 489 B After Width: | Height: | Size: 489 B |
Before Width: | Height: | Size: 372 B After Width: | Height: | Size: 372 B |
0
wise-webapp/src/main/webapp/images/bullet_black.png → wise-webapp/src/main/webapp/icons/bullet_black.png
Executable file → Normal file
Before Width: | Height: | Size: 211 B After Width: | Height: | Size: 211 B |
0
wise-webapp/src/main/webapp/images/bullet_blue.png → wise-webapp/src/main/webapp/icons/bullet_blue.png
Executable file → Normal file
Before Width: | Height: | Size: 289 B After Width: | Height: | Size: 289 B |
0
wise-webapp/src/main/webapp/images/bullet_green.png → wise-webapp/src/main/webapp/icons/bullet_green.png
Executable file → Normal file
Before Width: | Height: | Size: 295 B After Width: | Height: | Size: 295 B |
0
wise-webapp/src/main/webapp/images/bullet_orange.png → wise-webapp/src/main/webapp/icons/bullet_orange.png
Executable file → Normal file
Before Width: | Height: | Size: 283 B After Width: | Height: | Size: 283 B |
0
wise-webapp/src/main/webapp/images/bullet_pink.png → wise-webapp/src/main/webapp/icons/bullet_pink.png
Executable file → Normal file
Before Width: | Height: | Size: 286 B After Width: | Height: | Size: 286 B |
0
wise-webapp/src/main/webapp/images/bullet_purple.png → wise-webapp/src/main/webapp/icons/bullet_purple.png
Executable file → Normal file
Before Width: | Height: | Size: 294 B After Width: | Height: | Size: 294 B |
0
wise-webapp/src/main/webapp/images/bullet_red.png → wise-webapp/src/main/webapp/icons/bullet_red.png
Executable file → Normal file
Before Width: | Height: | Size: 287 B After Width: | Height: | Size: 287 B |
Before Width: | Height: | Size: 541 B After Width: | Height: | Size: 541 B |
Before Width: | Height: | Size: 710 B After Width: | Height: | Size: 710 B |
Before Width: | Height: | Size: 526 B After Width: | Height: | Size: 526 B |
Before Width: | Height: | Size: 444 B After Width: | Height: | Size: 444 B |
Before Width: | Height: | Size: 918 B After Width: | Height: | Size: 918 B |
BIN
wise-webapp/src/main/webapp/icons/clock.png
Normal file
After Width: | Height: | Size: 882 B |
BIN
wise-webapp/src/main/webapp/icons/clock_red.png
Normal file
After Width: | Height: | Size: 889 B |
BIN
wise-webapp/src/main/webapp/icons/close.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
BIN
wise-webapp/src/main/webapp/icons/coins.png
Normal file
After Width: | Height: | Size: 732 B |
0
wise-webapp/src/main/webapp/images/connect.png → wise-webapp/src/main/webapp/icons/connect.png
Executable file → Normal file
Before Width: | Height: | Size: 748 B After Width: | Height: | Size: 748 B |
0
wise-webapp/src/main/webapp/images/cross.png → wise-webapp/src/main/webapp/icons/cross.png
Executable file → Normal file
Before Width: | Height: | Size: 655 B After Width: | Height: | Size: 655 B |
0
wise-webapp/src/main/webapp/images/delNode.png → wise-webapp/src/main/webapp/icons/delNode.png
Executable file → Normal file
Before Width: | Height: | Size: 728 B After Width: | Height: | Size: 728 B |
0
wise-webapp/src/main/webapp/images/delete.png → wise-webapp/src/main/webapp/icons/delete.png
Executable file → Normal file
Before Width: | Height: | Size: 715 B After Width: | Height: | Size: 715 B |
0
wise-webapp/src/main/webapp/images/disconnect.png → wise-webapp/src/main/webapp/icons/disconnect.png
Executable file → Normal file
Before Width: | Height: | Size: 796 B After Width: | Height: | Size: 796 B |
Before Width: | Height: | Size: 992 B After Width: | Height: | Size: 992 B |
Before Width: | Height: | Size: 936 B After Width: | Height: | Size: 936 B |
Before Width: | Height: | Size: 855 B After Width: | Height: | Size: 855 B |
Before Width: | Height: | Size: 949 B After Width: | Height: | Size: 949 B |
Before Width: | Height: | Size: 905 B After Width: | Height: | Size: 905 B |
Before Width: | Height: | Size: 919 B After Width: | Height: | Size: 919 B |
Before Width: | Height: | Size: 784 B After Width: | Height: | Size: 784 B |
Before Width: | Height: | Size: 894 B After Width: | Height: | Size: 894 B |
Before Width: | Height: | Size: 918 B After Width: | Height: | Size: 918 B |
Before Width: | Height: | Size: 896 B After Width: | Height: | Size: 896 B |
Before Width: | Height: | Size: 919 B After Width: | Height: | Size: 919 B |
Before Width: | Height: | Size: 917 B After Width: | Height: | Size: 917 B |
Before Width: | Height: | Size: 914 B After Width: | Height: | Size: 914 B |
Before Width: | Height: | Size: 671 B After Width: | Height: | Size: 671 B |
Before Width: | Height: | Size: 672 B After Width: | Height: | Size: 672 B |
Before Width: | Height: | Size: 669 B After Width: | Height: | Size: 669 B |
Before Width: | Height: | Size: 651 B After Width: | Height: | Size: 651 B |
Before Width: | Height: | Size: 656 B After Width: | Height: | Size: 656 B |
Before Width: | Height: | Size: 671 B After Width: | Height: | Size: 671 B |
@ -1,9 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
||||||
<icons>
|
|
||||||
|
|
||||||
<family name="">
|
|
||||||
<icon id="" img=""/>
|
|
||||||
|
|
||||||
</family>
|
|
||||||
|
|
||||||
</icons>
|
|
BIN
wise-webapp/src/main/webapp/icons/lightbulb.png
Normal file
After Width: | Height: | Size: 782 B |
BIN
wise-webapp/src/main/webapp/icons/lightbulb_off.png
Normal file
After Width: | Height: | Size: 700 B |
Before Width: | Height: | Size: 738 B After Width: | Height: | Size: 738 B |
Before Width: | Height: | Size: 630 B After Width: | Height: | Size: 630 B |
Before Width: | Height: | Size: 605 B After Width: | Height: | Size: 605 B |
Before Width: | Height: | Size: 565 B After Width: | Height: | Size: 565 B |
Before Width: | Height: | Size: 562 B After Width: | Height: | Size: 562 B |
BIN
wise-webapp/src/main/webapp/icons/ruby.png
Normal file
After Width: | Height: | Size: 592 B |
Before Width: | Height: | Size: 586 B After Width: | Height: | Size: 586 B |
Before Width: | Height: | Size: 824 B After Width: | Height: | Size: 824 B |
Before Width: | Height: | Size: 836 B After Width: | Height: | Size: 836 B |
Before Width: | Height: | Size: 613 B After Width: | Height: | Size: 613 B |
Before Width: | Height: | Size: 586 B After Width: | Height: | Size: 586 B |
Before Width: | Height: | Size: 579 B After Width: | Height: | Size: 579 B |
Before Width: | Height: | Size: 599 B After Width: | Height: | Size: 599 B |
Before Width: | Height: | Size: 592 B After Width: | Height: | Size: 592 B |
Before Width: | Height: | Size: 586 B After Width: | Height: | Size: 586 B |
Before Width: | Height: | Size: 601 B After Width: | Height: | Size: 601 B |
Before Width: | Height: | Size: 619 B After Width: | Height: | Size: 619 B |
BIN
wise-webapp/src/main/webapp/icons/tick.png
Normal file
After Width: | Height: | Size: 537 B |
BIN
wise-webapp/src/main/webapp/icons/waring_icon.png
Normal file
After Width: | Height: | Size: 666 B |
@ -0,0 +1,20 @@
|
|||||||
|
package com.wisemapping.test.model;
|
||||||
|
|
||||||
|
|
||||||
|
import com.wisemapping.model.IconFamily;
|
||||||
|
import com.wisemapping.model.MindmapIcon;
|
||||||
|
import com.wisemapping.model.MindmapIcons;
|
||||||
|
import org.testng.Assert;
|
||||||
|
import org.testng.annotations.Test;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public class ImagesTest {
|
||||||
|
@Test
|
||||||
|
void checkImagesByFamily() throws IllegalAccessException {
|
||||||
|
List<MindmapIcon> iconByFamily = MindmapIcons.getIconByFamily(IconFamily.BULLET);
|
||||||
|
Assert.assertEquals(iconByFamily.size(), 7);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -6,4 +6,9 @@
|
|||||||
<package name="com.wisemapping.test.freemind"/>
|
<package name="com.wisemapping.test.freemind"/>
|
||||||
</packages>
|
</packages>
|
||||||
</test>
|
</test>
|
||||||
|
<test name="Model Tests">
|
||||||
|
<packages>
|
||||||
|
<package name="com.wisemapping.test.model"/>
|
||||||
|
</packages>
|
||||||
|
</test>
|
||||||
</suite>
|
</suite>
|
||||||
|