Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
d660b170
Commit
d660b170
authored
Apr 07, 2016
by
Ilya Kirillov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Все русские комментарии с описаниями функций заменены на английские.
parent
62bf28f7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
37 deletions
+55
-37
word/apiBuilder.js
word/apiBuilder.js
+55
-37
No files found.
word/apiBuilder.js
View file @
d660b170
...
...
@@ -32,7 +32,7 @@
(
function
(
window
,
builder
)
{
var
Api
=
window
[
"
asc_docs_api
"
];
var
Api
=
window
[
"
asc_docs_api
"
];
function
ApiDocument
(
Document
)
{
...
...
@@ -60,24 +60,32 @@
}
//------------------------------------------------------------------------------------------------------------------
// Основное Апи
//
// Base Api
//
//------------------------------------------------------------------------------------------------------------------
/**
* Получаем ссылку на основной документ в виде класса ApiDocument
* Get main document
* @returns {ApiDocument}
*/
Api
.
prototype
[
"
GetDocument
"
]
=
function
()
{
return
new
ApiDocument
(
this
.
WordControl
.
m_oLogicDocument
);
};
/**
* Создаем новый параграф
* Create new paragraph
* @returns {ApiParagraph}
*/
Api
.
prototype
[
"
CreateParagraph
"
]
=
function
()
{
return
new
ApiParagraph
(
new
Paragraph
(
private_GetDrawingDocument
(),
private_GetLogicDocument
()));
};
/**
* Создаем новую таблицу размерами nCols * nRows
* Create new table
* @param nCols
* @param nRows
* @returns {ApiTable}
*/
Api
.
prototype
[
"
CreateTable
"
]
=
function
(
nCols
,
nRows
)
{
...
...
@@ -86,18 +94,23 @@
return
new
ApiTable
(
new
CTable
(
private_GetDrawingDocument
(),
private_GetLogicDocument
(),
true
,
0
,
0
,
0
,
0
,
0
,
nRows
,
nCols
,
[],
false
));
};
//------------------------------------------------------------------------------------------------------------------
// Апи документа
//
// ApiDocument
//
//------------------------------------------------------------------------------------------------------------------
/**
*
Получаем количество элементов в документе
*
Get elements count
*/
ApiDocument
.
prototype
[
"
GetElementsCount
"
]
=
function
()
{
return
this
.
Document
.
Content
.
length
;
};
/**
* Получаем элемент по заданному номеру или null
* Get element by position
* @returns {ApiParagraph | ApiTable | null}
*/
ApiDocument
.
prototype
[
"
GetElement
"
]
=
function
(
nPos
)
{
...
...
@@ -107,9 +120,9 @@
return
this
.
Document
.
Content
[
nPos
];
};
/**
*
Добавляем параграф или таблицу в документ
*
Add paragraph or table by position
* @param nPos
* @param oElement
* @param oElement
(ApiParagraph or ApiTable)
*/
ApiDocument
.
prototype
[
"
AddElement
"
]
=
function
(
nPos
,
oElement
)
{
...
...
@@ -122,8 +135,8 @@
return
false
;
};
/**
*
Добавляем параграф или таблицу в конец документа
* @param oElement
*
Push paragraph or table
* @param oElement
(ApiParagraph or ApiTable)
*/
ApiDocument
.
prototype
[
"
Push
"
]
=
function
(
oElement
)
{
...
...
@@ -136,8 +149,9 @@
return
false
;
};
/**
*
Получаем стиль по заданному имени стиля, если стиля с таким именем нет, то возвращается null
*
Get style by style name
* @param sStyleName
* @returns {ApiStyle | null}
*/
ApiDocument
.
prototype
[
"
GetStyle
"
]
=
function
(
sStyleName
)
{
...
...
@@ -145,13 +159,17 @@
var
oStyleId
=
oStyles
.
Get_StyleIdByName
(
sStyleName
);
return
new
ApiStyle
(
oStyles
.
Get
(
oStyleId
));
};
//------------------------------------------------------------------------------------------------------------------
// Апи параграфа (Paragraph)
//
// ApiParagraph
//
//------------------------------------------------------------------------------------------------------------------
/**
*
Добавляем текст к параграфу. Возвращается текстовый объект (Run), к которому можно применять различные
*
текстовые настройки.
* @returns {
Para
Run}
*
Add text
*
@param sText
* @returns {
Api
Run}
*/
ApiParagraph
.
prototype
[
"
AddText
"
]
=
function
(
sText
)
{
...
...
@@ -170,11 +188,11 @@
}
private_PushElementToParagraph
(
this
.
Paragraph
,
oRun
);
return
oRun
;
return
new
ApiRun
(
oRun
)
;
};
/**
*
Добавляем разрыв страницы
* @returns {
Para
Run}
*
Add page beak
* @returns {
Api
Run}
*/
ApiParagraph
.
prototype
[
"
AddPageBreak
"
]
=
function
()
{
...
...
@@ -184,8 +202,8 @@
return
new
ApiRun
(
oRun
);
};
/**
*
Добавляем разрыв строки
* @returns {
Para
Run}
*
Add line break
* @returns {
Api
Run}
*/
ApiParagraph
.
prototype
[
"
AddLineBreak
"
]
=
function
()
{
...
...
@@ -195,19 +213,20 @@
return
new
ApiRun
(
oRun
);
};
/**
*
Добавляем разрыв колонки
* @returns {
Para
Run}
*
Add column break
* @returns {
Api
Run}
*/
ApiParagraph
.
prototype
[
"
AddColumnBreak
"
]
=
function
()
{
var
oRun
=
new
ParaRun
(
this
.
Paragraph
,
false
);
oRun
.
Add_ToContent
(
0
,
new
ParaNewLine
(
break_Column
));
private_PushElementToParagraph
(
this
.
Paragraph
,
oRun
);
return
oRun
;
return
new
ApiRun
(
oRun
)
;
};
/**
* Выставляем стиль
* @param oStyle
* Set paragraph style
* @param oStyle (ApiStyle)
* @returns {boolean}
*/
ApiParagraph
.
prototype
[
"
SetStyle
"
]
=
function
(
oStyle
)
{
...
...
@@ -219,10 +238,13 @@
};
//------------------------------------------------------------------------------------------------------------------
// Апи текстового блока (Run)
//
// ApiRun
//
//------------------------------------------------------------------------------------------------------------------
/**
*
Выставляем полужирный текст
*
Set bold
* @param isBold
*/
ApiRun
.
prototype
[
"
SetBold
"
]
=
function
(
isBold
)
...
...
@@ -230,28 +252,25 @@
this
.
Run
.
Set_Bold
(
isBold
);
};
/**
*
Выставляем наклонный текст
*
Set italic
* @param isItalic
*/
ApiRun
.
prototype
[
"
SetItalic
"
]
=
function
(
isItalic
)
{
this
.
Run
.
Set_Italic
(
isItalic
);
};
/**
*
Выставляем подчеркнутый текст
*
Set underline
* @param isUnderline
*/
ApiRun
.
prototype
[
"
SetUnderline
"
]
=
function
(
isUnderline
)
{
this
.
Run
.
Set_Underline
(
isUnderline
);
};
//------------------------------------------------------------------------------------------------------------------
// Апи текстового блока (Run)
//------------------------------------------------------------------------------------------------------------------
//------------------------------------------------------------------------------------------------------------------
//
Приватный блок
//
Private area
//------------------------------------------------------------------------------------------------------------------
function
private_GetDrawingDocument
()
{
...
...
@@ -278,7 +297,6 @@
return
this
.
Table
;
};
}(
window
,
null
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment