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 @@ ...@@ -32,37 +32,41 @@
"use strict"; "use strict";
/** @enum {number} */
var c_oAscZoomType = { var c_oAscZoomType = {
Current: 0, Current : 0,
FitWidth: 1, FitWidth : 1,
FitPage: 2 FitPage : 2
}; };
/** @enum {number} */
var c_oAscCollaborativeMarksShowType = { var c_oAscCollaborativeMarksShowType = {
All: 0, All : 0,
LastChanges: 1 LastChanges : 1
}; };
/** @enum {number} */
var c_oAscVertAlignJc = { var c_oAscVertAlignJc = {
Top: 0x00, // var vertalignjc_Top = 0x00; Top : 0x00, // var vertalignjc_Top = 0x00;
Center: 0x01, // var vertalignjc_Center = 0x01; Center : 0x01, // var vertalignjc_Center = 0x01;
Bottom: 0x02 // var vertalignjc_Bottom = 0x02 Bottom : 0x02 // var vertalignjc_Bottom = 0x02
}; };
// Right = 0; Left = 1; Center = 2; Justify = 3; /** @enum {number} */
var c_oAscAlignType = { var c_oAscAlignType = {
LEFT: 0, LEFT : 0,
CENTER: 1, CENTER : 1,
RIGHT: 2, RIGHT : 2,
JUSTIFY: 3, JUSTIFY : 3,
TOP: 4, TOP : 4,
MIDDLE: 5, MIDDLE : 5,
BOTTOM: 6 BOTTOM : 6
}; };
/** @enum {number} */
var c_oAscContextMenuTypes = { var c_oAscContextMenuTypes = {
Main: 0, Main : 0,
Thumbnails: 1 Thumbnails : 1
}; };
var THEME_THUMBNAIL_WIDTH = 180; var THEME_THUMBNAIL_WIDTH = 180;
...@@ -70,71 +74,76 @@ var THEME_THUMBNAIL_HEIGHT = 135; ...@@ -70,71 +74,76 @@ var THEME_THUMBNAIL_HEIGHT = 135;
var LAYOUT_THUMBNAIL_WIDTH = 180; var LAYOUT_THUMBNAIL_WIDTH = 180;
var LAYOUT_THUMBNAIL_HEIGHT = 135; var LAYOUT_THUMBNAIL_HEIGHT = 135;
/** @enum {number} */
var c_oAscTableSelectionType = { var c_oAscTableSelectionType = {
Cell: 0, Cell : 0,
Row: 1, Row : 1,
Column: 2, Column : 2,
Table: 3 Table : 3
}; };
/** @enum {number} */
var c_oAscAlignShapeType = { var c_oAscAlignShapeType = {
ALIGN_LEFT: 0, ALIGN_LEFT : 0,
ALIGN_RIGHT: 1, ALIGN_RIGHT : 1,
ALIGN_TOP: 2, ALIGN_TOP : 2,
ALIGN_BOTTOM: 3, ALIGN_BOTTOM : 3,
ALIGN_CENTER: 4, ALIGN_CENTER : 4,
ALIGN_MIDDLE: 5 ALIGN_MIDDLE : 5
}; };
/** @enum {number} */
var c_oAscTableLayout = { var c_oAscTableLayout = {
AutoFit: 0x00, AutoFit : 0x00,
Fixed: 0x01 Fixed : 0x01
}; };
/** @enum {number} */
var c_oAscSlideTransitionTypes = { var c_oAscSlideTransitionTypes = {
None: 0, None : 0,
Fade: 1, Fade : 1,
Push: 2, Push : 2,
Wipe: 3, Wipe : 3,
Split: 4, Split : 4,
UnCover: 5, UnCover : 5,
Cover: 6, Cover : 6,
Clock: 7, Clock : 7,
Zoom: 8 Zoom : 8
}; };
/** @enum {number} */
var c_oAscSlideTransitionParams = { var c_oAscSlideTransitionParams = {
Fade_Smoothly: 0, Fade_Smoothly : 0,
Fade_Through_Black: 1, Fade_Through_Black : 1,
Param_Left: 0, Param_Left : 0,
Param_Top: 1, Param_Top : 1,
Param_Right: 2, Param_Right : 2,
Param_Bottom: 3, Param_Bottom : 3,
Param_TopLeft: 4, Param_TopLeft : 4,
Param_TopRight: 5, Param_TopRight : 5,
Param_BottomLeft: 6, Param_BottomLeft : 6,
Param_BottomRight: 7, Param_BottomRight : 7,
Split_VerticalIn: 8, Split_VerticalIn : 8,
Split_VerticalOut: 9, Split_VerticalOut : 9,
Split_HorizontalIn: 10, Split_HorizontalIn : 10,
Split_HorizontalOut: 11, Split_HorizontalOut : 11,
Clock_Clockwise: 0, Clock_Clockwise : 0,
Clock_Counterclockwise: 1, Clock_Counterclockwise : 1,
Clock_Wedge: 2, Clock_Wedge : 2,
Zoom_In: 0, Zoom_In : 0,
Zoom_Out: 1, Zoom_Out : 1,
Zoom_AndRotate: 2 Zoom_AndRotate : 2
}; };
/** @enum {number} */
var c_oAscLockTypeElemPresentation = { var c_oAscLockTypeElemPresentation = {
Object: 1, Object : 1,
Slide: 2, Slide : 2,
Presentation: 3 Presentation : 3
}; };
var c_oSerFormat = { 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