Commit f616b32e authored by Oleg Korshul's avatar Oleg Korshul

/** @enum {number} */

чтобы не мешались var b и window.b
parent 0aa192f7
This diff is collapsed.
......@@ -32,37 +32,41 @@
"use strict";
/** @enum {number} */
var c_oAscZoomType = {
Current: 0,
FitWidth: 1,
FitPage: 2
Current : 0,
FitWidth : 1,
FitPage : 2
};
/** @enum {number} */
var c_oAscCollaborativeMarksShowType = {
All: 0,
LastChanges: 1
All : 0,
LastChanges : 1
};
/** @enum {number} */
var c_oAscVertAlignJc = {
Top: 0x00, // var vertalignjc_Top = 0x00;
Center: 0x01, // var vertalignjc_Center = 0x01;
Bottom: 0x02 // var vertalignjc_Bottom = 0x02
Top : 0x00, // var vertalignjc_Top = 0x00;
Center : 0x01, // var vertalignjc_Center = 0x01;
Bottom : 0x02 // var vertalignjc_Bottom = 0x02
};
// Right = 0; Left = 1; Center = 2; Justify = 3;
/** @enum {number} */
var c_oAscAlignType = {
LEFT: 0,
CENTER: 1,
RIGHT: 2,
JUSTIFY: 3,
TOP: 4,
MIDDLE: 5,
BOTTOM: 6
LEFT : 0,
CENTER : 1,
RIGHT : 2,
JUSTIFY : 3,
TOP : 4,
MIDDLE : 5,
BOTTOM : 6
};
/** @enum {number} */
var c_oAscContextMenuTypes = {
Main: 0,
Thumbnails: 1
Main : 0,
Thumbnails : 1
};
var THEME_THUMBNAIL_WIDTH = 180;
......@@ -70,71 +74,76 @@ var THEME_THUMBNAIL_HEIGHT = 135;
var LAYOUT_THUMBNAIL_WIDTH = 180;
var LAYOUT_THUMBNAIL_HEIGHT = 135;
/** @enum {number} */
var c_oAscTableSelectionType = {
Cell: 0,
Row: 1,
Column: 2,
Table: 3
Cell : 0,
Row : 1,
Column : 2,
Table : 3
};
/** @enum {number} */
var c_oAscAlignShapeType = {
ALIGN_LEFT: 0,
ALIGN_RIGHT: 1,
ALIGN_TOP: 2,
ALIGN_BOTTOM: 3,
ALIGN_CENTER: 4,
ALIGN_MIDDLE: 5
ALIGN_LEFT : 0,
ALIGN_RIGHT : 1,
ALIGN_TOP : 2,
ALIGN_BOTTOM : 3,
ALIGN_CENTER : 4,
ALIGN_MIDDLE : 5
};
/** @enum {number} */
var c_oAscTableLayout = {
AutoFit: 0x00,
Fixed: 0x01
AutoFit : 0x00,
Fixed : 0x01
};
/** @enum {number} */
var c_oAscSlideTransitionTypes = {
None: 0,
Fade: 1,
Push: 2,
Wipe: 3,
Split: 4,
UnCover: 5,
Cover: 6,
Clock: 7,
Zoom: 8
None : 0,
Fade : 1,
Push : 2,
Wipe : 3,
Split : 4,
UnCover : 5,
Cover : 6,
Clock : 7,
Zoom : 8
};
/** @enum {number} */
var c_oAscSlideTransitionParams = {
Fade_Smoothly: 0,
Fade_Through_Black: 1,
Param_Left: 0,
Param_Top: 1,
Param_Right: 2,
Param_Bottom: 3,
Param_TopLeft: 4,
Param_TopRight: 5,
Param_BottomLeft: 6,
Param_BottomRight: 7,
Split_VerticalIn: 8,
Split_VerticalOut: 9,
Split_HorizontalIn: 10,
Split_HorizontalOut: 11,
Clock_Clockwise: 0,
Clock_Counterclockwise: 1,
Clock_Wedge: 2,
Zoom_In: 0,
Zoom_Out: 1,
Zoom_AndRotate: 2
Fade_Smoothly : 0,
Fade_Through_Black : 1,
Param_Left : 0,
Param_Top : 1,
Param_Right : 2,
Param_Bottom : 3,
Param_TopLeft : 4,
Param_TopRight : 5,
Param_BottomLeft : 6,
Param_BottomRight : 7,
Split_VerticalIn : 8,
Split_VerticalOut : 9,
Split_HorizontalIn : 10,
Split_HorizontalOut : 11,
Clock_Clockwise : 0,
Clock_Counterclockwise : 1,
Clock_Wedge : 2,
Zoom_In : 0,
Zoom_Out : 1,
Zoom_AndRotate : 2
};
/** @enum {number} */
var c_oAscLockTypeElemPresentation = {
Object: 1,
Slide: 2,
Presentation: 3
Object : 1,
Slide : 2,
Presentation : 3
};
var c_oSerFormat = {
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment