style.js
47 KB
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
$axure.internal(function($ax) {
var _style = {};
$ax.style = _style;
var _disabledWidgets = {};
var _selectedWidgets = {};
// A table to cache the outerHTML of the _rtf elements before the rollover state is applied.
var _originalTextCache = {};
// A table to exclude the normal style from adaptive overrides
var _shapesWithSetRichText = {};
// just a listing of shape ids
var _adaptiveStyledWidgets = {};
var _setLinkStyle = function(id, styleName) {
var textId = $ax.style.GetTextIdFromLink(id);
var style = _computeAllOverrides(id, textId, styleName, $ax.adaptive.currentViewId);
if(!_originalTextCache[textId]) {
$ax.style.CacheOriginalText(textId);
}
if($.isEmptyObject(style)) return;
var parentObjectCache = _originalTextCache[textId].styleCache;
_transformTextWithVerticalAlignment(textId, function() {
var cssProps = _getCssStyleProperties(style);
$('#' + id).find('*').andSelf().each(function(index, element) {
element.setAttribute('style', parentObjectCache[element.id]);
_applyCssProps(element, cssProps);
});
});
};
var _resetLinkStyle = function(id) {
var textId = $ax.style.GetTextIdFromLink(id);
var parentObjectCache = _originalTextCache[textId].styleCache;
_transformTextWithVerticalAlignment(textId, function() {
$('#' + id).find('*').andSelf().each(function(index, element) {
element.style.cssText = parentObjectCache[element.id];
});
});
if($ax.event.mouseDownObjectId) {
$ax.style.SetWidgetMouseDown($ax.event.mouseDownObjectId, true);
} else if($ax.event.mouseOverObjectId) {
$ax.style.SetWidgetHover($ax.event.mouseOverObjectId, true);
}
};
$ax.style.SetLinkHover = function(id) {
_setLinkStyle(id, MOUSE_OVER);
};
$ax.style.SetLinkNotHover = function(id) {
_resetLinkStyle(id);
};
$ax.style.SetLinkMouseDown = function(id) {
_setLinkStyle(id, MOUSE_DOWN);
};
$ax.style.SetLinkNotMouseDown = function(id) {
_resetLinkStyle(id);
var style = _computeAllOverrides(id, $ax.event.mouseOverObjectId, MOUSE_OVER, $ax.adaptive.currentViewId);
if(!$.isEmptyObject(style)) $ax.style.SetLinkHover(id);
//we dont do anything here because the widget not mouse down has taken over here
};
var _widgetHasState = function(id, state) {
if($ax.style.getElementImageOverride(id, state)) return true;
var diagramObject = $ax.getObjectFromElementId(id);
var adaptiveIdChain = $ax.adaptive.getAdaptiveIdChain($ax.adaptive.currentViewId);
for(var i = 0; i < adaptiveIdChain.length; i++) {
var viewId = adaptiveIdChain[i];
var adaptiveStyle = diagramObject.adaptiveStyles[viewId];
if(adaptiveStyle && adaptiveStyle.stateStyles && adaptiveStyle.stateStyles[state]) return true;
}
if(diagramObject.style.stateStyles) return diagramObject.style.stateStyles[state];
return false;
};
// Returns what overrides the hover, or false if nothing.
var _hoverOverride = function(id) {
if($ax.style.IsWidgetDisabled(id)) return DISABLED;
if($ax.style.IsWidgetSelected(id)) return SELECTED;
var obj = $ax.getObjectFromElementId(id);
if(!obj.isContained) return false;
var path = $ax.getPathFromScriptId($ax.repeater.getScriptIdFromElementId(id));
path[path.length - 1] = obj.parent.id;
var itemId = $ax.repeater.getItemIdFromElementId(id);
return _hoverOverride($ax.getElementIdFromPath(path, { itemNum: itemId }));
};
$ax.style.SetWidgetHover = function(id, value) {
var override = _hoverOverride(id);
if(override == DISABLED) return;
if(!_widgetHasState(id, MOUSE_OVER)) return;
var valToSet = value || _isRolloverOverride(id);
var state = _generateMouseState(id, valToSet ? MOUSE_OVER : NORMAL, override == SELECTED);
_applyImageAndTextJson(id, state);
_updateElementIdImageStyle(id, state);
};
var _rolloverOverrides = [];
var _isRolloverOverride = function(id) {
return _rolloverOverrides.indexOf(id) != -1;
};
$ax.style.AddRolloverOverride = function(id) {
if(_isRolloverOverride(id)) return;
_rolloverOverrides[_rolloverOverrides.length] = id;
if($ax.event.mouseOverIds.indexOf(id) == -1) $ax.style.SetWidgetHover(id, true);
};
$ax.style.RemoveRolloverOverride = function(id) {
var index = _rolloverOverrides.indexOf(id);
if(index == -1) return;
$ax.splice(_rolloverOverrides, index, 1);
if($ax.event.mouseOverIds.indexOf(id) == -1) $ax.style.SetWidgetHover(id, false);
};
// function GetWidgetCurrentState(id) {
// if($ax.style.IsWidgetDisabled(id)) return "disabled";
// if($ax.style.IsWidgetSelected(id)) return "selected";
// if($ax.event.mouseOverObjectId == id) return "mouseOver";
// if($ax.event.mouseDownObjectId == id) return "mouseDown";
// return "normal";
// }
$ax.style.ObjHasMouseDown = function(id) {
var obj = $obj(id);
if($ax.style.getElementImageOverride(id, 'mouseDown') || obj.style && obj.style.stateStyles && obj.style.stateStyles.mouseDown) return true;
var chain = $ax.adaptive.getAdaptiveIdChain($ax.adaptive.currentViewId);
for(var i = 0; i < chain.length; i++) {
var style = obj.adaptiveStyles[chain[i]];
if(style && style.stateStyles && style.stateStyles.mouseDown) return true;
}
return false;
};
$ax.style.SetWidgetMouseDown = function(id, value) {
if($ax.style.IsWidgetDisabled(id)) return;
if(!_widgetHasState(id, MOUSE_DOWN)) return;
// ApplyImageAndTextJson(id, value ? 'mouseDown' : !$.isEmptyObject(GetStyleForState(id, null, 'mouseOver')) ? 'mouseOver' : 'normal');
var state = _generateMouseState(id, value ? MOUSE_DOWN : MOUSE_OVER, $ax.style.IsWidgetSelected(id));
_applyImageAndTextJson(id, state);
_updateElementIdImageStyle(id, state);
};
var _generateMouseState = function(id, mouseState, selected) {
if (selected) {
if (_style.getElementImageOverride(id, SELECTED)) return SELECTED;
var viewChain = $ax.adaptive.getAdaptiveIdChain($ax.adaptive.currentViewId);
viewChain[viewChain.length] = '';
var obj = $obj(id);
if(obj.type == "dynamicPanel") return SELECTED;
var any = function(dict) {
for(var key in dict) return true;
return false;
};
for(var i = 0; i < viewChain.length; i++) {
var viewId = viewChain[i];
// Need to check seperately for images.
if(obj.adaptiveStyles && obj.adaptiveStyles[viewId] && any(obj.adaptiveStyles[viewId])
|| obj.images && obj.images['selected~' + viewId]) return SELECTED;
}
var selectedStyle = obj.style && obj.style.stateStyles && obj.style.stateStyles.selected;
if(selectedStyle && any(selectedStyle)) return SELECTED;
}
// Not using selected
return mouseState;
};
$ax.style.SetWidgetSelected = function(id, value, alwaysApply) {
if(_isWidgetDisabled(id)) return;
//NOTE: not firing select events if state didn't change
var raiseSelectedEvents = $ax.style.IsWidgetSelected(id) != value;
if(value) {
var group = $('#' + id).attr('selectiongroup');
if(group) {
$("[selectiongroup='" + group + "']").each(function() {
var otherId = this.id;
if(otherId == id) return;
if ($ax.visibility.isScriptIdLimbo($ax.repeater.getScriptIdFromElementId(otherId))) return;
$ax.style.SetWidgetSelected(otherId, false);
});
}
}
var obj = $obj(id);
if(obj) {
var actionId = id;
if ($ax.public.fn.IsDynamicPanel(obj.type) || $ax.public.fn.IsLayer(obj.type)) {
var children = $axure('#' + id).getChildren()[0].children;
for(var i = 0; i < children.length; i++) {
var childId = children[i];
// Special case for trees
var childObj = $jobj(childId);
if(childObj.hasClass('treeroot')) {
var treenodes = childObj.find('.treenode');
for(var j = 0; j < treenodes.length; j++) {
$axure('#' + treenodes[j].id).selected(value);
}
} else $axure('#' + childId).selected(value);
}
} else {
var widgetHasSelectedState = _widgetHasState(id, SELECTED);
while(obj.isContained && !widgetHasSelectedState) obj = obj.parent;
var itemId = $ax.repeater.getItemIdFromElementId(id);
var path = $ax.getPathFromScriptId($ax.repeater.getScriptIdFromElementId(id));
path[path.length - 1] = obj.id;
actionId = $ax.getElementIdFromPath(path, { itemNum: itemId });
if(alwaysApply || widgetHasSelectedState) {
var state = _generateSelectedState(actionId, value);
_applyImageAndTextJson(actionId, state);
_updateElementIdImageStyle(actionId, state);
}
//added actionId and this hacky logic because we set style state on child, but interaction on parent
//then the id saved in _selectedWidgets would be depended on widgetHasSelectedState... more see case 1818143
while(obj.isContained && !$ax.getObjectFromElementId(id).interactionMap) obj = obj.parent;
path = $ax.getPathFromScriptId($ax.repeater.getScriptIdFromElementId(id));
path[path.length - 1] = obj.id;
actionId = $ax.getElementIdFromPath(path, { itemNum: itemId });
}
}
// ApplyImageAndTextJson(id, value ? 'selected' : 'normal');
_selectedWidgets[id] = value;
if(raiseSelectedEvents) $ax.event.raiseSelectedEvents(actionId, value);
};
var _generateSelectedState = function(id, selected) {
var mouseState = $ax.event.mouseDownObjectId == id ? MOUSE_DOWN : $.inArray(id, $ax.event.mouseOverIds) != -1 ? MOUSE_OVER : NORMAL;
//var mouseState = $ax.event.mouseDownObjectId == id ? MOUSE_DOWN : $ax.event.mouseOverIds.indexOf(id) != -1 ? MOUSE_OVER : NORMAL;
return _generateMouseState(id, mouseState, selected);
};
$ax.style.IsWidgetSelected = function(id) {
return Boolean(_selectedWidgets[id]) || $('#'+id).hasClass('selected');
};
$ax.style.SetWidgetEnabled = function(id, value) {
_disabledWidgets[id] = !value;
$('#' + id).find('a').css('cursor', value ? 'pointer' : 'default');
if(!_widgetHasState(id, DISABLED)) return;
if(!value) {
_applyImageAndTextJson(id, DISABLED);
_updateElementIdImageStyle(id, DISABLED);
} else $ax.style.SetWidgetSelected(id, $ax.style.IsWidgetSelected(id), true);
};
$ax.style.SetWidgetPlaceholder = function(id, value, text, password) {
var inputId = $ax.repeater.applySuffixToElementId(id, '_input');
// Right now this is the only style on the widget. If other styles (ex. Rollover), are allowed
// on TextBox/TextArea, or Placeholder is applied to more widgets, this may need to do more.
var obj = $jobj(inputId);
var height = document.getElementById(inputId).style['height'];
var width = document.getElementById(inputId).style['width'];
obj.attr('style', '');
//removing all styles, but now we can change the size, so we should add them back
//this is more like a quick hack
if (height) obj.css('height', height);
if (width) obj.css('width', width);
if(!value) {
try { //ie8 and below error
if(password) document.getElementById(inputId).type = 'password';
} catch(e) { }
} else {
var element = $('#' + inputId)[0];
var style = _computeAllOverrides(id, undefined, HINT, $ax.adaptive.currentViewId);
var styleProperties = _getCssStyleProperties(style);
//moved this out of GetCssStyleProperties for now because it was breaking un/rollovers with gradient fills
if(style.fill) styleProperties.allProps.backgroundColor = _getColorFromFill(style.fill);
_applyCssProps(element, styleProperties, true);
try { //ie8 and below error
if(password) document.getElementById(inputId).type = 'text';
} catch(e) { }
}
obj.val(text);
};
var _isWidgetDisabled = $ax.style.IsWidgetDisabled = function(id) {
return Boolean(_disabledWidgets[id]);
};
var _elementIdsToImageOverrides = {};
$ax.style.mapElementIdToImageOverrides = function (elementId, override) {
for(var key in override) _addImageOverride(elementId, key, override[key]);
};
var _addImageOverride = function (elementId, state, val) {
if (!_elementIdsToImageOverrides[elementId]) _elementIdsToImageOverrides[elementId] = {};
_elementIdsToImageOverrides[elementId][state] = val;
}
$ax.style.deleteElementIdToImageOverride = function(elementId) {
delete _elementIdsToImageOverrides[elementId];
};
$ax.style.getElementImageOverride = function(elementId, state) {
var url = _elementIdsToImageOverrides[elementId] && _elementIdsToImageOverrides[elementId][state];
return url;
};
$ax.style.elementHasAnyImageOverride = function(elementId) {
return Boolean(_elementIdsToImageOverrides[elementId]);
};
var NORMAL = 'normal';
var MOUSE_OVER = 'mouseOver';
var MOUSE_DOWN = 'mouseDown';
var SELECTED = 'selected';
var DISABLED = 'disabled';
var HINT = 'hint';
var _generateState = _style.generateState = function(id) {
return $ax.placeholderManager.isActive(id) ? HINT : _style.IsWidgetDisabled(id) ? DISABLED : _generateSelectedState(id, _style.IsWidgetSelected(id));
};
var _progressState = _style.progessState = function(state) {
if(state == NORMAL) return false;
if(state == MOUSE_DOWN) return MOUSE_OVER;
return NORMAL;
};
var _unprogressState = function(state, goal) {
state = state || NORMAL;
if(state == goal) return undefined;
if(state == NORMAL && goal == MOUSE_DOWN) return MOUSE_OVER;
return goal;
};
var _updateElementIdImageStyle = _style.updateElementIdImageStyle = function(elementId, state) {
if(!_style.elementHasAnyImageOverride(elementId)) return;
if(!state) state = _generateState(elementId);
var style = _computeFullStyle(elementId, state, $ax.adaptive.currentViewId);
var query = $jobj($ax.repeater.applySuffixToElementId(elementId, '_img'));
style.size.width = query.width();
style.size.height = query.height();
var borderId = $ax.repeater.applySuffixToElementId(elementId, '_border');
var borderQuery = $jobj(borderId);
if(!borderQuery.length) {
borderQuery = $('<div></div>');
borderQuery.attr('id', borderId);
query.after(borderQuery);
}
borderQuery.attr('style', '');
borderQuery.css('position', 'absolute');
query.attr('style', '');
var borderWidth = Number(style.borderWidth);
var hasBorderWidth = borderWidth > 0;
if(hasBorderWidth) {
borderQuery.css('border-style', 'solid');
borderQuery.css('border-width', borderWidth + 'px');
borderQuery.css('width', style.size.width - borderWidth * 2);
borderQuery.css('height', style.size.height - borderWidth * 2);
}
var linePattern = style.linePattern;
if(hasBorderWidth && linePattern) borderQuery.css('border-style', linePattern);
var borderFill = style.borderFill;
if(hasBorderWidth && borderFill) {
var color = borderFill.fillType == 'solid' ? borderFill.color :
borderFill.fillType == 'linearGradient' ? borderFill.colors[0].color : 0;
var alpha = Math.floor(color / 256 / 256 / 256);
color -= alpha * 256 * 256 * 256;
alpha = alpha / 255;
var red = Math.floor(color / 256 / 256);
color -= red * 256 * 256;
var green = Math.floor(color / 256);
var blue = color - green * 256;
borderQuery.css('border-color', _rgbaToFunc(red, green, blue, alpha));
}
var cornerRadiusTopLeft = style.cornerRadius;
if(cornerRadiusTopLeft) {
query.css('border-radius', cornerRadiusTopLeft + 'px');
borderQuery.css('border-radius', cornerRadiusTopLeft + 'px');
}
var outerShadow = style.outerShadow;
if(outerShadow && outerShadow.on) {
var arg = '';
arg += outerShadow.offsetX + 'px' + ' ' + outerShadow.offsetY + 'px' + ' ';
var rgba = outerShadow.color;
arg += outerShadow.blurRadius + 'px' + ' 0px ' + _rgbaToFunc(rgba.r, rgba.g, rgba.b, rgba.a);
query.css('-moz-box-shadow', arg);
query.css('-wibkit-box-shadow', arg);
query.css('box-shadow', arg);
query.css('left', '0px');
query.css('top', '0px');
}
query.css({ width: style.size.width, height: style.size.height });
};
var _rgbaToFunc = function(red, green, blue, alpha) {
return 'rgba(' + red + ',' + green + ',' + blue + ',' + alpha + ')';
};
//function $ax.style.GetTextIdFromShape(id) {
// return $.grep(
// $('#' + id).children().map(function (i, obj) { return obj.id; }), // all the child ids
// function (item) { return item.indexOf(id) < 0; })[0]; // that are not similar to the parent
//}
var _getButtonShapeId = function(id) {
var obj = $obj(id);
return $ax.public.fn.IsTreeNodeObject(obj.type) ? $ax.getElementIdFromPath([obj.buttonShapeId], { relativeTo: id }) : id;
};
var _getButtonShape = function(id) {
var obj = $obj(id);
// some treeNodeObjects don't have button shapes
return $jobj($ax.public.fn.IsTreeNodeObject(obj.type) && obj.buttonShapeId ? $ax.getElementIdFromPath([obj.buttonShapeId], { relativeTo: id }) : id);
};
var _getTextIdFromShape = $ax.style.GetTextIdFromShape = function(id) {
return _getButtonShape(id).find('.text').attr('id');
};
$ax.style.GetTextIdFromLink = function(id) {
return $jobj(id).parentsUntil('.text').parent().attr('id');
};
var _getShapeIdFromText = $ax.style.GetShapeIdFromText = function(id) {
if(!id) return undefined; // this is to prevent an infinite loop.
var current = document.getElementById(id);
if(!current) return undefined;
current = current.parentElement;
while(current && current.tagName != 'BODY') {
var currentId = current.id;
if(currentId && currentId != 'base') return $ax.visibility.getWidgetFromContainer(currentId);
current = current.parentElement;
}
return undefined;
};
$ax.style.GetImageIdFromShape = function(id) {
var image = _getButtonShape(id).find('img[id$=img]');
if(!image.length) image = $jobj(id).find('img[id$=image_sketch]');
return image.attr('id');
};
var _applyImageAndTextJson = function(id, event) {
var textId = $ax.style.GetTextIdFromShape(id);
_resetTextJson(id, textId);
// This should never be the case
//if(event != '') {
var imgQuery = $jobj($ax.style.GetImageIdFromShape(id));
var e = imgQuery.data('events');
if(e && e[event]) imgQuery.trigger(event);
var imageUrl = $ax.adaptive.getImageForStateAndView(id, event);
if(imageUrl) _applyImage(id, imageUrl, event);
var style = _computeAllOverrides(id, undefined, event, $ax.adaptive.currentViewId);
if(!$.isEmptyObject(style)) _applyTextStyle(textId, style);
_updateStateClasses(id, event);
_updateStateClasses($ax.repeater.applySuffixToElementId(id, '_div'), event);
};
var _updateStateClasses = function(id, event) {
var jobj = $jobj(id);
//if(jobj[0] && jobj[0].hasAttribute('widgetwidth')) {
// for (var x = 0; x < jobj[0].children.length; x++) {
// var childId = jobj[0].children[x].id;
// if (childId.indexOf('p') < 0) continue;
// _updateStateClasses(childId, event) ;
// }
//} else {
for (var i = 0; i < ALL_STATES.length; i++) jobj.removeClass(ALL_STATES[i]);
if (event == 'mouseDown') jobj.addClass('mouseOver');
if(event != 'normal') jobj.addClass(event);
//}
}
/* -------------------
here's the algorithm in a nutshell:
[DOWN] -- refers to navigation down the view inheritance heirarchy (default to most specific)
[UP] -- navigate up the heirarchy
ComputeAllOverrides (object):
All view styles [DOWN]
If hyperlink
- DO ComputeStateStyle for parent object
- if (MouseOver || MouseDown)
- linkMouseOver Style
- if (MouseDown)
- linkMouseDown style
- ComputeStateStyleForViewChain (parent, STATE)
if (MouseDown) DO ComputeStateStyleForViewChain for object, mouseOver
DO ComputeStateStyleForViewChain for object, style
ComputeStateStyleForViewChain (object, STATE)
FIRST STATE state style [UP] the chain OR default object STATE style
------------------- */
var FONT_PROPS = {
'typeface': true,
'fontName': true,
'fontWeight': true,
'fontStyle': true,
'fontStretch': true,
'fontSize': true,
'underline': true,
'foreGroundFill': true,
'horizontalAlignment': true
};
var _computeAllOverrides = $ax.style.computeAllOverrides = function(id, parentId, state, currentViewId) {
var computedStyle = {};
if(parentId) computedStyle = _computeAllOverrides(parentId, null, state, currentViewId);
var diagramObject = $ax.getObjectFromElementId(id);
var viewIdChain = $ax.adaptive.getAdaptiveIdChain(currentViewId);
var excludeFont = _shapesWithSetRichText[id];
for(var i = 0; i < viewIdChain.length; i++) {
var viewId = viewIdChain[i];
var style = diagramObject.adaptiveStyles[viewId];
if(style) {
// we want to exclude the normal font style for shapes where the rich text has been set with an interaction
// so we copy the style so we don't modify the original, then delete all the font props.
if(excludeFont) {
style = $ax.deepCopy(style);
for(var prop in FONT_PROPS) delete style[prop];
}
if(style) {
var customStyle = style.baseStyle && $ax.document.stylesheet.stylesById[style.baseStyle];
//make sure not to extend the customStyle this can mutate it for future use
$.extend(computedStyle, customStyle);
}
$.extend(computedStyle, style);
}
}
var currState = NORMAL;
while(currState) {
$.extend(computedStyle, _computeStateStyleForViewChain(diagramObject, currState, viewIdChain, true));
currState = _unprogressState(currState, state);
}
return _removeUnsupportedProperties(computedStyle, diagramObject.type);
};
var _computeStateStyleForViewChain = function(diagramObject, state, viewIdChain, excludeNormal) {
var styleObject = diagramObject;
while(styleObject.isContained) styleObject = styleObject.parent;
var adaptiveStyles = styleObject.adaptiveStyles;
for(var i = viewIdChain.length - 1; i >= 0; i--) {
var viewId = viewIdChain[i];
var viewStyle = adaptiveStyles[viewId];
var stateStyle = viewStyle && _getFullStateStyle(viewStyle, state, excludeNormal);
if(stateStyle) return $.extend({}, stateStyle);
}
// we dont want to actually include the object style because those are not overrides, hence the true for "excludeNormal" and not passing the val through
var stateStyleFromDefault = _getFullStateStyle(styleObject.style, state, true);
return $.extend({}, stateStyleFromDefault);
};
// returns the full effective style for an object in a state state and view
var _computeFullStyle = function(id, state, currentViewId) {
var obj = $obj(id);
var overrides = _computeAllOverrides(id, undefined, state, currentViewId);
// todo: account for image box
var objStyle = obj.style;
var customStyle = objStyle.baseStyle && $ax.document.stylesheet.stylesById[objStyle.baseStyle];
var returnVal = $.extend({}, $ax.document.stylesheet.defaultStyle, customStyle, objStyle, overrides);
return _removeUnsupportedProperties(returnVal, obj.type);
};
var _removeUnsupportedProperties = function(style, objectType) {
// for now all we need to do is remove padding from checkboxes and radio buttons
if ($ax.public.fn.IsRadioButton(objectType) || $ax.public.fn.IsCheckBox(objectType)) {
style.paddingTop = 0;
style.paddingLeft = 0;
style.paddingRight = 0;
style.paddingBottom = 0;
}
return style;
};
var _getFullStateStyle = function(style, state, excludeNormal) {
//'normal' is needed because now DiagramObjects get their image from the Style and unapplying a rollover needs the image
var stateStyle = state == 'normal' && !excludeNormal ? style : style && style.stateStyles && style.stateStyles[state];
if(stateStyle) {
var customStyle = stateStyle.baseStyle && $ax.document.stylesheet.stylesById[stateStyle.baseStyle];
//make sure not to extend the customStyle this can mutate it for future use
return $.extend({}, customStyle, stateStyle);
}
return undefined;
};
// commented this out for now... we actually will probably need it for ie
var _applyOpacityFromStyle = $ax.style.applyOpacityFromStyle = function(id, style) {
return;
var opacity = style.opacity || '';
$jobj(id).children().css('opacity', opacity);
};
var _initialize = function() {
//being handled at on window.load
//$ax.style.initializeObjectTextAlignment($ax('*'));
};
$ax.style.initialize = _initialize;
var _initTextAlignment = function(elementId) {
var textId = _getTextIdFromShape(elementId);
_storeIdToAlignProps(textId);
// now handle vertical alignment
if(_getObjVisible(textId)) {
_setTextAlignment(textId, _idToAlignProps[textId], false);
}
};
$ax.style.initializeObjectTextAlignment = function(query) {
query.filter(function(diagramObject) {
return $ax.public.fn.IsVector(diagramObject.type) || $ax.public.fn.IsImageBox(diagramObject.type);
}).each(function(diagramObject, elementId) {
if($jobj(elementId).length == 0) return;
_initTextAlignment(elementId);
});
};
var _storeIdToAlignProps = function(textId) {
var shapeId = _getShapeIdFromText(textId);
var shapeObj = $obj(shapeId);
var state = _generateState(shapeId);
var style = _computeFullStyle(shapeId, state, $ax.adaptive.currentViewId);
var vAlign = style.verticalAlignment || 'middle';
var paddingLeft = Number(style.paddingLeft) || 0;
paddingLeft += (Number(shapeObj && shapeObj.extraLeft) || 0);
var paddingTop = style.paddingTop || 0;
var paddingRight = style.paddingRight || 0;
var paddingBottom = style.paddingBottom || 0;
_idToAlignProps[textId] = { vAlign: vAlign, paddingLeft: paddingLeft, paddingTop: paddingTop, paddingRight: paddingRight, paddingBottom: paddingBottom };
};
var ALL_STATES = ['mouseOver', 'mouseDown', 'selected', 'disabled'];
var _applyImage = $ax.style.applyImage = function (id, imgUrl, state) {
var object = $obj(id);
if (object.generateCompound) {
for (var i = 0; i < object.compoundChildren.length; i++) {
var componentId = object.compoundChildren[i];
var childId = $ax.public.fn.getComponentId(id, componentId);
var childImgQuery = $jobj(childId + '_img');
var childQuery = $jobj(childId);
childImgQuery.attr('src', imgUrl[componentId]);
for (var j = 0; j < ALL_STATES.length; j++) {
childImgQuery.removeClass(ALL_STATES[j]);
childQuery.removeClass(ALL_STATES[j]);
}
if (state != 'normal') {
childImgQuery.addClass(state);
childQuery.addClass(state);
}
}
} else {
var imgQuery = $jobj($ax.style.GetImageIdFromShape(id));
var idQuery = $jobj(id);
//it is hard to tell if setting the image or the class first causing less flashing when adding shadows.
imgQuery.attr('src', imgUrl);
for (var i = 0; i < ALL_STATES.length; i++) {
idQuery.removeClass(ALL_STATES[i]);
imgQuery.removeClass(ALL_STATES[i]);
}
if (state != 'normal') {
idQuery.addClass(state);
imgQuery.addClass(state);
}
if (imgQuery.parents('a.basiclink').length > 0) imgQuery.css('border', 'none');
if (imgUrl.indexOf(".png") > -1) $ax.utils.fixPng(imgQuery[0]);
}
};
$ax.public.fn.getComponentId = function (id, componentId) {
var idParts = id.split('-');
idParts[0] = idParts[0] + componentId;
return idParts.join('-');
}
var _resetTextJson = function(id, textid) {
// reset the opacity
$jobj(id).children().css('opacity', '');
var cacheObject = _originalTextCache[textid];
if(cacheObject) {
_transformTextWithVerticalAlignment(textid, function() {
var styleCache = cacheObject.styleCache;
var textQuery = $('#' + textid);
textQuery.find('*').each(function(index, element) {
element.style.cssText = styleCache[element.id];
});
});
}
};
// Preserves the alingment for the element textid after executing transformFn
var _getRtfElementHeight = function(rtfElement) {
if(rtfElement.innerHTML == '') rtfElement.innerHTML = ' ';
// To handle render text as image
var images = $(rtfElement).children('img');
if(images.length) return images.height();
return rtfElement.offsetHeight;
};
// why microsoft decided to default to round to even is beyond me...
var _roundToEven = function(number) {
var numString = number.toString();
var parts = numString.split('.');
if(parts.length == 1) return number;
if(parts[1].length == 1 && parts[1] == '5') {
var wholePart = Number(parts[0]);
return wholePart % 2 == 0 ? wholePart : wholePart + 1;
} else return Math.round(number);
};
var _transformTextWithVerticalAlignment = $ax.style.transformTextWithVerticalAlignment = function(textId, transformFn) {
if(!_originalTextCache[textId]) {
$ax.style.CacheOriginalText(textId);
}
var rtfElement = window.document.getElementById(textId);
if(!rtfElement) return;
transformFn();
_storeIdToAlignProps(textId);
$ax.style.updateTextAlignmentForVisibility(textId);
};
// this is for vertical alignments set on hidden objects
var _idToAlignProps = {};
$ax.style.updateTextAlignmentForVisibility = function (textId) {
var textObj = $jobj(textId);
// must check if parent id exists. Doesn't exist for text objs in check boxes, and potentially elsewhere.
var parentId = textObj.parent().attr('id');
if (parentId && $ax.visibility.isContainer(parentId)) return;
var alignProps = _idToAlignProps[textId];
if(!alignProps || !_getObjVisible(textId)) return;
_setTextAlignment(textId, alignProps);
};
var _getObjVisible = _style.getObjVisible = function (id) {
var element = document.getElementById(id);
return element && (element.offsetWidth || element.offsetHeight);
};
var _setTextAlignment = function (textId, alignProps, updateProps) {
if(updateProps) {
_storeIdToAlignProps(textId);
}
if(!alignProps) return;
var vAlign = alignProps.vAlign;
var paddingTop = Number(alignProps.paddingTop);
var paddingBottom = Number(alignProps.paddingBottom);
var paddingLeft = Number(alignProps.paddingLeft);
var paddingRight = Number(alignProps.paddingRight);
var topParam = 0.0;
var bottomParam = 1.0;
var leftParam = 0.0;
var rightParam = 1.0;
var textObj = $jobj(textId);
var textHeight = _getRtfElementHeight(textObj[0]);
var textObjParent = textObj.offsetParent();
var parentId = textObjParent.attr('id');
var isConnector = false;
if(parentId) {
parentId = $ax.visibility.getWidgetFromContainer(textObjParent.attr('id'));
textObjParent = $jobj(parentId);
var parentObj = $obj(parentId);
if (parentObj['bottomTextPadding']) bottomParam = parentObj['bottomTextPadding'];
if (parentObj['topTextPadding']) topParam = parentObj['topTextPadding'];
if (parentObj['leftTextPadding']) leftParam = parentObj['leftTextPadding'];
if (parentObj['rightTextPadding']) rightParam = parentObj['rightTextPadding'];
// for now all this smart shapes weird shit is mutually exclusive from compound vectors.
isConnector = parentObj.type == $ax.constants.CONNECTOR_TYPE;
}
if (isConnector) return;
var axTextObjectParent = $ax('#' + textObjParent.attr('id'));
var oldWidth = $ax.getNumFromPx(textObj.css('width'));
var oldLeft = $ax.getNumFromPx(textObj.css('left'));
var oldTop = $ax.getNumFromPx(textObj.css('top'));
var newTop = 0;
var newLeft = 0.0;
var width = axTextObjectParent.width();
var height = axTextObjectParent.height();
// If text rotated need to handle getting the correct width for text based on bounding rect of rotated parent.
var boundingRotation = -$ax.move.getRotationDegree(textId);
var boundingParent = $axure.fn.getBoundingSizeForRotate(width, height, boundingRotation);
var extraLeftPadding = (width - boundingParent.width) / 2;
width = boundingParent.width;
var relativeTop = 0.0;
relativeTop = height * topParam;
var containerHeight = height * bottomParam - relativeTop;
if (vAlign == "middle") newTop = _roundToEven(relativeTop + (containerHeight - textHeight + paddingTop - paddingBottom) / 2);
else if (vAlign == "bottom") newTop = _roundToEven(relativeTop + containerHeight - textHeight - paddingBottom);
else newTop = _roundToEven(paddingTop + relativeTop);
newLeft = paddingLeft + extraLeftPadding + width * leftParam;
var newWidth = width * (rightParam - leftParam) - paddingLeft - paddingRight;
var vertChange = oldTop != newTop;
if (vertChange) textObj.css('top', newTop + 'px');
var horizChange = newWidth != oldWidth || newLeft != oldLeft;
if (horizChange) {
textObj.css('left', newLeft);
textObj.width(newWidth);
}
if ((vertChange || horizChange)) _updateTransformOrigin(textId);
};
var _updateTransformOrigin = function(textId) {
var textObj = $jobj(textId);
var transformOrigin = textObj.css('-webkit-transform-origin') ||
textObj.css('-moz-transform-origin') ||
textObj.css('-ms-transform-origin') ||
textObj.css('transform-origin');
if(transformOrigin) {
var textObjParent = $ax('#' + textObj.parent().attr('id'));
var newX = (textObjParent.width() / 2 - textObj.css('left').replace('px', ''));
var newY = (textObjParent.height() / 2 - textObj.css('top').replace('px', ''));
var newOrigin = newX + 'px ' + newY + 'px';
textObj.css('-webkit-transform-origin', newOrigin);
textObj.css('-moz-transform-origin', newOrigin);
textObj.css('-ms-transform-origin', newOrigin);
textObj.css('transform-origin', newOrigin);
}
};
$ax.style.reselectElements = function() {
for(var id in _selectedWidgets) {
// Only looking for the selected widgets that don't have their class set
if(!_selectedWidgets[id] || $jobj(id).hasClass('selected')) continue;
$jobj(id).addClass('selected');
_applyImageAndTextJson(id, $ax.style.generateState(id));
}
for(id in _disabledWidgets) {
// Only looking for the disabled widgets that don't have their class yet
if (!_disabledWidgets[id] || $jobj(id).hasClass('disabled')) continue;
$jobj(id).addClass('disabled');
_applyImageAndTextJson(id, $ax.style.generateState(id));
}
}
$ax.style.clearAdaptiveStyles = function() {
for(var shapeId in _adaptiveStyledWidgets) {
var repeaterId = $ax.getParentRepeaterFromScriptId(shapeId);
if(repeaterId) continue;
var elementId = _getButtonShapeId(shapeId);
if(elementId) {
_applyImageAndTextJson(elementId, $ax.style.generateState(elementId));
}
}
_adaptiveStyledWidgets = {};
};
$ax.style.setAdaptiveStyle = function(shapeId, style) {
_adaptiveStyledWidgets[$ax.repeater.getScriptIdFromElementId(shapeId)] = style;
var textId = $ax.style.GetTextIdFromShape(shapeId);
if(textId) _applyTextStyle(textId, style);
$ax.placeholderManager.refreshPlaceholder(shapeId);
// removing this for now
// if(style.location) {
// $jobj(shapeId).css('top', style.location.x + "px")
// .css('left', style.location.y + "px");
// }
};
//-------------------------------------------------------------------------
// _applyTextStyle
//
// Applies a rollover style to a text element.
// id : the id of the text object to set.
// styleProperties : an object mapping style properties to values. eg:
// { 'fontWeight' : 'bold',
// 'fontStyle' : 'italic' }
//-------------------------------------------------------------------------
var _applyTextStyle = function(id, style) {
_transformTextWithVerticalAlignment(id, function() {
var styleProperties = _getCssStyleProperties(style);
$('#' + id).find('*').each(function(index, element) {
_applyCssProps(element, styleProperties);
});
});
};
var _applyCssProps = function(element, styleProperties, applyAllStyle) {
if(applyAllStyle) {
var allProps = styleProperties.allProps;
for(var prop in allProps) element.style[prop] = allProps[prop];
} else {
var nodeName = element.nodeName.toLowerCase();
if(nodeName == 'p') {
var parProps = styleProperties.parProps;
for(prop in parProps) element.style[prop] = parProps[prop];
} else if(nodeName != 'a') {
var runProps = styleProperties.runProps;
for(prop in runProps) element.style[prop] = runProps[prop];
}
}
};
var _getCssShadow = function(shadow) {
return !shadow.on ? "none"
: shadow.offsetX + "px " + shadow.offsetY + "px " + shadow.blurRadius + "px " + _getCssColor(shadow.color);
};
var _getCssStyleProperties = function(style) {
var toApply = {};
toApply.runProps = {};
toApply.parProps = {};
toApply.allProps = {};
if(style.fontName) toApply.allProps.fontFamily = toApply.runProps.fontFamily = style.fontName;
// we need to set font size on both runs and pars because otherwise it well mess up the measure and thereby vertical alignment
if(style.fontSize) toApply.allProps.fontSize = toApply.runProps.fontSize = toApply.parProps.fontSize = style.fontSize;
if(style.fontWeight !== undefined) toApply.allProps.fontWeight = toApply.runProps.fontWeight = style.fontWeight;
if(style.fontStyle !== undefined) toApply.allProps.fontStyle = toApply.runProps.fontStyle = style.fontStyle;
if(style.underline !== undefined) toApply.allProps.textDecoration = toApply.runProps.textDecoration = style.underline ? 'underline' : 'none';
if(style.foreGroundFill) {
toApply.allProps.color = toApply.runProps.color = _getColorFromFill(style.foreGroundFill);
//if(style.foreGroundFill.opacity) toApply.allProps.opacity = toApply.runProps.opacity = style.foreGroundFill.opacity;
}
if(style.horizontalAlignment) toApply.allProps.textAlign = toApply.parProps.textAlign = toApply.runProps.textAlign = style.horizontalAlignment;
if(style.lineSpacing) toApply.allProps.lineHeight = toApply.parProps.lineHeight = style.lineSpacing;
if(style.textShadow) toApply.allProps.textShadow = toApply.parProps.textShadow = _getCssShadow(style.textShadow);
return toApply;
};
var _getColorFromFill = function(fill) {
//var fillString = '00000' + fill.color.toString(16);
//return '#' + fillString.substring(fillString.length - 6);
var val = fill.color;
var color = {};
color.b = val % 256;
val = Math.floor(val / 256);
color.g = val % 256;
val = Math.floor(val / 256);
color.r = val % 256;
color.a = typeof (fill.opacity) == 'number' ? fill.opacity : 1;
return _getCssColor(color);
};
var _getCssColor = function(rgbaObj) {
return "rgba(" + rgbaObj.r + ", " + rgbaObj.g + ", " + rgbaObj.b + ", " + rgbaObj.a + ")";
};
// //--------------------------------------------------------------------------
// // ApplyStyleRecursive
// //
// // Applies a style recursively to all span and div tags including elementNode
// // and all of its children.
// //
// // element : the element to apply the style to
// // styleName : the name of the style property to set (eg. 'font-weight')
// // styleValue : the value of the style to set (eg. 'bold')
// //--------------------------------------------------------------------------
// function ApplyStyleRecursive(element, styleName, styleValue) {
// var nodeName = element.nodeName.toLowerCase();
// if (nodeName == 'div' || nodeName == 'span' || nodeName == 'p') {
// element.style[styleName] = styleValue;
// }
// for (var i = 0; i < element.childNodes.length; i++) {
// ApplyStyleRecursive(element.childNodes[i], styleName, styleValue);
// }
// }
// //---------------------------------------------------------------------------
// // ApplyTextProperty
// //
// // Applies a text property to rtfElement.
// //
// // rtfElement : the the root text element of the rtf object (this is the
// // element named <id>_rtf
// // prop : the style property to set.
// // value : the style value to set.
// //---------------------------------------------------------------------------
// function ApplyTextProperty(rtfElement, prop, value) {
// /*
// var oldHtml = rtfElement.innerHTML;
// if (prop == 'fontWeight') {
// rtfElement.innerHTML = oldHtml.replace(/< *b *\/?>/gi, "");
// } else if (prop == 'fontStyle') {
// rtfElement.innerHTML = oldHtml.replace(/< *i *\/?>/gi, "");
// } else if (prop == 'textDecoration') {
// rtfElement.innerHTML = oldHtml.replace(/< *u *\/?>/gi, "");
// }
// */
// for (var i = 0; i < rtfElement.childNodes.length; i++) {
// ApplyStyleRecursive(rtfElement.childNodes[i], prop, value);
// }
// }
//}
//---------------------------------------------------------------------------
// GetAndCacheOriginalText
//
// Gets the html for the pre-rollover state and returns the Html representing
// the Rich text.
//---------------------------------------------------------------------------
var CACHE_COUNTER = 0;
$ax.style.CacheOriginalText = function(textId, hasRichTextBeenSet) {
var rtfQuery = $('#' + textId);
if(rtfQuery.length > 0) {
var styleCache = {};
rtfQuery.find('*').each(function(index, element) {
var elementId = element.id;
if(!elementId) element.id = elementId = 'cache' + CACHE_COUNTER++;
styleCache[elementId] = element.style.cssText;
});
_originalTextCache[textId] = {
styleCache: styleCache
};
if(hasRichTextBeenSet) {
var shapeId = _getShapeIdFromText(textId);
_shapesWithSetRichText[shapeId] = true;
}
}
};
$ax.style.ClearCacheForRepeater = function(repeaterId) {
for(var elementId in _originalTextCache) {
var scriptId = $ax.repeater.getScriptIdFromElementId(elementId);
if($ax.getParentRepeaterFromScriptId(scriptId) == repeaterId) delete _originalTextCache[elementId];
}
};
$ax.style.prefetch = function() {
var scriptIds = $ax.getAllScriptIds();
var image = new Image();
for(var i = 0; i < scriptIds.length; i++) {
var obj = $obj(scriptIds[i]);
if (!$ax.public.fn.IsImageBox(obj.type)) continue;
var images = obj.images;
for (var key in images) image.src = images[key];
var imageOverrides = obj.imageOverrides;
for(var elementId in imageOverrides) {
var override = imageOverrides[elementId];
for (var state in override) {
_addImageOverride(elementId, state, override[state]);
image.src = override[state];
}
}
}
};
});